From 674cd01e837c621026df13814a9944ecf6e5a711 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Mon, 27 Apr 2020 11:18:16 -0700 Subject: [PATCH 1/6] Add note that unordered arrays may contain duplicate values after expansion. For #473. Other parts of #473 are deferred. --- index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/index.html b/index.html index 30534fed..eecff12a 100644 --- a/index.html +++ b/index.html @@ -2422,6 +2422,16 @@

Overview

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

+ +

Although the data model, + based on [[RDF11-CONCEPTS]], does not support multiple unordered property values, + this algorithm does not remove duplicates that + may be found during expansion within an unordered array. + Other algorithms, such as , + and , do eliminate + duplicate values from unordered arrays. + A future version of this specification may be updated to remove duplicate + array values when the form a set.

From 854a53ebedc3ac5a39b55a8bf5896a0fe713bd5c Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Mon, 27 Apr 2020 11:25:36 -0700 Subject: [PATCH 2/6] Updated step 11 of the Create Term Definition algorithm to use any boolean value of `@protected`, not just `true`. Fixes #475. --- index.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index eecff12a..8621a47b 100644 --- a/index.html +++ b/index.html @@ -1612,8 +1612,8 @@

Algorithm

initializing prefix flag to `false`, protected to protected, and reverse property to `false`. -
  • If the @protected entry in value - is true set the protected flag in definition to true. +
  • If value has an @protected entry, + set the protected flag in definition to the value of this entry. If the value of `@protected` is not a boolean, an invalid @protected value error has been detected and processing is aborted. If processing mode is `json-ld-1.0`, @@ -7036,6 +7036,9 @@

    Changes since Candidate Release of 05 March 2020

  • Move step 5.2.2 of the Context Processing algorithm to run before the subsequent step for checking remote contexts.
  • +
  • Updated step 11 of the + Create Term Definition algorithm + to use any boolean value of `@protected`, not just `true`.
  • Updated step 4.5 of the IRI Compaction algorithm to use `@index` for any value with an `@index` entry.
  • Update step 11.1 of the From c388a0f1ce4a5444d7b7c6bb68b1526af10ef8df Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Mon, 27 Apr 2020 11:28:42 -0700 Subject: [PATCH 3/6] Improve wording of expansion 13.8.3.7.2.3. Fixes #477. --- index.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 8621a47b..31adf242 100644 --- a/index.html +++ b/index.html @@ -2967,9 +2967,11 @@

    Algorithm

    and index as value.
  • Initialize expanded index key to the result of IRI expanding index key.
  • -
  • Initialize index property values to the concatenation of - re-expanded index with any existing values of - expanded index key in item.
  • +
  • Initialize index property values to + an array consisting of re-expanded index followed + by the existing values of + the concatenation of expanded index key in item, + if any.
  • Add the key-value pair (expanded index key-index property values) to item.
  • If item is a value object, From 0d109d92dba7921cdef8ef5156593df9912a8412 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Mon, 27 Apr 2020 11:36:27 -0700 Subject: [PATCH 4/6] Update step 13.8.3.6 of the Expansion algorithm to pass `true` for the from map parameter to properly manage reverting active contexts. Fixes #478. --- index.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 31adf242..b1ef25b8 100644 --- a/index.html +++ b/index.html @@ -2941,13 +2941,14 @@

    Algorithm

  • If index value is not an array set index value to an array containing only index value.
  • -
  • Initialize index value to the result of +
  • Initialize index value to the result of using this algorithm recursively, passing map context as active context, key as active property, index value as element, base URL, - and the {{JsonLdOptions/frameExpansion}} + `true` for from map, + and the {{JsonLdOptions/frameExpansion}} and {{JsonLdOptions/ordered}} flags.
  • For each item in index value:
      @@ -7043,6 +7044,10 @@

      Changes since Candidate Release of 05 March 2020

      to use any boolean value of `@protected`, not just `true`.
    1. Updated step 4.5 of the IRI Compaction algorithm to use `@index` for any value with an `@index` entry.
    2. +
    3. Update step 13.8.3.6 of the + Expansion algorithm to pass + `true` for the from map parameter to properly manage reverting + active contexts.
    4. Update step 11.1 of the Compaction Algorithm to pass `false` for propagate when calling the From 3966e19eeb2a6f56b5a660037e2064895532f6f5 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Mon, 27 Apr 2020 11:41:27 -0700 Subject: [PATCH 5/6] Update step 13.4.6.2 of the Expansion algorithm to pass `null` for active property, as included blocks do not define a relationship to a referencing node. Fixes #479. --- index.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b1ef25b8..a9a22ced 100644 --- a/index.html +++ b/index.html @@ -2675,9 +2675,10 @@

      Algorithm

      1. If processing mode is `json-ld-1.0`, continue with the next key from element.
      2. -
      3. Set expanded value to the result of using +
      4. Set expanded value to the result of using this algorithm recursively passing active context, - active property, value for element, + `null` for active property, + value for element, base URL, and the {{JsonLdOptions/frameExpansion}} and {{JsonLdOptions/ordered}} flags, @@ -7044,6 +7045,11 @@

        Changes since Candidate Release of 05 March 2020

        to use any boolean value of `@protected`, not just `true`.
      5. Updated step 4.5 of the IRI Compaction algorithm to use `@index` for any value with an `@index` entry.
      6. + alg-expand-included +
      7. Update step 13.4.6.2 of the + Expansion algorithm to pass + `null` for active property, as included blocks + do not define a relationship to a referencing node.
      8. Update step 13.8.3.6 of the Expansion algorithm to pass `true` for the from map parameter to properly manage reverting From 9bc2f7151aba1d008a81a2e767b7b8bf217b7d27 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Mon, 27 Apr 2020 11:50:27 -0700 Subject: [PATCH 6/6] Mark expand/0122 non-normative, as it results in an invalid JSON-LD result. Note: toRdf/e122 does not include a triple for this, so it remains normative. For #480. --- reports/earl.jsonld | 154460 ++++++++++++++++---------------- reports/index.html | 68 +- reports/manifests.nt | 25863 +++--- tests/expand-manifest.html | 4 +- tests/expand-manifest.jsonld | 4 +- 5 files changed, 90197 insertions(+), 90202 deletions(-) diff --git a/reports/earl.jsonld b/reports/earl.jsonld index 8ced185d..c17b2076 100644 --- a/reports/earl.jsonld +++ b/reports/earl.jsonld @@ -104,188894 +104,188886 @@ }, "@id": "", "@type": [ - "doap:Project", - "Software" + "Software", + "doap:Project" ], + "testSubjects": [ + { + "@id": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "http://metacpan.org/dist/JSONLD/", + "name": "JSONLD", + "release": { + "@id": "http://purl.org/NET/cpan-uri/dist/JSONLD/v_0-004", + "revision": "0.004" + }, + "language": "Perl", + "developer": [ + { + "@id": "http://kasei.us/about/#greg", + "@type": "foaf:Person", + "foaf:homepage": "http://kasei.us/", + "foaf:name": "Gregory Todd Williams" + } + ], + "doap:description": "Perl module JSONLD" + }, + { + "@id": "https://framagit.org/tyreunom/guile-jsonld", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "https://framagit.org/tyreunom/guile-jsonld/", + "name": "guile-jsonld", + "release": { + "@id": "_:b855", + "revision": "1.0.0" + }, + "language": "GNU Guile", + "developer": [ + { + "@id": "https://lepiller.eu/#me", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": "https://lepiller.eu", + "foaf:name": "Julien Lepiller" + } + ], + "doapDesc": "Guile implementation of the JsonLD API defined by the W3C." + }, + { + "@id": "https://github.com/digitalbazaar/jsonld.js", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "https://github.com/digitalbazaar/jsonld.js", + "name": "jsonld.js", + "release": { + "@id": "_:b805", + "revision": "3.1.0" + }, + "language": "JavaScript", + "developer": [ + { + "@id": "https://github.com/dlongley", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": { + "@id": "https://github.com/dlongley", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": "https://github.com/dlongley", + "foaf:name": "Dave Longley" + }, + "foaf:name": "Dave Longley" + } + ], + "doap:description": "A JSON-LD processor for JavaScript" + }, + { + "@id": "https://github.com/digitalbazaar/pyld", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "https://github.com/digitalbazaar/pyld", + "name": "PyLD", + "release": { + "@id": "_:b1246", + "revision": "2.0.1" + }, + "language": "Python", + "developer": [ + { + "@id": "https://github.com/dlongley", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": { + "@id": "https://github.com/dlongley", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": "https://github.com/dlongley", + "foaf:name": "Dave Longley" + }, + "foaf:name": "Dave Longley" + } + ], + "doap:description": "A JSON-LD processor for Python" + }, + { + "@id": "https://github.com/pchampin/sophia_rs", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "https://github.com/pchampin/sophia_rs", + "name": "Sophia", + "release": { + "@id": "_:b938", + "revision": "0.4.0" + }, + "language": "Rust", + "developer": [ + { + "@id": "http://champin.net/#pa", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:name": "Pierre-Antoine Champin" + } + ], + "doapDesc": "A Rust toolkit for RDF and Linked Data." + }, + { + "@id": "https://github.com/piprate/json-gold", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "https://github.com/piprate/json-gold", + "name": "JSON-goLD", + "release": { + "@id": "https://github.com/piprate/json-gold/tree/v0.3.0", + "revision": "v0.3.0" + }, + "language": "Go", + "developer": [ + { + "@id": "https://github.com/kazarena", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": { + "@id": "https://github.com/kazarena", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": "https://github.com/kazarena", + "foaf:name": "Stan Nazarenko" + }, + "foaf:name": "Stan Nazarenko" + } + ], + "doap:description": "A JSON-LD processor for Go" + }, + { + "@id": "https://rubygems.org/gems/json-ld", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "https://github.com/ruby-rdf/json-ld/", + "name": "JSON::LD", + "release": { + "@id": "_:b1120", + "revision": "3.1.3" + }, + "language": "Ruby", + "developer": [ + { + "@id": "https://greggkellogg.net/foaf#me", + "@type": "foaf:Person", + "foaf:name": "Gregg Kellogg" + } + ], + "doapDesc": "RDF.rb extension for parsing/serializing JSON-LD data." + }, + { + "@id": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "https://github.com/rubensworks/jsonld-streaming-parser.js#readme", + "name": "jsonld-streaming-parser", + "release": { + "@id": "_:b1028", + "revision": "2.0.0" + }, + "language": "JavaScript", + "developer": [ + { + "@id": "https://www.rubensworks.net/#me", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": "https://www.rubensworks.net/", + "foaf:name": "Ruben Taelman " + } + ], + "doapDesc": "Streaming JSON-LD parser" + }, + { + "@id": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "https://github.com/rubensworks/jsonld-streaming-serializer.js#readme", + "name": "jsonld-streaming-serializer", + "release": { + "@id": "_:b829", + "revision": "1.1.0" + }, + "language": "JavaScript", + "developer": [ + { + "@id": "https://www.rubensworks.net/#me", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": "https://www.rubensworks.net/", + "foaf:name": "Ruben Taelman " + } + ], + "doapDesc": "Streaming JSON-LD serializer" + }, + { + "@id": "https://www.npmjs.com/package/rdf-parse/", + "@type": [ + "Software", + "doap:Project", + "TestSubject" + ], + "homepage": "https://github.com/rubensworks/rdf-parse.js#readme", + "name": "rdf-parse", + "release": { + "@id": "_:b843", + "revision": "1.3.0" + }, + "language": "JavaScript", + "developer": [ + { + "@id": "https://www.rubensworks.net/#me", + "@type": [ + "Assertor", + "foaf:Person" + ], + "foaf:homepage": "https://www.rubensworks.net/", + "foaf:name": "Ruben Taelman " + } + ], + "doapDesc": "Parses RDF from any serialization" + } + ], + "assertions": [ + "guile-jsonld-earl.ttl", + "rust-sophia-earl.ttl", + "jsonld-gold-earl.ttl", + "pyld-earl.ttl", + "jsonld-streaming-parser-earl.ttl", + "perl-jsonld-earl.ttl", + "jsonld-streaming-serializer-earl.ttl", + "rdf-parse.ttl", + "jsonld-js-earl.ttl", + "ruby-json-ld-earl.ttl" + ], + "name": "JSON-LD 1.1 Processing Algorithms and API and Framing", + "generatedBy": { + "@id": "http://rubygems.org/gems/earl-report", + "@type": [ + "Software", + "doap:Project" + ], + "homepage": "https://github.com/gkellogg/earl-report", + "shortdesc": "Earl Report summary generator", + "license": "http://unlicense.org", + "name": "earl-report", + "release": { + "@id": "https://github.com/gkellogg/earl-report/tree/0.5.1", + "@type": "doap:Version", + "revision": "0.5.1", + "name": "earl-report-0.5.1", + "doap:created": { + "@value": "2020-04-11", + "@type": "http://www.w3.org/2001/XMLSchema#date" + } + }, + "language": "Ruby", + "developer": [ + "http://greggkellogg.net/foaf#me" + ], + "doapDesc": "EarlReport generates HTML+RDFa rollups of multiple EARL reports" + }, + "bibRef": "[[json-ld-api]]", "entries": [ { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest", "@type": [ - "mf:Manifest", - "Report" + "Report", + "mf:Manifest" ], "entries": [ { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0001-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0001-out.jsonld", - "title": "drop free-floating nodes", - "rdfs:comment": "Unreferenced nodes not containing properties are dropped", "assertions": [ { - "@id": "_:b0", + "@id": "_:b8578", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "result": { - "@id": "_:b10", + "@id": "_:b18277", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8", + "@id": "_:b8584", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18", + "@id": "_:b18282", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4", + "@id": "_:b8583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14", + "@id": "_:b18281", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3", + "@id": "_:b8585", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13", + "@id": "_:b13183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9", + "@id": "_:b8579", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "result": { - "@id": "_:b19", + "@id": "_:b18278", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5", + "@id": "_:b8577", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15", + "@id": "_:b13564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1", + "@id": "_:b8581", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11", + "@id": "_:b18279", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6", + "@id": "_:b8580", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", + "mode": "earl:automatic", "result": { - "@id": "_:b16", + "@id": "_:b9502", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7", + "@id": "_:b8575", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "result": { - "@id": "_:b17", + "@id": "_:b8576", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2", + "@id": "_:b8582", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", "result": { - "@id": "_:b12", + "@id": "_:b18280", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0001-out.nq", + "title": "Plain literal with URIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0001-in.jsonld", + "rdfs:comment": "Tests generation of a triple using full URIs and a plain literal." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0002-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0002-out.jsonld", - "title": "basic", - "rdfs:comment": "Basic term and value compaction", "assertions": [ { - "@id": "_:b48", + "@id": "_:b10795", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "result": { - "@id": "_:b58", + "@id": "_:b24611", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b41", + "@id": "_:b10799", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b51", + "@id": "_:b25380", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b45", + "@id": "_:b10790", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b55", + "@id": "_:b10791", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b46", + "@id": "_:b10800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b56", + "@id": "_:b939", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b40", + "@id": "_:b10793", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "result": { - "@id": "_:b50", + "@id": "_:b16203", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b47", + "@id": "_:b10796", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b57", + "@id": "_:b24947", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b42", + "@id": "_:b10792", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b52", + "@id": "_:b14661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b44", + "@id": "_:b10794", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", + "mode": "earl:automatic", "result": { - "@id": "_:b54", + "@id": "_:b20867", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b43", + "@id": "_:b10798", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "result": { - "@id": "_:b53", + "@id": "_:b25379", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b49", + "@id": "_:b10797", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", "result": { - "@id": "_:b59", + "@id": "_:b25378", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0002-out.nq", + "title": "Plain literal with CURIE from default context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0002-in.jsonld", + "rdfs:comment": "Tests generation of a triple using a CURIE defined in the default context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0003-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0003-out.jsonld", - "title": "drop null and unmapped properties", - "rdfs:comment": "Properties mapped to null or which are never mapped are dropped", "assertions": [ { - "@id": "_:b5778", + "@id": "_:b20168", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "result": { - "@id": "_:b5787", + "@id": "_:b24802", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5774", + "@id": "_:b20159", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5784", + "@id": "_:b5104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5779", + "@id": "_:b20160", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5788", + "@id": "_:b23249", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5781", + "@id": "_:b20167", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5790", + "@id": "_:b21590", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5780", + "@id": "_:b20166", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "result": { - "@id": "_:b5789", + "@id": "_:b10933", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5775", + "@id": "_:b20162", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5785", + "@id": "_:b23694", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5776", + "@id": "_:b20163", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5786", + "@id": "_:b26273", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5773", + "@id": "_:b20164", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", + "mode": "earl:automatic", "result": { - "@id": "_:b5783", + "@id": "_:b2954", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5777", + "@id": "_:b20161", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "result": { - "@id": "_:b5022", + "@id": "_:b23605", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5782", + "@id": "_:b20165", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", "result": { - "@id": "_:b5791", + "@id": "_:b26361", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0003-out.nq", + "title": "Default subject is BNode", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0003-in.jsonld", + "rdfs:comment": "Tests that a BNode is created if no explicit subject is set." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0004-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0004-out.jsonld", - "title": "optimize @set, keep empty arrays", - "rdfs:comment": "Containers mapped to @set keep empty arrays", "assertions": [ { - "@id": "_:b191", + "@id": "_:b5696", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "result": { - "@id": "_:b23963", + "@id": "_:b12819", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b189", + "@id": "_:b5695", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17682", + "@id": "_:b12818", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b194", + "@id": "_:b5693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26563", + "@id": "_:b12816", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b187", + "@id": "_:b5692", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23755", + "@id": "_:b12815", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b193", + "@id": "_:b5699", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "result": { - "@id": "_:b12796", + "@id": "_:b12822", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b192", + "@id": "_:b5697", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26528", + "@id": "_:b12820", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b186", + "@id": "_:b5691", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19448", + "@id": "_:b11465", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b185", + "@id": "_:b5694", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", + "mode": "earl:automatic", "result": { - "@id": "_:b11091", + "@id": "_:b12817", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b188", + "@id": "_:b5698", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "result": { - "@id": "_:b2982", + "@id": "_:b12821", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b190", + "@id": "_:b5689", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", "result": { - "@id": "_:b17595", + "@id": "_:b5690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0004-out.nq", + "title": "Literal with language tag", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0004-in.jsonld", + "rdfs:comment": "Tests that a plain literal is created with a language tag." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0005-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0005-out.jsonld", - "title": "@type and prefix compaction", - "rdfs:comment": "Compact uses prefixes in @type", "assertions": [ { - "@id": "_:b128", + "@id": "_:b14531", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "result": { - "@id": "_:b260", + "@id": "_:b16678", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b129", + "@id": "_:b14527", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b261", + "@id": "_:b25964", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b123", + "@id": "_:b14530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b255", + "@id": "_:b24027", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b132", + "@id": "_:b14529", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b264", + "@id": "_:b7204", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b125", + "@id": "_:b14523", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "result": { - "@id": "_:b257", + "@id": "_:b14524", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b131", + "@id": "_:b14532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b263", + "@id": "_:b24975", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b126", + "@id": "_:b14533", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b258", + "@id": "_:b26963", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b130", + "@id": "_:b14528", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", + "mode": "earl:automatic", "result": { - "@id": "_:b262", + "@id": "_:b23512", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b127", + "@id": "_:b14526", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "result": { - "@id": "_:b259", + "@id": "_:b23408", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b124", + "@id": "_:b14525", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", "result": { - "@id": "_:b256", + "@id": "_:b20419", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0005-out.nq", + "title": "Extended character set literal", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0005-in.jsonld", + "rdfs:comment": "Tests that a literal may be created using extended characters." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0006-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0006-out.jsonld", - "title": "keep expanded object format if @type doesn't match", - "rdfs:comment": "Values not matching a coerced @type remain in expanded form", "assertions": [ { - "@id": "_:b18873", + "@id": "_:b16108", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "result": { - "@id": "_:b10771", + "@id": "_:b16109", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18878", + "@id": "_:b16110", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26317", + "@id": "_:b12223", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18880", + "@id": "_:b16114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25107", + "@id": "_:b19614", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18879", + "@id": "_:b16115", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23147", + "@id": "_:b19615", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18871", + "@id": "_:b16116", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "result": { - "@id": "_:b19724", + "@id": "_:b19616", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18874", + "@id": "_:b16111", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25546", + "@id": "_:b19612", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18875", + "@id": "_:b16113", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25825", + "@id": "_:b19613", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18876", + "@id": "_:b16117", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", + "mode": "earl:automatic", "result": { - "@id": "_:b26093", + "@id": "_:b14158", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18872", + "@id": "_:b16118", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "result": { - "@id": "_:b24946", + "@id": "_:b19617", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18877", + "@id": "_:b16112", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", "result": { - "@id": "_:b26177", + "@id": "_:b9356", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0006-out.nq", + "title": "Typed literal", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0006-in.jsonld", + "rdfs:comment": "Tests creation of a literal with a datatype." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0007-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0007-out.jsonld", - "title": "add context", - "rdfs:comment": "External context is added to the compacted document", "assertions": [ { - "@id": "_:b1149", + "@id": "_:b7774", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "result": { - "@id": "_:b26543", + "@id": "_:b20353", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1147", + "@id": "_:b7775", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1869", + "@id": "_:b27026", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1146", + "@id": "_:b7771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23694", + "@id": "_:b22813", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1142", + "@id": "_:b7772", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1143", + "@id": "_:b15937", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1148", + "@id": "_:b7769", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "result": { - "@id": "_:b25672", + "@id": "_:b11773", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1145", + "@id": "_:b7770", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12143", + "@id": "_:b19779", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1151", + "@id": "_:b7777", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25343", + "@id": "_:b22664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1150", + "@id": "_:b7773", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", + "mode": "earl:automatic", "result": { - "@id": "_:b26782", + "@id": "_:b23072", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1153", + "@id": "_:b7767", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "result": { - "@id": "_:b26910", + "@id": "_:b7768", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1152", + "@id": "_:b7776", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", "result": { - "@id": "_:b5530", + "@id": "_:b22623", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0007-out.nq", + "title": "Tests 'a' generates rdf:type and object is implicit IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0007-in.jsonld", + "rdfs:comment": "Verify that 'a' is an alias for rdf:type, and the object is created as an IRI." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0008-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0008-out.jsonld", - "title": "alias keywords", - "rdfs:comment": "Aliases for keywords are used in compacted document", "assertions": [ { - "@id": "_:b430", + "@id": "_:b15595", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "result": { - "@id": "_:b11195", + "@id": "_:b26586", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b436", + "@id": "_:b15593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22608", + "@id": "_:b4792", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b431", + "@id": "_:b15587", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20751", + "@id": "_:b15588", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b435", + "@id": "_:b15589", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22607", + "@id": "_:b16139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b434", + "@id": "_:b15597", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "result": { - "@id": "_:b19798", + "@id": "_:b25097", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b432", + "@id": "_:b15590", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19826", + "@id": "_:b17653", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b438", + "@id": "_:b15596", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22609", + "@id": "_:b25991", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b429", + "@id": "_:b15594", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", + "mode": "earl:automatic", "result": { - "@id": "_:b7493", + "@id": "_:b26585", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b433", + "@id": "_:b15591", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "result": { - "@id": "_:b22606", + "@id": "_:b26053", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b437", + "@id": "_:b15592", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", "result": { - "@id": "_:b20354", + "@id": "_:b23238", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0008-out.nq", + "title": "Test prefix defined in @context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0008-in.jsonld", + "rdfs:comment": "Generate an IRI using a prefix defined within an @context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0009-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0009-out.jsonld", - "title": "compact @id", - "rdfs:comment": "Value with @id is compacted to string if property cast to @id", "assertions": [ { - "@id": "_:b21499", + "@id": "_:b4188", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "result": { - "@id": "_:b20312", + "@id": "_:b22694", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21503", + "@id": "_:b4182", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26739", + "@id": "_:b5676", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21500", + "@id": "_:b4187", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26745", + "@id": "_:b18041", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21501", + "@id": "_:b4189", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25473", + "@id": "_:b23445", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21505", + "@id": "_:b4184", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "result": { - "@id": "_:b26193", + "@id": "_:b22745", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21502", + "@id": "_:b4186", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b27011", + "@id": "_:b19445", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21497", + "@id": "_:b4183", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15435", + "@id": "_:b19947", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21498", + "@id": "_:b4185", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", + "mode": "earl:automatic", "result": { - "@id": "_:b23989", + "@id": "_:b15352", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b21495", + "@id": "_:b4180", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "result": { - "@id": "_:b21496", + "@id": "_:b4181", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21504", + "@id": "_:b4190", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", "result": { - "@id": "_:b24989", + "@id": "_:b23446", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0009-out.nq", + "title": "Test using an empty suffix", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0009-in.jsonld", + "rdfs:comment": "An empty suffix may be used." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0010-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0010-out.jsonld", - "title": "array to @graph", - "rdfs:comment": "An array of objects is serialized with @graph", "assertions": [ { - "@id": "_:b87", + "@id": "_:b15804", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "result": { - "@id": "_:b23982", + "@id": "_:b15813", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b90", + "@id": "_:b15803", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15228", + "@id": "_:b15812", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b84", + "@id": "_:b15802", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24867", + "@id": "_:b12292", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b82", + "@id": "_:b15810", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14615", + "@id": "_:b15819", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b89", + "@id": "_:b15808", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "result": { - "@id": "_:b25384", + "@id": "_:b15817", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b91", + "@id": "_:b15809", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24833", + "@id": "_:b15818", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b86", + "@id": "_:b15806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22975", + "@id": "_:b15815", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b83", + "@id": "_:b15807", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", + "mode": "earl:automatic", "result": { - "@id": "_:b15931", + "@id": "_:b15816", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b88", + "@id": "_:b15811", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "result": { - "@id": "_:b22717", + "@id": "_:b15820", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b85", + "@id": "_:b15805", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", "result": { - "@id": "_:b25383", + "@id": "_:b15814", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0010-out.nq", + "title": "Test object processing defines object", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0010-in.jsonld", + "rdfs:comment": "A property referencing an associative array gets object from subject of array." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0011-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0011-out.jsonld", - "title": "compact date", - "rdfs:comment": "Expanded value with type xsd:dateTime is represented as string with type coercion", "assertions": [ { - "@id": "_:b14470", + "@id": "_:b11119", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "result": { - "@id": "_:b16726", + "@id": "_:b16016", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14463", + "@id": "_:b11124", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12685", + "@id": "_:b17349", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14469", + "@id": "_:b11125", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16725", + "@id": "_:b26772", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14464", + "@id": "_:b11126", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4758", + "@id": "_:b26773", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14462", + "@id": "_:b11122", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "result": { - "@id": "_:b16720", + "@id": "_:b24364", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14467", + "@id": "_:b11123", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16723", + "@id": "_:b26767", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14460", + "@id": "_:b11117", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14461", + "@id": "_:b11118", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14468", + "@id": "_:b11127", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", + "mode": "earl:automatic", "result": { - "@id": "_:b16724", + "@id": "_:b26356", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14466", + "@id": "_:b11121", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "result": { - "@id": "_:b16722", + "@id": "_:b23124", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14465", + "@id": "_:b11120", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", "result": { - "@id": "_:b16721", + "@id": "_:b21393", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0011-out.nq", + "title": "Test object processing defines object with implicit BNode", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0011-in.jsonld", + "rdfs:comment": "If no @ is specified, a BNode is created, and will be used as the object of an enclosing property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0012-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0012-out.jsonld", - "title": "native types", - "rdfs:comment": "Native values are unmodified during compaction", "assertions": [ { - "@id": "_:b4036", + "@id": "_:b4778", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "result": { - "@id": "_:b23311", + "@id": "_:b10482", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4037", + "@id": "_:b4776", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24023", + "@id": "_:b4777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4038", + "@id": "_:b4780", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15860", + "@id": "_:b21538", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4032", + "@id": "_:b4786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4033", + "@id": "_:b24859", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4042", + "@id": "_:b4779", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "result": { - "@id": "_:b18694", + "@id": "_:b19464", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4040", + "@id": "_:b4783", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23356", + "@id": "_:b26363", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4034", + "@id": "_:b4781", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12934", + "@id": "_:b19112", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4039", + "@id": "_:b4785", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", + "mode": "earl:automatic", "result": { - "@id": "_:b19980", + "@id": "_:b26662", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4035", + "@id": "_:b4784", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "result": { - "@id": "_:b18551", + "@id": "_:b15673", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4041", + "@id": "_:b4782", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", "result": { - "@id": "_:b26500", + "@id": "_:b25167", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0012-out.nq", + "title": "Multiple Objects for a Single Property", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0012-in.jsonld", + "rdfs:comment": "Tests that Multiple Objects are for a Single Property using array syntax." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0013-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0013-out.jsonld", - "title": "@value with @language", - "rdfs:comment": "Values with @language remain in expanded form by default", "assertions": [ { - "@id": "_:b12244", + "@id": "_:b13277", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "result": { - "@id": "_:b25959", + "@id": "_:b26025", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12245", + "@id": "_:b13276", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20800", + "@id": "_:b24879", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12246", + "@id": "_:b13278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26791", + "@id": "_:b26777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12243", + "@id": "_:b13270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24605", + "@id": "_:b13271", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12239", + "@id": "_:b13275", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "result": { - "@id": "_:b12240", + "@id": "_:b23527", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12242", + "@id": "_:b13273", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20918", + "@id": "_:b22425", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12248", + "@id": "_:b13272", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26085", + "@id": "_:b17659", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12247", + "@id": "_:b13279", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", + "mode": "earl:automatic", "result": { - "@id": "_:b22678", + "@id": "_:b26930", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12241", + "@id": "_:b13274", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "result": { - "@id": "_:b18086", + "@id": "_:b22796", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12249", + "@id": "_:b13280", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", "result": { - "@id": "_:b26792", + "@id": "_:b8664", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0013-out.nq", + "title": "Creation of an empty list", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0013-in.jsonld", + "rdfs:comment": "Tests that @list: [] generates an empty list." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0014-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0014-out.jsonld", - "title": "array to aliased @graph", - "rdfs:comment": "Aliasing @graph uses alias in compacted document", "assertions": [ { - "@id": "_:b141", + "@id": "_:b3787", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "result": { - "@id": "_:b151", + "@id": "_:b20227", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b140", + "@id": "_:b3789", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b150", + "@id": "_:b23368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b134", + "@id": "_:b3781", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b144", + "@id": "_:b3782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b135", + "@id": "_:b3786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b145", + "@id": "_:b22315", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b139", + "@id": "_:b3791", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "result": { - "@id": "_:b149", + "@id": "_:b15776", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b133", + "@id": "_:b3783", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b143", + "@id": "_:b9862", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b138", + "@id": "_:b3784", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b148", + "@id": "_:b13053", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b136", + "@id": "_:b3788", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", + "mode": "earl:automatic", "result": { - "@id": "_:b146", + "@id": "_:b22208", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b137", + "@id": "_:b3790", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "result": { - "@id": "_:b147", + "@id": "_:b20400", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b142", + "@id": "_:b3785", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", "result": { - "@id": "_:b152", + "@id": "_:b15347", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0014-out.nq", + "title": "Creation of a list with single element", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0014-in.jsonld", + "rdfs:comment": "Tests that @list generates a list." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0015-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0015-out.jsonld", - "title": "best match compaction", - "rdfs:comment": "Property with values of different types use most appropriate term when compacting", "assertions": [ { - "@id": "_:b349", + "@id": "_:b5416", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "result": { - "@id": "_:b359", + "@id": "_:b22192", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b356", + "@id": "_:b5413", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b366", + "@id": "_:b15047", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b353", + "@id": "_:b5415", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b363", + "@id": "_:b22191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b357", + "@id": "_:b5409", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b367", + "@id": "_:b10559", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b348", + "@id": "_:b5412", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "result": { - "@id": "_:b358", + "@id": "_:b21982", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b351", + "@id": "_:b5410", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b361", + "@id": "_:b14951", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b354", + "@id": "_:b5414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b364", + "@id": "_:b22190", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b352", + "@id": "_:b5417", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", + "mode": "earl:automatic", "result": { - "@id": "_:b362", + "@id": "_:b22193", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b355", + "@id": "_:b5411", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "result": { - "@id": "_:b365", + "@id": "_:b16820", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b350", + "@id": "_:b5418", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", "result": { - "@id": "_:b360", + "@id": "_:b16051", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0015-out.nq", + "title": "Creation of a list with multiple elements", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0015-in.jsonld", + "rdfs:comment": "Tests that list with multiple elements." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0016-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0016-out.jsonld", - "title": "recursive named graphs", - "rdfs:comment": "Compacting a document with multiple embedded uses of @graph", "assertions": [ { - "@id": "_:b11411", + "@id": "_:b1691", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "result": { - "@id": "_:b14996", + "@id": "_:b3995", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11412", + "@id": "_:b1697", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25009", + "@id": "_:b18969", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11416", + "@id": "_:b1695", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22326", + "@id": "_:b18083", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11413", + "@id": "_:b1694", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12768", + "@id": "_:b16932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11418", + "@id": "_:b1692", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "result": { - "@id": "_:b25870", + "@id": "_:b12048", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11408", + "@id": "_:b1693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11409", + "@id": "_:b14514", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11414", + "@id": "_:b1698", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26031", + "@id": "_:b18970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11415", + "@id": "_:b1696", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", + "mode": "earl:automatic", "result": { - "@id": "_:b23085", + "@id": "_:b18968", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11410", + "@id": "_:b1699", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "result": { - "@id": "_:b15512", + "@id": "_:b18971", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11417", + "@id": "_:b1689", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", "result": { - "@id": "_:b12794", + "@id": "_:b1690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0016-out.nq", + "title": "Empty IRI expands to resource location", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0016-in.jsonld", + "rdfs:comment": "Expanding an empty IRI uses the test file location." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0017-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0017-out.jsonld", - "title": "A term mapping to null removes the mapping", - "rdfs:comment": "Mapping a term to null causes the property and its values to be removed from the compacted document", "assertions": [ { - "@id": "_:b6407", + "@id": "_:b3298", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "result": { - "@id": "_:b20082", + "@id": "_:b11846", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6408", + "@id": "_:b3295", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16823", + "@id": "_:b11843", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6412", + "@id": "_:b3302", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10361", + "@id": "_:b11850", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6413", + "@id": "_:b3301", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25559", + "@id": "_:b11849", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6409", + "@id": "_:b3297", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "result": { - "@id": "_:b25556", + "@id": "_:b11845", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6406", + "@id": "_:b3299", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12019", + "@id": "_:b11847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6404", + "@id": "_:b3300", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6170", + "@id": "_:b11848", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6410", + "@id": "_:b3293", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", + "mode": "earl:automatic", "result": { - "@id": "_:b25557", + "@id": "_:b3294", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6405", + "@id": "_:b3303", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "result": { - "@id": "_:b19135", + "@id": "_:b11851", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6411", + "@id": "_:b3296", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", "result": { - "@id": "_:b25558", + "@id": "_:b11844", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0017-out.nq", + "title": "Relative IRI expands relative resource location", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0017-in.jsonld", + "rdfs:comment": "Expanding a relative IRI uses the test file location." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0018-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0018-out.jsonld", - "title": "best matching term for lists", - "rdfs:comment": "Lists with values of different types use best term in compacted document", "assertions": [ { - "@id": "_:b3589", + "@id": "_:b20908", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "result": { - "@id": "_:b26816", + "@id": "_:b12041", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3588", + "@id": "_:b20899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12067", + "@id": "_:b20900", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3591", + "@id": "_:b20905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25877", + "@id": "_:b26763", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3584", + "@id": "_:b20903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17143", + "@id": "_:b16630", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3592", + "@id": "_:b20901", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "result": { - "@id": "_:b26480", + "@id": "_:b3777", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3586", + "@id": "_:b20907", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20843", + "@id": "_:b26111", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3590", + "@id": "_:b20909", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26967", + "@id": "_:b13822", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3585", + "@id": "_:b20906", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", + "mode": "earl:automatic", "result": { - "@id": "_:b19298", + "@id": "_:b27005", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3582", + "@id": "_:b20902", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "result": { - "@id": "_:b3583", + "@id": "_:b25926", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3587", + "@id": "_:b20904", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", "result": { - "@id": "_:b26577", + "@id": "_:b26538", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0018-out.nq", + "title": "Frag ID expands relative resource location", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0018-in.jsonld", + "rdfs:comment": "Expanding a fragment uses the test file location." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0019-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0019-out.jsonld", - "title": "Keep duplicate values in @list and @set", - "rdfs:comment": "Duplicate values in @list or @set are retained in compacted document", "assertions": [ { - "@id": "_:b61", + "@id": "_:b4476", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "result": { - "@id": "_:b71", + "@id": "_:b4477", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b62", + "@id": "_:b4481", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b72", + "@id": "_:b22207", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b64", + "@id": "_:b4485", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b74", + "@id": "_:b26212", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b68", + "@id": "_:b4483", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b78", + "@id": "_:b26211", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b67", + "@id": "_:b4486", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "result": { - "@id": "_:b77", + "@id": "_:b26027", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b63", + "@id": "_:b4480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b73", + "@id": "_:b10676", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b70", + "@id": "_:b4484", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b80", + "@id": "_:b24665", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b65", + "@id": "_:b4479", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", + "mode": "earl:automatic", "result": { - "@id": "_:b75", + "@id": "_:b21079", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b66", + "@id": "_:b4478", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "result": { - "@id": "_:b76", + "@id": "_:b22808", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b69", + "@id": "_:b4482", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", "result": { - "@id": "_:b79", + "@id": "_:b14680", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0019-out.nq", + "title": "Test type coercion to anyURI", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0019-in.jsonld", + "rdfs:comment": "Tests coercion of object to anyURI when specified." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0020-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0020-out.jsonld", - "title": "Compact @id that is a property IRI when @container is @list", - "rdfs:comment": "A term with @container: @list is also used as the value of an @id, if appropriate", "assertions": [ { - "@id": "_:b215", + "@id": "_:b5867", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "result": { - "@id": "_:b2020", + "@id": "_:b24513", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b218", + "@id": "_:b5862", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14160", + "@id": "_:b23635", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b222", + "@id": "_:b5864", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19244", + "@id": "_:b25264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b221", + "@id": "_:b5866", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25014", + "@id": "_:b25399", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b217", + "@id": "_:b5865", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "result": { - "@id": "_:b23055", + "@id": "_:b16157", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b219", + "@id": "_:b5863", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26619", + "@id": "_:b17919", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b223", + "@id": "_:b5861", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4095", + "@id": "_:b21892", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b220", + "@id": "_:b5868", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", + "mode": "earl:automatic", "result": { - "@id": "_:b14541", + "@id": "_:b24653", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b216", + "@id": "_:b5860", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "result": { - "@id": "_:b16349", + "@id": "_:b12555", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b224", + "@id": "_:b5869", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", "result": { - "@id": "_:b12892", + "@id": "_:b23538", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0020-out.nq", + "title": "Test type coercion to typed literal", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0020-in.jsonld", + "rdfs:comment": "Tests coercion of object to a typed literal when specified." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0021-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0021-out.jsonld", - "title": "Compact properties and types using @vocab", - "rdfs:comment": "@vocab is used to create relative properties and types if no other term matches", "assertions": [ { - "@id": "_:b18334", + "@id": "_:b6569", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "result": { - "@id": "_:b19088", + "@id": "_:b12075", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18339", + "@id": "_:b6574", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7823", + "@id": "_:b24855", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18337", + "@id": "_:b6572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25815", + "@id": "_:b22127", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18338", + "@id": "_:b6573", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25370", + "@id": "_:b16355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18342", + "@id": "_:b6576", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "result": { - "@id": "_:b19312", + "@id": "_:b24409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18332", + "@id": "_:b6571", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18333", + "@id": "_:b24854", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18340", + "@id": "_:b6577", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24497", + "@id": "_:b22873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18336", + "@id": "_:b6570", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", + "mode": "earl:automatic", "result": { - "@id": "_:b25848", + "@id": "_:b24812", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18335", + "@id": "_:b6567", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "result": { - "@id": "_:b24384", + "@id": "_:b6568", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18341", + "@id": "_:b6575", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", "result": { - "@id": "_:b21295", + "@id": "_:b13348", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0022-out.nq", + "title": "Test coercion of double value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0022-in.jsonld", + "rdfs:comment": "Tests that a decimal value generates a xsd:double typed literal;." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0022-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0022-out.jsonld", - "title": "@list compaction of nested properties", - "rdfs:comment": "Compact nested properties using @list containers", "assertions": [ { - "@id": "_:b4716", + "@id": "_:b2398", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "result": { - "@id": "_:b2852", + "@id": "_:b14815", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4723", + "@id": "_:b2396", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24583", + "@id": "_:b14813", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4724", + "@id": "_:b2401", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23684", + "@id": "_:b14818", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4717", + "@id": "_:b2402", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16899", + "@id": "_:b14819", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4722", + "@id": "_:b2399", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "result": { - "@id": "_:b24582", + "@id": "_:b14816", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4720", + "@id": "_:b2392", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24580", + "@id": "_:b2393", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4718", + "@id": "_:b2400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21446", + "@id": "_:b14817", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4714", + "@id": "_:b2397", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", + "mode": "earl:automatic", "result": { - "@id": "_:b4715", + "@id": "_:b14814", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4721", + "@id": "_:b2394", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "result": { - "@id": "_:b24581", + "@id": "_:b14812", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4719", + "@id": "_:b2395", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", "result": { - "@id": "_:b24579", + "@id": "_:b3692", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0023-out.nq", + "title": "Test coercion of integer value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0023-in.jsonld", + "rdfs:comment": "Tests that a decimal value generates a xsd:integer typed literal." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0023-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0023-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0023-out.jsonld", - "title": "prefer @vocab over compacted IRIs", - "rdfs:comment": "@vocab takes precedence over prefixes - even if the result is longer", "assertions": [ { - "@id": "_:b312", + "@id": "_:b19122", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "result": { - "@id": "_:b322", + "@id": "_:b26516", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b311", + "@id": "_:b19124", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b321", + "@id": "_:b2561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b309", + "@id": "_:b19118", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b319", + "@id": "_:b20363", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b310", + "@id": "_:b19119", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b320", + "@id": "_:b25865", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b314", + "@id": "_:b19121", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "result": { - "@id": "_:b324", + "@id": "_:b12409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b308", + "@id": "_:b19123", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b318", + "@id": "_:b24069", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b307", + "@id": "_:b19116", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b317", + "@id": "_:b19117", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b313", + "@id": "_:b19126", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", + "mode": "earl:automatic", "result": { - "@id": "_:b323", + "@id": "_:b26517", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b315", + "@id": "_:b19120", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "result": { - "@id": "_:b325", + "@id": "_:b23358", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b316", + "@id": "_:b19125", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", "result": { - "@id": "_:b326", + "@id": "_:b25956", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0024-out.nq", + "title": "Test coercion of boolean value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0024-in.jsonld", + "rdfs:comment": "Tests that a decimal value generates a xsd:boolean typed literal." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0024-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0024-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0024-out.jsonld", - "title": "most specific term matching in @list.", - "rdfs:comment": "The most specific term that matches all of the elements in the list, taking into account the default language, must be selected.", "assertions": [ { - "@id": "_:b17042", + "@id": "_:b3258", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "result": { - "@id": "_:b22939", + "@id": "_:b3268", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17047", + "@id": "_:b3254", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22993", + "@id": "_:b3264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17044", + "@id": "_:b3253", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16165", + "@id": "_:b3263", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17045", + "@id": "_:b3256", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19972", + "@id": "_:b3266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17050", + "@id": "_:b3260", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "result": { - "@id": "_:b1631", + "@id": "_:b3270", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17043", + "@id": "_:b3259", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24107", + "@id": "_:b3269", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17048", + "@id": "_:b3255", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26876", + "@id": "_:b3265", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17046", + "@id": "_:b3251", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", + "mode": "earl:automatic", "result": { - "@id": "_:b26747", + "@id": "_:b3261", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17040", + "@id": "_:b3257", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "result": { - "@id": "_:b17041", + "@id": "_:b3267", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17049", + "@id": "_:b3252", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", "result": { - "@id": "_:b27016", + "@id": "_:b3262", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0025-out.nq", + "title": "Test list coercion with single element", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0025-in.jsonld", + "rdfs:comment": "Tests that an array with a single element on a property with @list coercion creates an RDF Collection." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0025-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0025-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0025-out.jsonld", - "title": "Language maps", - "rdfs:comment": "Multiple values with different languages use language maps if property has @container: @language", "assertions": [ { - "@id": "_:b7137", + "@id": "_:b2092", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "result": { - "@id": "_:b7147", + "@id": "_:b21717", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7136", + "@id": "_:b2087", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7146", + "@id": "_:b23829", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7135", + "@id": "_:b2091", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7145", + "@id": "_:b26077", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7143", + "@id": "_:b2082", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7153", + "@id": "_:b2083", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7141", + "@id": "_:b2089", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "result": { - "@id": "_:b7151", + "@id": "_:b24324", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7138", + "@id": "_:b2084", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7148", + "@id": "_:b9271", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7144", + "@id": "_:b2085", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7154", + "@id": "_:b23345", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7142", + "@id": "_:b2090", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", + "mode": "earl:automatic", "result": { - "@id": "_:b7152", + "@id": "_:b21494", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7140", + "@id": "_:b2088", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "result": { - "@id": "_:b7150", + "@id": "_:b15373", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7139", + "@id": "_:b2086", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", "result": { - "@id": "_:b7149", + "@id": "_:b25597", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0026-out.nq", + "title": "Test creation of multiple types", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0026-in.jsonld", + "rdfs:comment": "Tests that @type with an array of types creates multiple types." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0026-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0026-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0026-out.jsonld", - "title": "Language map term selection with complications", - "rdfs:comment": "Test appropriate property use given language maps with @vocab, a default language, and a competing term", "assertions": [ { - "@id": "_:b180", + "@id": "_:b6296", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "result": { - "@id": "_:b404", + "@id": "_:b22815", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b182", + "@id": "_:b6291", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b406", + "@id": "_:b9314", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b178", + "@id": "_:b6289", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b402", + "@id": "_:b10022", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b183", + "@id": "_:b6292", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b407", + "@id": "_:b23532", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b181", + "@id": "_:b6295", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "result": { - "@id": "_:b405", + "@id": "_:b24109", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b179", + "@id": "_:b6290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b403", + "@id": "_:b13236", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b177", + "@id": "_:b6287", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b401", + "@id": "_:b6288", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b176", + "@id": "_:b6294", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", + "mode": "earl:automatic", "result": { - "@id": "_:b400", + "@id": "_:b19643", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b175", + "@id": "_:b6297", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "result": { - "@id": "_:b399", + "@id": "_:b9730", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b174", + "@id": "_:b6293", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", "result": { - "@id": "_:b398", + "@id": "_:b20361", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0027-out.nq", + "title": "Simple named graph (Wikidata)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0027-in.jsonld", + "rdfs:comment": "Using @graph with other keys places triples in a named graph." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0027-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0027-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0027-out.jsonld", - "title": "@container: @set with multiple values", - "rdfs:comment": "Fall back to term with @set container if term with language map is defined", "assertions": [ { - "@id": "_:b704", + "@id": "_:b20651", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "result": { - "@id": "_:b714", + "@id": "_:b20652", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b710", + "@id": "_:b20658", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b720", + "@id": "_:b26717", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b711", + "@id": "_:b20661", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b721", + "@id": "_:b4787", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b712", + "@id": "_:b20660", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b722", + "@id": "_:b25712", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b703", + "@id": "_:b20657", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "result": { - "@id": "_:b713", + "@id": "_:b25918", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b705", + "@id": "_:b20659", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b715", + "@id": "_:b15702", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b709", + "@id": "_:b20654", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b719", + "@id": "_:b23012", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b707", + "@id": "_:b20656", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", + "mode": "earl:automatic", "result": { - "@id": "_:b717", + "@id": "_:b20882", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b706", + "@id": "_:b20655", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "result": { - "@id": "_:b716", + "@id": "_:b15348", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b708", + "@id": "_:b20653", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", "result": { - "@id": "_:b718", + "@id": "_:b22254", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0028-out.nq", + "title": "Simple named graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0028-in.jsonld", + "rdfs:comment": "Signing a graph." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0028-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0028-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0028-out.jsonld", - "title": "Alias keywords and use @vocab", - "rdfs:comment": "Combination of keyword aliases and @vocab", "assertions": [ { - "@id": "_:b370", + "@id": "_:b13215", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "result": { - "@id": "_:b380", + "@id": "_:b20445", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b375", + "@id": "_:b13216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b385", + "@id": "_:b21834", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b369", + "@id": "_:b13218", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b379", + "@id": "_:b26627", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b373", + "@id": "_:b13214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b383", + "@id": "_:b19932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b377", + "@id": "_:b13221", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "result": { - "@id": "_:b387", + "@id": "_:b26548", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b372", + "@id": "_:b13211", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b382", + "@id": "_:b13212", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b374", + "@id": "_:b13220", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b384", + "@id": "_:b22098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b368", + "@id": "_:b13219", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", + "mode": "earl:automatic", "result": { - "@id": "_:b378", + "@id": "_:b26628", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b371", + "@id": "_:b13217", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "result": { - "@id": "_:b381", + "@id": "_:b15184", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b376", + "@id": "_:b13213", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", "result": { - "@id": "_:b386", + "@id": "_:b14515", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0029-out.nq", + "title": "named graph with embedded named graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0029-in.jsonld", + "rdfs:comment": "Tests that named graphs containing named graphs flatten to single level of graph naming." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0029-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0029-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0029-out.jsonld", - "title": "Simple @index map", - "rdfs:comment": "Output uses index mapping if term is defined with @container: @index", "assertions": [ { - "@id": "_:b15819", + "@id": "_:b12665", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "result": { - "@id": "_:b15820", + "@id": "_:b20740", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15825", + "@id": "_:b12666", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23051", + "@id": "_:b23515", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15821", + "@id": "_:b12670", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20452", + "@id": "_:b14739", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15822", + "@id": "_:b12667", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23049", + "@id": "_:b25247", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15823", + "@id": "_:b12671", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "result": { - "@id": "_:b23050", + "@id": "_:b20444", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15824", + "@id": "_:b12672", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5135", + "@id": "_:b14090", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15828", + "@id": "_:b12662", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22440", + "@id": "_:b12663", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15827", + "@id": "_:b12668", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", + "mode": "earl:automatic", "result": { - "@id": "_:b23053", + "@id": "_:b25352", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15826", + "@id": "_:b12669", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "result": { - "@id": "_:b23052", + "@id": "_:b25353", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15829", + "@id": "_:b12664", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", "result": { - "@id": "_:b21341", + "@id": "_:b17287", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0030-out.nq", + "title": "top-level graph with string subject reference", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0030-in.jsonld", + "rdfs:comment": "Tests graphs containing subject references as strings." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0030-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0030-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0030-out.jsonld", - "title": "non-matching @container: @index", - "rdfs:comment": "Preserve @index tags if not compacted to an index map", "assertions": [ { - "@id": "_:b16946", + "@id": "_:b1150", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "result": { - "@id": "_:b25155", + "@id": "_:b20578", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16943", + "@id": "_:b1152", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21733", + "@id": "_:b23425", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16945", + "@id": "_:b1153", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24957", + "@id": "_:b22042", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16948", + "@id": "_:b1154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18083", + "@id": "_:b26924", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16944", + "@id": "_:b1148", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "result": { - "@id": "_:b22424", + "@id": "_:b16064", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16947", + "@id": "_:b1147", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14697", + "@id": "_:b12378", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16942", + "@id": "_:b1155", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19595", + "@id": "_:b26966", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16939", + "@id": "_:b1151", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", + "mode": "earl:automatic", "result": { - "@id": "_:b16940", + "@id": "_:b22837", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16941", + "@id": "_:b1149", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "result": { - "@id": "_:b18769", + "@id": "_:b19567", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16949", + "@id": "_:b1145", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", "result": { - "@id": "_:b17627", + "@id": "_:b1146", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0031-out.nq", + "title": "Reverse property", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0031-in.jsonld", + "rdfs:comment": "Tests conversion of reverse properties." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0031-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0031-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0031-out.jsonld", - "title": "Compact @reverse", - "rdfs:comment": "Compact traverses through @reverse", "assertions": [ { - "@id": "_:b29", + "@id": "_:b12651", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "result": { - "@id": "_:b39", + "@id": "_:b12652", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20", + "@id": "_:b12659", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b30", + "@id": "_:b26257", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b26", + "@id": "_:b12657", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b36", + "@id": "_:b4794", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b27", + "@id": "_:b12658", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b37", + "@id": "_:b3824", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23", + "@id": "_:b12661", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "result": { - "@id": "_:b33", + "@id": "_:b25553", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21", + "@id": "_:b12653", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b31", + "@id": "_:b16089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b28", + "@id": "_:b12660", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b38", + "@id": "_:b23648", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b24", + "@id": "_:b12654", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", + "mode": "earl:automatic", "result": { - "@id": "_:b34", + "@id": "_:b11852", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b25", + "@id": "_:b12656", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "result": { - "@id": "_:b35", + "@id": "_:b17783", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22", + "@id": "_:b12655", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", "result": { - "@id": "_:b32", + "@id": "_:b25409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0032-out.nq", + "title": "@context reordering", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0032-in.jsonld", + "rdfs:comment": "Tests that generated triples do not depend on order of @context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0032-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0032-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0032-out.jsonld", - "title": "Compact keys in reverse-maps", - "rdfs:comment": "Compact traverses through @reverse", "assertions": [ { - "@id": "_:b13932", + "@id": "_:b22518", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "result": { - "@id": "_:b13942", + "@id": "_:b22650", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13928", + "@id": "_:b22520", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13938", + "@id": "_:b24071", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13931", + "@id": "_:b22525", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13941", + "@id": "_:b22793", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13936", + "@id": "_:b22516", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13946", + "@id": "_:b22517", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13937", + "@id": "_:b22519", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "result": { - "@id": "_:b13947", + "@id": "_:b23520", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13930", + "@id": "_:b22522", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13940", + "@id": "_:b25450", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13935", + "@id": "_:b22521", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13945", + "@id": "_:b25634", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13933", + "@id": "_:b22526", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", + "mode": "earl:automatic", "result": { - "@id": "_:b13943", + "@id": "_:b17299", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13934", + "@id": "_:b22524", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "result": { - "@id": "_:b13944", + "@id": "_:b25635", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13929", + "@id": "_:b22523", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", "result": { - "@id": "_:b13939", + "@id": "_:b17972", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0033-out.nq", + "title": "@id reordering", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0033-in.jsonld", + "rdfs:comment": "Tests that generated triples do not depend on order of @id." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0033-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0033-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0033-out.jsonld", - "title": "Compact reverse-map to reverse property", - "rdfs:comment": "A reverse map is replaced with a matching property defined with @reverse", "assertions": [ { - "@id": "_:b11804", + "@id": "_:b19678", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "result": { - "@id": "_:b24482", + "@id": "_:b26195", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11800", + "@id": "_:b19673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25208", + "@id": "_:b9929", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11799", + "@id": "_:b19674", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20276", + "@id": "_:b22733", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11798", + "@id": "_:b19676", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2385", + "@id": "_:b25366", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11801", + "@id": "_:b19677", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "result": { - "@id": "_:b18069", + "@id": "_:b13081", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11795", + "@id": "_:b19672", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11796", + "@id": "_:b19285", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11803", + "@id": "_:b19680", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26789", + "@id": "_:b26286", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11802", + "@id": "_:b19679", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", + "mode": "earl:automatic", "result": { - "@id": "_:b25891", + "@id": "_:b26285", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11797", + "@id": "_:b19675", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "result": { - "@id": "_:b17691", + "@id": "_:b14311", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11805", + "@id": "_:b19681", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", "result": { - "@id": "_:b23537", + "@id": "_:b19868", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0034-out.nq", + "title": "context properties reordering", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0034-in.jsonld", + "rdfs:comment": "Tests that generated triples do not depend on order of properties inside @context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0034-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0034-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0034-out.jsonld", - "title": "Skip property with @reverse if no match", - "rdfs:comment": "Do not use reverse property if no other property matches as normal property", "assertions": [ { - "@id": "_:b390", + "@id": "_:b5638", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "result": { - "@id": "_:b8407", + "@id": "_:b11158", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b394", + "@id": "_:b5636", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24464", + "@id": "_:b11156", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b392", + "@id": "_:b5640", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25206", + "@id": "_:b11160", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b397", + "@id": "_:b5639", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13395", + "@id": "_:b11159", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b396", + "@id": "_:b5641", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "result": { - "@id": "_:b25207", + "@id": "_:b11161", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b388", + "@id": "_:b5631", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8648", + "@id": "_:b5632", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b393", + "@id": "_:b5635", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20094", + "@id": "_:b11155", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b389", + "@id": "_:b5633", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", + "mode": "earl:automatic", "result": { - "@id": "_:b20147", + "@id": "_:b11153", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b391", + "@id": "_:b5634", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "result": { - "@id": "_:b25205", + "@id": "_:b11154", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b395", + "@id": "_:b5637", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", "result": { - "@id": "_:b9945", + "@id": "_:b11157", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0035-out.nq", + "title": "non-fractional numbers converted to xsd:double", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0035-in.jsonld", + "rdfs:comment": "xsd:double's canonical lexical is used when converting numbers without fraction that are coerced to xsd:double" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0035-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0035-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0035-out.jsonld", - "title": "Compact @reverse node references using strings", - "rdfs:comment": "Compact node references to strings for reverse properties using @type: @id", "assertions": [ { - "@id": "_:b557", + "@id": "_:b8367", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "result": { - "@id": "_:b567", + "@id": "_:b8368", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b560", + "@id": "_:b8372", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b570", + "@id": "_:b24594", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b562", + "@id": "_:b8369", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b572", + "@id": "_:b20913", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b561", + "@id": "_:b8375", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b571", + "@id": "_:b25850", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b565", + "@id": "_:b8377", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "result": { - "@id": "_:b575", + "@id": "_:b8795", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b559", + "@id": "_:b8374", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b569", + "@id": "_:b26323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b558", + "@id": "_:b8370", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b568", + "@id": "_:b16898", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b566", + "@id": "_:b8376", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", + "mode": "earl:automatic", "result": { - "@id": "_:b576", + "@id": "_:b24948", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b564", + "@id": "_:b8373", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "result": { - "@id": "_:b574", + "@id": "_:b8886", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b563", + "@id": "_:b8371", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", "result": { - "@id": "_:b573", + "@id": "_:b18080", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0036-out.nq", + "title": "Use nodeMapGeneration bnode labels", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0036-in.jsonld", + "rdfs:comment": "The toRDF algorithm does not relabel blank nodes; it reuses the counter from the nodeMapGeneration to generate new ones" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0036-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0036-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0036-out.jsonld", - "title": "Compact reverse properties using index containers", - "rdfs:comment": "Compact using both reverse properties and index containers", "assertions": [ { - "@id": "_:b2561", + "@id": "_:b6799", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "result": { - "@id": "_:b18819", + "@id": "_:b10303", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2565", + "@id": "_:b6806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20964", + "@id": "_:b10310", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2567", + "@id": "_:b6802", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7822", + "@id": "_:b10306", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2564", + "@id": "_:b6797", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25742", + "@id": "_:b6798", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2568", + "@id": "_:b6807", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "result": { - "@id": "_:b17960", + "@id": "_:b10311", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2560", + "@id": "_:b6803", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16550", + "@id": "_:b10307", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2566", + "@id": "_:b6800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4573", + "@id": "_:b10304", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2562", + "@id": "_:b6804", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", + "mode": "earl:automatic", "result": { - "@id": "_:b14874", + "@id": "_:b10308", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2563", + "@id": "_:b6801", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "result": { - "@id": "_:b25932", + "@id": "_:b10305", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2558", + "@id": "_:b6805", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", "result": { - "@id": "_:b2559", + "@id": "_:b10309", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0113-out.nq", + "title": "Dataset with a IRI named graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0113-in.jsonld", + "rdfs:comment": "Basic use of creating a named graph using an IRI name" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0037-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0037-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0037-out.jsonld", - "title": "Compact keys in @reverse using @vocab", - "rdfs:comment": "Compact keys in @reverse using @vocab", "assertions": [ { - "@id": "_:b20651", + "@id": "_:b17264", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "result": { - "@id": "_:b24657", + "@id": "_:b21642", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20649", + "@id": "_:b17263", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24655", + "@id": "_:b24788", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20648", + "@id": "_:b17268", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24654", + "@id": "_:b25010", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20647", + "@id": "_:b17266", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24653", + "@id": "_:b21527", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20652", + "@id": "_:b17262", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "result": { - "@id": "_:b20939", + "@id": "_:b18158", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20645", + "@id": "_:b17267", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22477", + "@id": "_:b26512", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20644", + "@id": "_:b17270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21375", + "@id": "_:b18398", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20642", + "@id": "_:b17261", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", + "mode": "earl:automatic", "result": { - "@id": "_:b20643", + "@id": "_:b16010", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20646", + "@id": "_:b17265", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "result": { - "@id": "_:b24201", + "@id": "_:b21323", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20650", + "@id": "_:b17269", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", "result": { - "@id": "_:b24656", + "@id": "_:b22063", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0114-out.nq", + "title": "Dataset with a IRI named graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0114-in.jsonld", + "rdfs:comment": "Basic use of creating a named graph using a BNode name" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4295", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0038-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0038a-out.jsonld", - "title": "Index map round-tripping", - "rdfs:comment": "Complex round-tripping use case from Drupal", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0038-context.jsonld" - }, "assertions": [ { - "@id": "_:b4299", + "@id": "_:b4556", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "result": { - "@id": "_:b16166", + "@id": "_:b4388", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4302", + "@id": "_:b4549", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1168", + "@id": "_:b15499", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4293", + "@id": "_:b4557", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4294", + "@id": "_:b19665", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4303", + "@id": "_:b4555", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25060", + "@id": "_:b23045", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4304", + "@id": "_:b4553", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "result": { - "@id": "_:b5516", + "@id": "_:b26205", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4296", + "@id": "_:b4552", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16380", + "@id": "_:b20916", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4301", + "@id": "_:b4550", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25059", + "@id": "_:b22319", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4297", + "@id": "_:b4547", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", + "mode": "earl:automatic", "result": { - "@id": "_:b25056", + "@id": "_:b4548", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4300", + "@id": "_:b4551", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "result": { - "@id": "_:b25058", + "@id": "_:b22102", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4298", + "@id": "_:b4554", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", "result": { - "@id": "_:b25057", + "@id": "_:b20464", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0115-out.nq", + "title": "Dataset with a default and two named graphs", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0115-in.jsonld", + "rdfs:comment": "Dataset with a default and two named graphs (IRI and BNode)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0039-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0039-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0039-out.jsonld", - "title": "@graph is array", - "rdfs:comment": "Value of @graph is always an array", "assertions": [ { - "@id": "_:b17408", + "@id": "_:b4670", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "result": { - "@id": "_:b17418", + "@id": "_:b24448", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17409", + "@id": "_:b4671", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17419", + "@id": "_:b26041", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17411", + "@id": "_:b4669", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16802", + "@id": "_:b23929", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17404", + "@id": "_:b4676", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17414", + "@id": "_:b19291", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17405", + "@id": "_:b4675", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "result": { - "@id": "_:b17415", + "@id": "_:b26755", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17406", + "@id": "_:b4673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17416", + "@id": "_:b23974", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17407", + "@id": "_:b4668", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17417", + "@id": "_:b19825", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17410", + "@id": "_:b4672", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", + "mode": "earl:automatic", "result": { - "@id": "_:b17420", + "@id": "_:b10147", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17412", + "@id": "_:b4674", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "result": { - "@id": "_:b17421", + "@id": "_:b19345", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17413", + "@id": "_:b4666", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", "result": { - "@id": "_:b17422", + "@id": "_:b4667", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0116-out.nq", + "title": "Dataset from node with embedded named graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0116-in.jsonld", + "rdfs:comment": "Embedding @graph in a node creates a named graph" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0040-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0040-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0040-out.jsonld", - "title": "@list is array", - "rdfs:comment": "Ensure that value of @list is always an array", "assertions": [ { - "@id": "_:b16776", + "@id": "_:b13678", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "result": { - "@id": "_:b19234", + "@id": "_:b22121", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16779", + "@id": "_:b13676", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18498", + "@id": "_:b24687", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16778", + "@id": "_:b13674", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26641", + "@id": "_:b22659", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16782", + "@id": "_:b13680", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26911", + "@id": "_:b24688", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16783", + "@id": "_:b13671", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "result": { - "@id": "_:b26778", + "@id": "_:b13672", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16781", + "@id": "_:b13673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22032", + "@id": "_:b11947", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16773", + "@id": "_:b13679", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16774", + "@id": "_:b17089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16780", + "@id": "_:b13677", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", + "mode": "earl:automatic", "result": { - "@id": "_:b26479", + "@id": "_:b22682", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16775", + "@id": "_:b13675", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "result": { - "@id": "_:b18717", + "@id": "_:b2726", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16777", + "@id": "_:b13681", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", "result": { - "@id": "_:b24575", + "@id": "_:b23773", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0117-out.nq", + "title": "Dataset from node with embedded named graph (bnode)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0117-in.jsonld", + "rdfs:comment": "Embedding @graph in a node creates a named graph. Graph name is created if there is no subject" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0041-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0041-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0041-out.jsonld", - "title": "index rejects term having @list", - "rdfs:comment": "If an index is present, a term having an @list container is not selected", "assertions": [ { - "@id": "_:b6115", + "@id": "_:b5077", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "result": { - "@id": "_:b13827", + "@id": "_:b18802", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6116", + "@id": "_:b5075", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22704", + "@id": "_:b26018", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6117", + "@id": "_:b5073", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24092", + "@id": "_:b26060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6121", + "@id": "_:b5071", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20066", + "@id": "_:b24973", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6122", + "@id": "_:b5069", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "result": { - "@id": "_:b24094", + "@id": "_:b18010", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6119", + "@id": "_:b5070", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13470", + "@id": "_:b24645", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6118", + "@id": "_:b5074", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24093", + "@id": "_:b12851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6120", + "@id": "_:b5072", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", + "mode": "earl:automatic", "result": { - "@id": "_:b21390", + "@id": "_:b25303", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6123", + "@id": "_:b5076", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "result": { - "@id": "_:b24095", + "@id": "_:b26413", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6113", + "@id": "_:b5067", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", "result": { - "@id": "_:b6114", + "@id": "_:b5068", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0119-out.nq", + "title": "Blank nodes with reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0119-in.jsonld", + "rdfs:comment": "Proper (re-)labeling of blank nodes if used with reverse properties." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0042-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0042-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0042-out.jsonld", - "title": "@list keyword aliasing", - "rdfs:comment": "Make sure keyword aliasing works if a list can't be compacted", "assertions": [ { - "@id": "_:b17780", + "@id": "_:b4960", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "result": { - "@id": "_:b23592", + "@id": "_:b20852", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17779", + "@id": "_:b4962", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20776", + "@id": "_:b1326", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17781", + "@id": "_:b4959", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24801", + "@id": "_:b15927", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17786", + "@id": "_:b4961", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23059", + "@id": "_:b18703", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17783", + "@id": "_:b4966", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "result": { - "@id": "_:b24802", + "@id": "_:b23690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17778", + "@id": "_:b4958", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16827", + "@id": "_:b13783", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17785", + "@id": "_:b4963", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20798", + "@id": "_:b24912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17782", + "@id": "_:b4964", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", + "mode": "earl:automatic", "result": { - "@id": "_:b13965", + "@id": "_:b22657", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17784", + "@id": "_:b4965", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "result": { - "@id": "_:b24803", + "@id": "_:b26069", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17777", + "@id": "_:b4956", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", "result": { - "@id": "_:b13551", + "@id": "_:b4957", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0120-out.nq", + "title": "IRI Resolution (0)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0120-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0043-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0043-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0043-out.jsonld", - "title": "select term over @vocab", - "rdfs:comment": "Ensure that @vocab compaction isn't used if the result collides with a term", "assertions": [ { - "@id": "_:b21581", + "@id": "_:b14228", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "result": { - "@id": "_:b21760", + "@id": "_:b26782", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21585", + "@id": "_:b14223", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26872", + "@id": "_:b8764", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21587", + "@id": "_:b14230", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26965", + "@id": "_:b22486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21579", + "@id": "_:b14229", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21580", + "@id": "_:b20606", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21588", + "@id": "_:b14225", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "result": { - "@id": "_:b26379", + "@id": "_:b23999", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21586", + "@id": "_:b14222", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15025", + "@id": "_:b5588", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21589", + "@id": "_:b14224", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21391", + "@id": "_:b23017", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21582", + "@id": "_:b14227", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", + "mode": "earl:automatic", "result": { - "@id": "_:b25094", + "@id": "_:b26429", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b21583", + "@id": "_:b14220", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "result": { - "@id": "_:b15296", + "@id": "_:b14221", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21584", + "@id": "_:b14226", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", "result": { - "@id": "_:b26844", + "@id": "_:b22358", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0121-out.nq", + "title": "IRI Resolution (1)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0121-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0044-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0044-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0044-out.jsonld", - "title": "@type: @vocab in reverse-map", - "rdfs:comment": "Prefer properties with @type: @vocab in reverse-maps if the value can be compacted to a term", "assertions": [ { - "@id": "_:b8014", + "@id": "_:b5338", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "result": { - "@id": "_:b8024", + "@id": "_:b20456", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8019", + "@id": "_:b5330", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8029", + "@id": "_:b22444", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8012", + "@id": "_:b5333", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8022", + "@id": "_:b15264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8015", + "@id": "_:b5336", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8025", + "@id": "_:b21923", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8016", + "@id": "_:b5332", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "result": { - "@id": "_:b8026", + "@id": "_:b18549", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8011", + "@id": "_:b5328", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8021", + "@id": "_:b5329", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8020", + "@id": "_:b5337", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8030", + "@id": "_:b26914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8017", + "@id": "_:b5334", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", + "mode": "earl:automatic", "result": { - "@id": "_:b8027", + "@id": "_:b26418", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8018", + "@id": "_:b5331", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "result": { - "@id": "_:b8028", + "@id": "_:b23850", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8013", + "@id": "_:b5335", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", "result": { - "@id": "_:b8023", + "@id": "_:b25246", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0122-out.nq", + "title": "IRI Resolution (2)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0122-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0045-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0045-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0045-out.jsonld", - "title": "@id value uses relative IRI, not term", - "rdfs:comment": "Values of @id are transformed to relative IRIs, terms are ignored", "assertions": [ { - "@id": "_:b3305", + "@id": "_:b9157", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "result": { - "@id": "_:b14186", + "@id": "_:b2079", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3303", + "@id": "_:b9159", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20884", + "@id": "_:b1286", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3308", + "@id": "_:b9161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26507", + "@id": "_:b26952", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3309", + "@id": "_:b9154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24639", + "@id": "_:b4357", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3299", + "@id": "_:b9160", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "result": { - "@id": "_:b3300", + "@id": "_:b17407", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3306", + "@id": "_:b9156", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26505", + "@id": "_:b25663", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3304", + "@id": "_:b9153", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11767", + "@id": "_:b16703", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3301", + "@id": "_:b9152", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", + "mode": "earl:automatic", "result": { - "@id": "_:b5415", + "@id": "_:b8428", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3302", + "@id": "_:b9158", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "result": { - "@id": "_:b10488", + "@id": "_:b26485", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3307", + "@id": "_:b9155", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", "result": { - "@id": "_:b26506", + "@id": "_:b23422", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0123-out.nq", + "title": "IRI Resolution (3)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0123-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0046-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9317", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0046-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0046-out.jsonld", - "title": "multiple objects without @context use @graph", - "rdfs:comment": "Wrap top-level array into @graph even if no context is passed", "assertions": [ { - "@id": "_:b12588", + "@id": "_:b9325", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "result": { - "@id": "_:b1619", + "@id": "_:b25710", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12587", + "@id": "_:b9320", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20729", + "@id": "_:b25013", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12586", + "@id": "_:b9321", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16719", + "@id": "_:b25574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12591", + "@id": "_:b9315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26703", + "@id": "_:b9316", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12590", + "@id": "_:b9319", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "result": { - "@id": "_:b25604", + "@id": "_:b17085", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12593", + "@id": "_:b9323", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25766", + "@id": "_:b22995", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12595", + "@id": "_:b9326", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22491", + "@id": "_:b25711", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12592", + "@id": "_:b9322", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "mode": "earl:automatic", "result": { - "@id": "_:b15683", + "@id": "_:b25709", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12589", + "@id": "_:b9324", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "result": { - "@id": "_:b25105", + "@id": "_:b20215", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12594", + "@id": "_:b9318", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "result": { - "@id": "_:b22368", + "@id": "_:b12045", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } + ], + "testResult": [ + "https://w3c.github.io/json-ld-api/tests/toRdf/e124-out.nq", + "https://w3c.github.io/json-ld-api/tests/toRdf/0124-out.nq" + ], + "title": [ + "compact IRI as @vocab", + "IRI Resolution (4)" + ], + "testAction": [ + "https://w3c.github.io/json-ld-api/tests/toRdf/0124-in.jsonld", + "https://w3c.github.io/json-ld-api/tests/toRdf/e124-in.jsonld" + ], + "rdfs:comment": [ + "Verifies that @vocab defined as a compact IRI expands properly", + "IRI resolution according to RFC3986." ] }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0047-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b17814", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0047-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0047-out.jsonld", - "title": "Round-trip relative URLs", - "rdfs:comment": "Relative URLs remain relative after compaction", "assertions": [ { - "@id": "_:b533", + "@id": "_:b17816", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "result": { - "@id": "_:b25027", + "@id": "_:b17617", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b523", + "@id": "_:b17822", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b524", + "@id": "_:b17829", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b529", + "@id": "_:b17824", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25024", + "@id": "_:b17831", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b534", + "@id": "_:b17821", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25028", + "@id": "_:b17828", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b531", + "@id": "_:b17815", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "result": { - "@id": "_:b23518", + "@id": "_:b17825", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b526", + "@id": "_:b17818", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24068", + "@id": "_:b17826", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b528", + "@id": "_:b17819", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25023", + "@id": "_:b15638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b527", + "@id": "_:b17817", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "mode": "earl:automatic", "result": { - "@id": "_:b12781", + "@id": "_:b13105", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b532", + "@id": "_:b17820", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "result": { - "@id": "_:b25026", + "@id": "_:b17827", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b530", + "@id": "_:b17823", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "result": { - "@id": "_:b25025", + "@id": "_:b17830", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } + ], + "testResult": [ + "https://w3c.github.io/json-ld-api/tests/toRdf/0125-out.nq", + "https://w3c.github.io/json-ld-api/tests/toRdf/e125-out.nq" + ], + "title": [ + "term as @vocab", + "IRI Resolution (5)" + ], + "testAction": [ + "https://w3c.github.io/json-ld-api/tests/toRdf/e125-in.jsonld", + "https://w3c.github.io/json-ld-api/tests/toRdf/0125-in.jsonld" + ], + "rdfs:comment": [ + "IRI resolution according to RFC3986.", + "Verifies that @vocab defined as a term expands properly" ] }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0048-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0048-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0048-out.jsonld", - "title": "term with @language: null", - "rdfs:comment": "Prefer terms with a language mapping set to null over terms without language-mapping for non-strings", "assertions": [ { - "@id": "_:b6139", + "@id": "_:b14613", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "result": { - "@id": "_:b6149", + "@id": "_:b23989", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6140", + "@id": "_:b14615", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6150", + "@id": "_:b23990", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6141", + "@id": "_:b14611", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6151", + "@id": "_:b22379", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6146", + "@id": "_:b14608", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6156", + "@id": "_:b14609", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6145", + "@id": "_:b14617", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "result": { - "@id": "_:b6155", + "@id": "_:b23992", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6144", + "@id": "_:b14616", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6154", + "@id": "_:b23991", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6142", + "@id": "_:b14612", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6152", + "@id": "_:b22427", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6143", + "@id": "_:b14618", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", + "mode": "earl:automatic", "result": { - "@id": "_:b6153", + "@id": "_:b23993", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6147", + "@id": "_:b14610", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "result": { - "@id": "_:b6157", + "@id": "_:b21532", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6148", + "@id": "_:b14614", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", "result": { - "@id": "_:b6158", + "@id": "_:b23614", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0126-out.nq", + "title": "IRI Resolution (6)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0126-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0049-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0049-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0049-out.jsonld", - "title": "Round tripping of lists that contain just IRIs", - "rdfs:comment": "List compaction without @container: @list still uses strings if @type: @id", "assertions": [ { - "@id": "_:b3114", + "@id": "_:b10262", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "result": { - "@id": "_:b21410", + "@id": "_:b10271", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3113", + "@id": "_:b10259", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14069", + "@id": "_:b10268", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3118", + "@id": "_:b10253", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21870", + "@id": "_:b10263", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3120", + "@id": "_:b10256", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21872", + "@id": "_:b10266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3115", + "@id": "_:b10261", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "result": { - "@id": "_:b21867", + "@id": "_:b10270", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3112", + "@id": "_:b10254", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4386", + "@id": "_:b10264", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3116", + "@id": "_:b10260", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21868", + "@id": "_:b10269", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3119", + "@id": "_:b10257", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", + "mode": "earl:automatic", "result": { - "@id": "_:b21871", + "@id": "_:b10267", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3117", + "@id": "_:b10255", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "result": { - "@id": "_:b21869", + "@id": "_:b10265", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3110", + "@id": "_:b10258", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", "result": { - "@id": "_:b3111", + "@id": "_:b8885", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0127-out.nq", + "title": "IRI Resolution (7)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0127-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0050-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0050-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0050-out.jsonld", - "title": "Reverse properties require @type: @id to use string values", - "rdfs:comment": "Node references in reverse properties are not compacted to strings without explicit type-coercion", "assertions": [ { - "@id": "_:b8742", + "@id": "_:b11963", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "result": { - "@id": "_:b8743", + "@id": "_:b21623", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8749", + "@id": "_:b11964", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22858", + "@id": "_:b15454", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8746", + "@id": "_:b11965", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23114", + "@id": "_:b25234", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8744", + "@id": "_:b11967", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14217", + "@id": "_:b25416", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8747", + "@id": "_:b11968", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "result": { - "@id": "_:b24651", + "@id": "_:b25670", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8748", + "@id": "_:b11962", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25211", + "@id": "_:b17182", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8751", + "@id": "_:b11971", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14852", + "@id": "_:b26673", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8752", + "@id": "_:b11969", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", + "mode": "earl:automatic", "result": { - "@id": "_:b11808", + "@id": "_:b23997", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8745", + "@id": "_:b11970", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "result": { - "@id": "_:b19379", + "@id": "_:b14269", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8750", + "@id": "_:b11966", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", "result": { - "@id": "_:b10812", + "@id": "_:b16119", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0128-out.nq", + "title": "IRI Resolution (8)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0128-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0051-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0051-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0051-out.jsonld", - "title": "Round tripping @list with scalar", - "rdfs:comment": "Native values survive round-tripping with @list", "assertions": [ { - "@id": "_:b8727", + "@id": "_:b12281", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "result": { - "@id": "_:b9713", + "@id": "_:b12282", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8724", + "@id": "_:b12285", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16501", + "@id": "_:b20862", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8721", + "@id": "_:b12290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18901", + "@id": "_:b26981", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8722", + "@id": "_:b12287", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18902", + "@id": "_:b25387", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8728", + "@id": "_:b12283", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "result": { - "@id": "_:b18906", + "@id": "_:b17502", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8725", + "@id": "_:b12288", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18904", + "@id": "_:b13265", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8720", + "@id": "_:b12284", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17330", + "@id": "_:b19981", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8718", + "@id": "_:b12286", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", + "mode": "earl:automatic", "result": { - "@id": "_:b8719", + "@id": "_:b19260", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8726", + "@id": "_:b12291", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "result": { - "@id": "_:b18905", + "@id": "_:b26982", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8723", + "@id": "_:b12289", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", "result": { - "@id": "_:b18903", + "@id": "_:b20607", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0129-out.nq", + "title": "IRI Resolution (9)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0129-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0052-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0052-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0052-out.jsonld", - "title": "Round tripping @list with scalar and @graph alias", - "rdfs:comment": "Native values survive round-tripping with @list and @graph alias", "assertions": [ { - "@id": "_:b12878", + "@id": "_:b3447", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "result": { - "@id": "_:b21078", + "@id": "_:b23678", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12875", + "@id": "_:b3444", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12876", + "@id": "_:b6911", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12883", + "@id": "_:b3441", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26944", + "@id": "_:b16892", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12885", + "@id": "_:b3445", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20483", + "@id": "_:b23676", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12884", + "@id": "_:b3437", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "result": { - "@id": "_:b26989", + "@id": "_:b3438", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12879", + "@id": "_:b3443", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21673", + "@id": "_:b23675", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12877", + "@id": "_:b3442", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15862", + "@id": "_:b22686", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12880", + "@id": "_:b3446", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", + "mode": "earl:automatic", "result": { - "@id": "_:b23155", + "@id": "_:b23677", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12881", + "@id": "_:b3439", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "result": { - "@id": "_:b23878", + "@id": "_:b13932", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12882", + "@id": "_:b3440", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", "result": { - "@id": "_:b25762", + "@id": "_:b17245", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0130-out.nq", + "title": "IRI Resolution (10)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0130-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0053-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0053-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0053-out.jsonld", - "title": "Use @type: @vocab if no @type: @id", - "rdfs:comment": "Compact to @type: @vocab when no @type: @id term available", "assertions": [ { - "@id": "_:b5960", + "@id": "_:b20277", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "result": { - "@id": "_:b12145", + "@id": "_:b18256", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5963", + "@id": "_:b20284", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18544", + "@id": "_:b21839", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5966", + "@id": "_:b20278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26607", + "@id": "_:b7352", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5957", + "@id": "_:b20282", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5958", + "@id": "_:b21837", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5965", + "@id": "_:b20285", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "result": { - "@id": "_:b9483", + "@id": "_:b21840", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5959", + "@id": "_:b20279", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10561", + "@id": "_:b21835", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5964", + "@id": "_:b20281", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20886", + "@id": "_:b21836", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5961", + "@id": "_:b20275", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", + "mode": "earl:automatic", "result": { - "@id": "_:b20109", + "@id": "_:b20276", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5962", + "@id": "_:b20283", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "result": { - "@id": "_:b1696", + "@id": "_:b21838", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5967", + "@id": "_:b20280", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", "result": { - "@id": "_:b23771", + "@id": "_:b16358", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0131-out.nq", + "title": "IRI Resolution (11)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0131-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0054-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0054-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0054-out.jsonld", - "title": "Compact to @type: @vocab and compact @id to term", - "rdfs:comment": "Compact to @type: @vocab and compact @id to term", "assertions": [ { - "@id": "_:b17728", + "@id": "_:b1639", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "result": { - "@id": "_:b11970", + "@id": "_:b25405", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17724", + "@id": "_:b1632", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23902", + "@id": "_:b24834", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17727", + "@id": "_:b1634", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18806", + "@id": "_:b26531", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17726", + "@id": "_:b1638", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23904", + "@id": "_:b26470", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17720", + "@id": "_:b1629", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "result": { - "@id": "_:b19134", + "@id": "_:b1630", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17718", + "@id": "_:b1636", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17719", + "@id": "_:b26983", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17722", + "@id": "_:b1633", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17562", + "@id": "_:b15783", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17721", + "@id": "_:b1631", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", + "mode": "earl:automatic", "result": { - "@id": "_:b7333", + "@id": "_:b21893", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17725", + "@id": "_:b1635", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "result": { - "@id": "_:b23903", + "@id": "_:b12781", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17723", + "@id": "_:b1637", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", "result": { - "@id": "_:b23901", + "@id": "_:b24939", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0132-out.nq", + "title": "IRI Resolution (12)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0132-in.jsonld", + "rdfs:comment": "IRI resolution according to RFC3986." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0055-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7534", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0055-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0055-out.jsonld", - "title": "Round tripping @type: @vocab", - "rdfs:comment": "Compacting IRI value of property with @type: @vocab can use term", "assertions": [ { - "@id": "_:b1784", + "@id": "_:b7536", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "result": { - "@id": "_:b24563", + "@id": "_:b6538", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1781", + "@id": "_:b7540", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9295", + "@id": "_:b24822", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1780", + "@id": "_:b7542", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24560", + "@id": "_:b20191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1776", + "@id": "_:b7533", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2607", + "@id": "_:b6937", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1778", + "@id": "_:b7537", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "result": { - "@id": "_:b24558", + "@id": "_:b24966", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1779", + "@id": "_:b7539", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24559", + "@id": "_:b25907", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1783", + "@id": "_:b7538", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24562", + "@id": "_:b10574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1777", + "@id": "_:b7535", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", + "mode": "earl:automatic", "result": { - "@id": "_:b24208", + "@id": "_:b22317", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1774", + "@id": "_:b7543", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "result": { - "@id": "_:b1775", + "@id": "_:b25909", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1782", + "@id": "_:b7541", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", "result": { - "@id": "_:b24561", + "@id": "_:b25908", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c001-out.nq", + "title": "adding new term", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c001-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0056-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b459", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0056-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0056-out.jsonld", - "title": "Prefer @type: @vocab over @type: @id for terms", - "rdfs:comment": "Compacting IRI value of property with @type: @vocab can use term", "assertions": [ { - "@id": "_:b10600", + "@id": "_:b467", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "result": { - "@id": "_:b23499", + "@id": "_:b477", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10598", + "@id": "_:b461", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26380", + "@id": "_:b471", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10591", + "@id": "_:b466", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10592", + "@id": "_:b476", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10596", + "@id": "_:b462", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25511", + "@id": "_:b472", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10599", + "@id": "_:b468", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "result": { - "@id": "_:b19791", + "@id": "_:b478", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10595", + "@id": "_:b465", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24085", + "@id": "_:b475", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10594", + "@id": "_:b464", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1616", + "@id": "_:b474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10597", + "@id": "_:b460", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", + "mode": "earl:automatic", "result": { - "@id": "_:b23122", + "@id": "_:b470", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10593", + "@id": "_:b463", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "result": { - "@id": "_:b16592", + "@id": "_:b473", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10601", + "@id": "_:b469", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", "result": { - "@id": "_:b12437", + "@id": "_:b479", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c002-out.nq", + "title": "overriding a term", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c002-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0057-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4049", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0057-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0057-out.jsonld", - "title": "Complex round tripping @type: @vocab and @type: @id", - "rdfs:comment": "Compacting IRI value of property with @type: @vocab can use term; more complex", "assertions": [ { - "@id": "_:b11566", + "@id": "_:b4054", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "result": { - "@id": "_:b13183", + "@id": "_:b15192", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11570", + "@id": "_:b4050", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2326", + "@id": "_:b4358", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11564", + "@id": "_:b4051", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13181", + "@id": "_:b1360", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11565", + "@id": "_:b4056", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13182", + "@id": "_:b19970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11571", + "@id": "_:b4052", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "result": { - "@id": "_:b13186", + "@id": "_:b10787", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11569", + "@id": "_:b4053", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7025", + "@id": "_:b21705", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11568", + "@id": "_:b4048", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13185", + "@id": "_:b3464", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11562", + "@id": "_:b4058", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", + "mode": "earl:automatic", "result": { - "@id": "_:b11563", + "@id": "_:b9269", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11572", + "@id": "_:b4055", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "result": { - "@id": "_:b7364", + "@id": "_:b25131", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11567", + "@id": "_:b4057", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", "result": { - "@id": "_:b13184", + "@id": "_:b11286", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c003-out.nq", + "title": "property and value with different terms mapping to the same expanded property", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c003-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0058-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12170", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0058-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0058-out.jsonld", - "title": "Prefer @type: @id over @type: @vocab for non-terms", - "rdfs:comment": "Choose a term having @type: @id over @type: @value if value is not a term", "assertions": [ { - "@id": "_:b11737", + "@id": "_:b12168", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "result": { - "@id": "_:b26827", + "@id": "_:b12169", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11735", + "@id": "_:b12172", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22262", + "@id": "_:b19634", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11734", + "@id": "_:b12178", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24046", + "@id": "_:b24411", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11738", + "@id": "_:b12177", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14911", + "@id": "_:b19384", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11732", + "@id": "_:b12175", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "result": { - "@id": "_:b16702", + "@id": "_:b19694", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11733", + "@id": "_:b12171", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17916", + "@id": "_:b18139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11739", + "@id": "_:b12179", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18563", + "@id": "_:b24412", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11729", + "@id": "_:b12174", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", + "mode": "earl:automatic", "result": { - "@id": "_:b11730", + "@id": "_:b21797", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11731", + "@id": "_:b12176", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "result": { - "@id": "_:b14770", + "@id": "_:b24410", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11736", + "@id": "_:b12173", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", "result": { - "@id": "_:b26224", + "@id": "_:b13101", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c004-out.nq", + "title": "deep @context affects nested nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c004-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0059-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b11066", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0059-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0059-out.jsonld", - "title": "Term with @type: @vocab if no @type: @id", - "rdfs:comment": "If there's no term with @type: @id, use terms with @type: @vocab for IRIs not mapped to terms", "assertions": [ { - "@id": "_:b12764", + "@id": "_:b11074", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "result": { - "@id": "_:b26961", + "@id": "_:b26265", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12759", + "@id": "_:b11071", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17481", + "@id": "_:b20572", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12762", + "@id": "_:b11067", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23172", + "@id": "_:b23466", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12760", + "@id": "_:b11070", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20984", + "@id": "_:b25681", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12765", + "@id": "_:b11076", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "result": { - "@id": "_:b26458", + "@id": "_:b23276", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12761", + "@id": "_:b11075", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25631", + "@id": "_:b21531", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12757", + "@id": "_:b11068", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12758", + "@id": "_:b19664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12766", + "@id": "_:b11073", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", + "mode": "earl:automatic", "result": { - "@id": "_:b18021", + "@id": "_:b26457", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12767", + "@id": "_:b11072", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "result": { - "@id": "_:b18080", + "@id": "_:b26400", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12763", + "@id": "_:b11069", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", "result": { - "@id": "_:b26397", + "@id": "_:b24524", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c005-out.nq", + "title": "scoped context layers on intemediate contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c005-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0060-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4169", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0060-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0060-out.jsonld", - "title": "Term with @type: @id if no @type: @vocab and term value", - "rdfs:comment": "If there's no term with @type: @vocab, use terms with @type: @id for IRIs mapped to terms", "assertions": [ { - "@id": "_:b1754", + "@id": "_:b4173", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "result": { - "@id": "_:b24260", + "@id": "_:b19287", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1760", + "@id": "_:b4174", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2350", + "@id": "_:b24962", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1753", + "@id": "_:b4177", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22359", + "@id": "_:b24977", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1752", + "@id": "_:b4172", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3075", + "@id": "_:b16661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1757", + "@id": "_:b4176", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "result": { - "@id": "_:b26409", + "@id": "_:b5214", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1756", + "@id": "_:b4175", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26191", + "@id": "_:b24976", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1758", + "@id": "_:b4167", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17236", + "@id": "_:b4168", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1755", + "@id": "_:b4171", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", + "mode": "earl:automatic", "result": { - "@id": "_:b20938", + "@id": "_:b14465", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1759", + "@id": "_:b4178", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "result": { - "@id": "_:b26620", + "@id": "_:b24522", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1750", + "@id": "_:b4170", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", "result": { - "@id": "_:b1751", + "@id": "_:b12195", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c006-out.nq", + "title": "adding new term", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c006-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0061-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9793", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0061-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0061-out.jsonld", - "title": "@type: @vocab/@id with values matching either", - "rdfs:comment": "Separate IRIs for the same property to use term with more specific @type (@id vs. @vocab)", "assertions": [ { - "@id": "_:b196", + "@id": "_:b9795", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "result": { - "@id": "_:b206", + "@id": "_:b14192", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b203", + "@id": "_:b9796", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b213", + "@id": "_:b18329", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b195", + "@id": "_:b9802", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b205", + "@id": "_:b20341", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b202", + "@id": "_:b9791", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b212", + "@id": "_:b9792", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b204", + "@id": "_:b9794", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "result": { - "@id": "_:b214", + "@id": "_:b11167", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b197", + "@id": "_:b9798", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b207", + "@id": "_:b13939", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b199", + "@id": "_:b9801", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b209", + "@id": "_:b23361", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b201", + "@id": "_:b9800", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", + "mode": "earl:automatic", "result": { - "@id": "_:b211", + "@id": "_:b23360", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b200", + "@id": "_:b9797", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "result": { - "@id": "_:b210", + "@id": "_:b20454", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b198", + "@id": "_:b9799", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", "result": { - "@id": "_:b208", + "@id": "_:b23359", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c007-out.nq", + "title": "overriding a term", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c007-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0062-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6144", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0062-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0062-out.jsonld", - "title": "@type: @vocab and relative IRIs", - "rdfs:comment": "Relative IRIs don't round-trip with @type: @vocab", "assertions": [ { - "@id": "_:b3943", + "@id": "_:b6149", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "result": { - "@id": "_:b7600", + "@id": "_:b6159", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3946", + "@id": "_:b6152", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19129", + "@id": "_:b6162", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3949", + "@id": "_:b6147", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19132", + "@id": "_:b6157", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3939", + "@id": "_:b6154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3940", + "@id": "_:b6164", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3947", + "@id": "_:b6146", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "result": { - "@id": "_:b19130", + "@id": "_:b6156", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3948", + "@id": "_:b6150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19131", + "@id": "_:b6160", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3945", + "@id": "_:b6153", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19128", + "@id": "_:b6163", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3941", + "@id": "_:b6145", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", + "mode": "earl:automatic", "result": { - "@id": "_:b6230", + "@id": "_:b6155", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3944", + "@id": "_:b6151", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "result": { - "@id": "_:b19127", + "@id": "_:b6161", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3942", + "@id": "_:b6148", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", "result": { - "@id": "_:b13413", + "@id": "_:b6158", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c008-out.nq", + "title": "alias of @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c008-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0063-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7845", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0063-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0063-out.jsonld", - "title": "Compact IRI round-tripping with @type: @vocab", - "rdfs:comment": "Term with @type: @vocab will use compact IRIs", "assertions": [ { - "@id": "_:b240", + "@id": "_:b7855", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "result": { - "@id": "_:b250", + "@id": "_:b7865", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b236", + "@id": "_:b7854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b246", + "@id": "_:b7864", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b238", + "@id": "_:b7853", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b248", + "@id": "_:b7863", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b242", + "@id": "_:b7850", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b252", + "@id": "_:b7860", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b235", + "@id": "_:b7846", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "result": { - "@id": "_:b245", + "@id": "_:b7856", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b241", + "@id": "_:b7848", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b251", + "@id": "_:b7858", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b243", + "@id": "_:b7849", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b253", + "@id": "_:b7859", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b244", + "@id": "_:b7852", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", + "mode": "earl:automatic", "result": { - "@id": "_:b254", + "@id": "_:b7862", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b237", + "@id": "_:b7851", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "result": { - "@id": "_:b247", + "@id": "_:b7861", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b239", + "@id": "_:b7847", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", "result": { - "@id": "_:b249", + "@id": "_:b7857", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c009-out.nq", + "title": "deep @type-scoped @context does NOT affect nested nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c009-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0064-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b11132", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0064-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0064-out.jsonld", - "title": "Compact language-tagged and indexed strings to index-map", - "rdfs:comment": "Given values with both @index and @language and term index-map term, use index map", "assertions": [ { - "@id": "_:b5212", + "@id": "_:b11137", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "result": { - "@id": "_:b22236", + "@id": "_:b22447", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5208", + "@id": "_:b11139", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22233", + "@id": "_:b22448", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5209", + "@id": "_:b11133", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22234", + "@id": "_:b19973", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5206", + "@id": "_:b11141", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22232", + "@id": "_:b22450", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5205", + "@id": "_:b11138", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "result": { - "@id": "_:b19914", + "@id": "_:b14470", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5207", + "@id": "_:b11136", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19031", + "@id": "_:b22446", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5213", + "@id": "_:b11134", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22237", + "@id": "_:b22266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5210", + "@id": "_:b11140", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", + "mode": "earl:automatic", "result": { - "@id": "_:b22235", + "@id": "_:b22449", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5204", + "@id": "_:b11135", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "result": { - "@id": "_:b1708", + "@id": "_:b22445", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5211", + "@id": "_:b11130", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", "result": { - "@id": "_:b15119", + "@id": "_:b11131", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c010-out.nq", + "title": "scoped context layers on intemediate contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c010-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0065-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7628", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0065-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0065-out.jsonld", - "title": "Language-tagged and indexed strings with language-map", - "rdfs:comment": "Language-tagged and indexed strings don't compact to language-map", "assertions": [ { - "@id": "_:b13041", + "@id": "_:b7633", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "result": { - "@id": "_:b25740", + "@id": "_:b25252", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13039", + "@id": "_:b7637", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12435", + "@id": "_:b25624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13035", + "@id": "_:b7632", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13036", + "@id": "_:b22338", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13038", + "@id": "_:b7631", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17484", + "@id": "_:b20030", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13044", + "@id": "_:b7626", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "result": { - "@id": "_:b17579", + "@id": "_:b7627", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13037", + "@id": "_:b7636", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16868", + "@id": "_:b25623", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13043", + "@id": "_:b7629", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25747", + "@id": "_:b18685", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13042", + "@id": "_:b7635", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", + "mode": "earl:automatic", "result": { - "@id": "_:b25746", + "@id": "_:b25622", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13040", + "@id": "_:b7634", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "result": { - "@id": "_:b25745", + "@id": "_:b25621", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13045", + "@id": "_:b7630", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", "result": { - "@id": "_:b23387", + "@id": "_:b19611", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c011-out.nq", + "title": "orders @type terms when applying scoped contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c011-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0066-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16785", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0066-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0066-out.jsonld", - "title": "Relative IRIs", - "rdfs:comment": "Complex use cases for relative IRI compaction", "assertions": [ { - "@id": "_:b667", + "@id": "_:b16787", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "result": { - "@id": "_:b677", + "@id": "_:b23151", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b668", + "@id": "_:b16783", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b678", + "@id": "_:b16784", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b665", + "@id": "_:b16794", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b675", + "@id": "_:b23156", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b662", + "@id": "_:b16792", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b672", + "@id": "_:b23154", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b669", + "@id": "_:b16789", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "result": { - "@id": "_:b679", + "@id": "_:b12208", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b666", + "@id": "_:b16790", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b676", + "@id": "_:b23153", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b671", + "@id": "_:b16788", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b681", + "@id": "_:b23152", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b664", + "@id": "_:b16791", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", + "mode": "earl:automatic", "result": { - "@id": "_:b674", + "@id": "_:b23022", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b663", + "@id": "_:b16793", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "result": { - "@id": "_:b673", + "@id": "_:b23155", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b670", + "@id": "_:b16786", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", "result": { - "@id": "_:b680", + "@id": "_:b19419", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c012-out.nq", + "title": "deep property-term scoped @context in @type-scoped @context affects nested nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c012-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0067-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7952", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0067-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0067-out.jsonld", - "title": "Reverse properties with blank nodes", - "rdfs:comment": "Compact reverse property whose values are unlabeled blank nodes", "assertions": [ { - "@id": "_:b20531", + "@id": "_:b7958", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "result": { - "@id": "_:b20638", + "@id": "_:b17186", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20523", + "@id": "_:b7954", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21304", + "@id": "_:b17183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20524", + "@id": "_:b7959", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22794", + "@id": "_:b17187", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20527", + "@id": "_:b7956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22797", + "@id": "_:b17185", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20526", + "@id": "_:b7950", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "result": { - "@id": "_:b22796", + "@id": "_:b7951", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20521", + "@id": "_:b7957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20522", + "@id": "_:b5162", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20530", + "@id": "_:b7953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20615", + "@id": "_:b9563", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20525", + "@id": "_:b7955", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", + "mode": "earl:automatic", "result": { - "@id": "_:b22795", + "@id": "_:b17184", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20529", + "@id": "_:b7961", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "result": { - "@id": "_:b22799", + "@id": "_:b17189", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20528", + "@id": "_:b7960", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", "result": { - "@id": "_:b22798", + "@id": "_:b17188", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c013-out.nq", + "title": "type maps use scoped context from type index and not scoped context from containing", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c013-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0068-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4026", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0068-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0068-out.jsonld", - "title": "Single value reverse properties", - "rdfs:comment": "Single values of reverse properties are compacted as values of ordinary properties", "assertions": [ { - "@id": "_:b19174", + "@id": "_:b4035", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "result": { - "@id": "_:b20879", + "@id": "_:b23772", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19171", + "@id": "_:b4033", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23981", + "@id": "_:b4083", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19166", + "@id": "_:b4034", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19167", + "@id": "_:b23771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19170", + "@id": "_:b4031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23440", + "@id": "_:b23769", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19175", + "@id": "_:b4027", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "result": { - "@id": "_:b22481", + "@id": "_:b17058", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19169", + "@id": "_:b4028", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22142", + "@id": "_:b23766", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19176", + "@id": "_:b4024", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19725", + "@id": "_:b4025", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19173", + "@id": "_:b4029", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", + "mode": "earl:automatic", "result": { - "@id": "_:b26855", + "@id": "_:b23767", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19168", + "@id": "_:b4030", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "result": { - "@id": "_:b20976", + "@id": "_:b23768", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19172", + "@id": "_:b4032", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", "result": { - "@id": "_:b20923", + "@id": "_:b23770", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c014-out.nq", + "title": "type-scoped context nullification", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c014-in.jsonld", + "rdfs:comment": "type-scoped context nullification" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0069-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4627", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0069-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0069-out.jsonld", - "title": "Single value reverse properties with @set", - "rdfs:comment": "Single values are kept in array form for reverse properties if the container is to @set", "assertions": [ { - "@id": "_:b13998", + "@id": "_:b4634", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "result": { - "@id": "_:b25713", + "@id": "_:b21187", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13994", + "@id": "_:b4629", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18600", + "@id": "_:b16728", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13996", + "@id": "_:b4635", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25712", + "@id": "_:b22680", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14000", + "@id": "_:b4633", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19423", + "@id": "_:b25225", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14001", + "@id": "_:b4631", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "result": { - "@id": "_:b14002", + "@id": "_:b23568", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13993", + "@id": "_:b4630", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22679", + "@id": "_:b20778", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13991", + "@id": "_:b4628", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13992", + "@id": "_:b14509", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13997", + "@id": "_:b4625", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", + "mode": "earl:automatic", "result": { - "@id": "_:b21560", + "@id": "_:b4626", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13999", + "@id": "_:b4636", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "result": { - "@id": "_:b25714", + "@id": "_:b23029", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13995", + "@id": "_:b4632", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", "result": { - "@id": "_:b24762", + "@id": "_:b20463", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c015-out.nq", + "title": "type-scoped base", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c015-in.jsonld", + "rdfs:comment": "type-scoped base" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11245", - "https://w3c.github.io/json-ld-api/tests/vocab#compactArrays": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0070-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0070-out.jsonld", - "title": "compactArrays option", - "rdfs:comment": "Setting compactArrays to false causes single element arrays to be retained", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0070-context.jsonld" + "@id": "_:b8953", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b11248", + "@id": "_:b8962", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "result": { - "@id": "_:b25697", + "@id": "_:b23373", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11243", + "@id": "_:b8960", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11244", + "@id": "_:b23371", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11247", + "@id": "_:b8955", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20845", + "@id": "_:b15935", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11252", + "@id": "_:b8958", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20580", + "@id": "_:b21009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11249", + "@id": "_:b8959", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "result": { - "@id": "_:b22367", + "@id": "_:b19562", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11250", + "@id": "_:b8961", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21863", + "@id": "_:b23372", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11251", + "@id": "_:b8957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25698", + "@id": "_:b23370", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11254", + "@id": "_:b8951", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", + "mode": "earl:automatic", "result": { - "@id": "_:b25699", + "@id": "_:b8952", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11246", + "@id": "_:b8956", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "result": { - "@id": "_:b13772", + "@id": "_:b19822", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11253", + "@id": "_:b8954", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", "result": { - "@id": "_:b20921", + "@id": "_:b12325", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c016-out.nq", + "title": "type-scoped vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c016-in.jsonld", + "rdfs:comment": "type-scoped vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0071-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9255", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0071-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0071-out.jsonld", - "title": "Input has multiple @contexts, output has one", - "rdfs:comment": "Expanding input with multiple @contexts and compacting with just one doesn't output undefined properties", "assertions": [ { - "@id": "_:b3635", + "@id": "_:b9264", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "result": { - "@id": "_:b19965", + "@id": "_:b12920", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3638", + "@id": "_:b9261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24839", + "@id": "_:b12917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3634", + "@id": "_:b9257", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13539", + "@id": "_:b12914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3637", + "@id": "_:b9253", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18135", + "@id": "_:b9254", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3641", + "@id": "_:b9260", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "result": { - "@id": "_:b17169", + "@id": "_:b8807", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3640", + "@id": "_:b9258", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23740", + "@id": "_:b12915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3639", + "@id": "_:b9263", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25555", + "@id": "_:b12919", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3642", + "@id": "_:b9256", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", + "mode": "earl:automatic", "result": { - "@id": "_:b2995", + "@id": "_:b12913", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3636", + "@id": "_:b9262", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "result": { - "@id": "_:b21776", + "@id": "_:b12918", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3633", + "@id": "_:b9259", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", "result": { - "@id": "_:b9266", + "@id": "_:b12916", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c017-out.nq", + "title": "multiple type-scoped contexts are properly reverted", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c017-in.jsonld", + "rdfs:comment": "multiple type-scoped contexts are property reverted" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0072-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8380", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0072-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0072-out.jsonld", - "title": "Default language and unmapped properties", - "rdfs:comment": "Ensure that the default language is handled correctly for unmapped properties", "assertions": [ { - "@id": "_:b16812", + "@id": "_:b8381", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "result": { - "@id": "_:b18804", + "@id": "_:b16018", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16810", + "@id": "_:b8387", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18802", + "@id": "_:b14822", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16813", + "@id": "_:b8386", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18805", + "@id": "_:b22260", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16808", + "@id": "_:b8389", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18800", + "@id": "_:b22261", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16806", + "@id": "_:b8383", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "result": { - "@id": "_:b18798", + "@id": "_:b22257", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16805", + "@id": "_:b8378", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18797", + "@id": "_:b8379", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16809", + "@id": "_:b8382", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18801", + "@id": "_:b22256", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16811", + "@id": "_:b8385", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", + "mode": "earl:automatic", "result": { - "@id": "_:b18803", + "@id": "_:b22259", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16807", + "@id": "_:b8384", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "result": { - "@id": "_:b18799", + "@id": "_:b22258", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16803", + "@id": "_:b8388", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", "result": { - "@id": "_:b16804", + "@id": "_:b20220", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c018-out.nq", + "title": "multiple type-scoped types resolved against previous context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c018-in.jsonld", + "rdfs:comment": "multiple type-scoped types resolved against previous context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0073-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b18295", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0073-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0073-out.jsonld", - "title": "Mapped @id and @type", - "rdfs:comment": "Ensure that compaction works with mapped @id and @type", "assertions": [ { - "@id": "_:b4376", + "@id": "_:b18296", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "result": { - "@id": "_:b18133", + "@id": "_:b23492", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4377", + "@id": "_:b18294", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14663", + "@id": "_:b12043", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4373", + "@id": "_:b18300", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4374", + "@id": "_:b26945", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4381", + "@id": "_:b18304", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13484", + "@id": "_:b26191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4375", + "@id": "_:b18301", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "result": { - "@id": "_:b8669", + "@id": "_:b26445", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4379", + "@id": "_:b18299", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16231", + "@id": "_:b26927", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4383", + "@id": "_:b18303", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24444", + "@id": "_:b23230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4382", + "@id": "_:b18298", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", + "mode": "earl:automatic", "result": { - "@id": "_:b4728", + "@id": "_:b22999", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4378", + "@id": "_:b18302", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "result": { - "@id": "_:b22471", + "@id": "_:b20603", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4380", + "@id": "_:b18297", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", "result": { - "@id": "_:b25250", + "@id": "_:b20156", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c019-out.nq", + "title": "type-scoped context with multiple property scoped terms", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c019-in.jsonld", + "rdfs:comment": "type-scoped context with multiple property scoped terms" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0074-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9343", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0074-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0074-out.jsonld", - "title": "Container as a list with type of @id", - "rdfs:comment": "Ensure that compaction works for empty list when property has container declared as @list and type as @id", "assertions": [ { - "@id": "_:b17898", + "@id": "_:b9347", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "result": { - "@id": "_:b22844", + "@id": "_:b21170", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17895", + "@id": "_:b9348", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17919", + "@id": "_:b21171", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17903", + "@id": "_:b9344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22490", + "@id": "_:b15948", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17899", + "@id": "_:b9352", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21469", + "@id": "_:b21174", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17901", + "@id": "_:b9350", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "result": { - "@id": "_:b22672", + "@id": "_:b1071", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17902", + "@id": "_:b9341", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25770", + "@id": "_:b9342", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17897", + "@id": "_:b9346", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19787", + "@id": "_:b21169", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17900", + "@id": "_:b9349", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", + "mode": "earl:automatic", "result": { - "@id": "_:b15914", + "@id": "_:b21172", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17896", + "@id": "_:b9345", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "result": { - "@id": "_:b5606", + "@id": "_:b17599", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17893", + "@id": "_:b9351", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", "result": { - "@id": "_:b17894", + "@id": "_:b21173", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c020-out.nq", + "title": "type-scoped value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c020-in.jsonld", + "rdfs:comment": "type-scoped value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b22728", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example.org/" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0075-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0075-out.jsonld", - "title": "Compact using relative fragment identifier", - "rdfs:comment": "Compacting a relative round-trips", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0075-context.jsonld" + "@id": "_:b9359", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b22737", + "@id": "_:b9363", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "result": { - "@id": "_:b24796", + "@id": "_:b26137", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22734", + "@id": "_:b9361", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26134", + "@id": "_:b25803", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22736", + "@id": "_:b9366", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26135", + "@id": "_:b26900", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22729", + "@id": "_:b9362", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21409", + "@id": "_:b13250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22730", + "@id": "_:b9364", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "result": { - "@id": "_:b24063", + "@id": "_:b15108", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22733", + "@id": "_:b9357", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26133", + "@id": "_:b9358", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22731", + "@id": "_:b9368", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22393", + "@id": "_:b25151", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22735", + "@id": "_:b9367", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", + "mode": "earl:automatic", "result": { - "@id": "_:b23681", + "@id": "_:b9432", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b22732", + "@id": "_:b9365", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "result": { - "@id": "_:b19688", + "@id": "_:b24459", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22726", + "@id": "_:b9360", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", "result": { - "@id": "_:b22727", + "@id": "_:b25160", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c021-out.nq", + "title": "type-scoped value mix", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c021-in.jsonld", + "rdfs:comment": "type-scoped value mix" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0076-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3451", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0076-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0076-out.jsonld", - "title": "Compacting IRI equivalent to base", - "rdfs:comment": "Compacting IRI equivalent to base, uses last path segment of base ending in '/'", "assertions": [ { - "@id": "_:b5405", + "@id": "_:b6548", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "result": { - "@id": "_:b17012", + "@id": "_:b24173", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5402", + "@id": "_:b6543", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17009", + "@id": "_:b11463", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5410", + "@id": "_:b6544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17017", + "@id": "_:b24170", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5404", + "@id": "_:b6547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17011", + "@id": "_:b19877", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5407", + "@id": "_:b6549", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "result": { - "@id": "_:b17014", + "@id": "_:b24174", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5406", + "@id": "_:b6546", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17013", + "@id": "_:b24172", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5400", + "@id": "_:b6540", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5401", + "@id": "_:b6541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5409", + "@id": "_:b6545", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", + "mode": "earl:automatic", "result": { - "@id": "_:b17016", + "@id": "_:b24171", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5403", + "@id": "_:b6542", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "result": { - "@id": "_:b17010", + "@id": "_:b19302", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5408", + "@id": "_:b6550", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", "result": { - "@id": "_:b17015", + "@id": "_:b23431", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c022-out.nq", + "title": "type-scoped property-scoped contexts including @type:@vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c022-in.jsonld", + "rdfs:comment": "type-scoped property-scoped contexts including @type:@vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3210", + "@id": "_:b12866", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0077-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0077-out.jsonld", - "title": "Compact a @graph container", - "rdfs:comment": "Compact a @graph container", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0077-context.jsonld" - }, "assertions": [ { - "@id": "_:b3208", + "@id": "_:b12874", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "result": { - "@id": "_:b3209", + "@id": "_:b19476", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3214", + "@id": "_:b12868", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24178", + "@id": "_:b22769", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3212", + "@id": "_:b12869", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12936", + "@id": "_:b22770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3213", + "@id": "_:b12873", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21532", + "@id": "_:b20568", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3216", + "@id": "_:b12875", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "result": { - "@id": "_:b13854", + "@id": "_:b22773", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3217", + "@id": "_:b12870", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26486", + "@id": "_:b22771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3215", + "@id": "_:b12872", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25908", + "@id": "_:b22772", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3211", + "@id": "_:b12867", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", + "mode": "earl:automatic", "result": { - "@id": "_:b9386", + "@id": "_:b19493", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3219", + "@id": "_:b12871", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "result": { - "@id": "_:b11701", + "@id": "_:b20291", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3218", + "@id": "_:b12864", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", "result": { - "@id": "_:b18435", + "@id": "_:b12865", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c023-out.nq", + "title": "composed type-scoped property-scoped contexts including @type:@vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c023-in.jsonld", + "rdfs:comment": "composed type-scoped property-scoped contexts including @type:@vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14971", + "@id": "_:b17396", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0078-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0078-out.jsonld", - "title": "Compact a [@graph, @set] container", - "rdfs:comment": "Compact with [@graph, @set]", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0078-context.jsonld" - }, "assertions": [ { - "@id": "_:b14975", + "@id": "_:b17394", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "result": { - "@id": "_:b18700", + "@id": "_:b17395", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14974", + "@id": "_:b17397", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20721", + "@id": "_:b22262", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14976", + "@id": "_:b17398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21230", + "@id": "_:b19593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14972", + "@id": "_:b17404", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15861", + "@id": "_:b8600", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14980", + "@id": "_:b17405", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "result": { - "@id": "_:b21233", + "@id": "_:b22185", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14969", + "@id": "_:b17400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14970", + "@id": "_:b25637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14979", + "@id": "_:b17402", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17961", + "@id": "_:b25638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14973", + "@id": "_:b17403", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", + "mode": "earl:automatic", "result": { - "@id": "_:b18564", + "@id": "_:b21521", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14978", + "@id": "_:b17401", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "result": { - "@id": "_:b21232", + "@id": "_:b16896", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14977", + "@id": "_:b17399", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", "result": { - "@id": "_:b21231", + "@id": "_:b23633", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c024-out.nq", + "title": "type-scoped + property-scoped + values evaluates against previous context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c024-in.jsonld", + "rdfs:comment": "type-scoped + property-scoped + values evaluates against previous context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1355", + "@id": "_:b19290", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0079-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0079-out.jsonld", - "title": "Compact a @graph container having @index", - "rdfs:comment": "Verify that having both @graph and @index allows @graph container compaction", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0079-context.jsonld" - }, "assertions": [ { - "@id": "_:b16895", + "@id": "_:b21740", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "result": { - "@id": "_:b25387", + "@id": "_:b19631", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16894", + "@id": "_:b21731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15481", + "@id": "_:b20228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16897", + "@id": "_:b21735", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18391", + "@id": "_:b23411", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16893", + "@id": "_:b21736", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25386", + "@id": "_:b18953", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16898", + "@id": "_:b21732", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "result": { - "@id": "_:b13108", + "@id": "_:b23409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16896", + "@id": "_:b21734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25388", + "@id": "_:b18904", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16890", + "@id": "_:b21739", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17683", + "@id": "_:b16521", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16892", + "@id": "_:b21738", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", + "mode": "earl:automatic", "result": { - "@id": "_:b24531", + "@id": "_:b23413", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16888", + "@id": "_:b21733", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "result": { - "@id": "_:b16889", + "@id": "_:b23410", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16891", + "@id": "_:b21737", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", "result": { - "@id": "_:b21151", + "@id": "_:b23412", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c025-out.nq", + "title": "type-scoped + graph container", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c025-in.jsonld", + "rdfs:comment": "type-scoped + graph container" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3880", + "@id": "_:b3553", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0080-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0080-out.jsonld", - "title": "Do not compact a graph having @id with a term having an @graph container", - "rdfs:comment": "Graph compaction works only on simple graphs", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0080-context.jsonld" - }, "assertions": [ { - "@id": "_:b3885", + "@id": "_:b3556", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "result": { - "@id": "_:b26078", + "@id": "_:b25251", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3883", + "@id": "_:b3559", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24564", + "@id": "_:b26029", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3878", + "@id": "_:b3560", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3879", + "@id": "_:b26020", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3881", + "@id": "_:b3555", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11690", + "@id": "_:b24881", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3886", + "@id": "_:b3561", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "result": { - "@id": "_:b26904", + "@id": "_:b24894", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3887", + "@id": "_:b3551", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25135", + "@id": "_:b3552", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3882", + "@id": "_:b3557", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17023", + "@id": "_:b24844", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3888", + "@id": "_:b3558", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", + "mode": "earl:automatic", "result": { - "@id": "_:b25847", + "@id": "_:b26028", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3884", + "@id": "_:b3562", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "result": { - "@id": "_:b25313", + "@id": "_:b25917", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3889", + "@id": "_:b3554", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", "result": { - "@id": "_:b24438", + "@id": "_:b24664", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c026-out.nq", + "title": "@propagate: true on type-scoped context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c026-in.jsonld", + "rdfs:comment": "type-scoped context with @propagate: true survive node-objects" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16266", + "@id": "_:b24346", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0081-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0081-out.jsonld", - "title": "Compact a [@graph, @index] container", - "rdfs:comment": "Compact a @graph container with @index", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0081-context.jsonld" - }, "assertions": [ { - "@id": "_:b16271", + "@id": "_:b24351", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "result": { - "@id": "_:b23232", + "@id": "_:b24798", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16269", + "@id": "_:b24352", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24621", + "@id": "_:b24799", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16272", + "@id": "_:b24354", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4081", + "@id": "_:b24801", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16274", + "@id": "_:b24350", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23204", + "@id": "_:b24797", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16267", + "@id": "_:b24355", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "result": { - "@id": "_:b18766", + "@id": "_:b23006", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16268", + "@id": "_:b24344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21314", + "@id": "_:b24345", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16275", + "@id": "_:b24349", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10401", + "@id": "_:b23874", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16273", + "@id": "_:b24348", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", + "mode": "earl:automatic", "result": { - "@id": "_:b22176", + "@id": "_:b20679", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16270", + "@id": "_:b24353", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "result": { - "@id": "_:b26184", + "@id": "_:b24800", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16276", + "@id": "_:b24347", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", "result": { - "@id": "_:b26593", + "@id": "_:b14723", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c027-out.nq", + "title": "@propagate: false on property-scoped context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c027-in.jsonld", + "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14863", + "@id": "_:b16797", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0082-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0082-out.jsonld", - "title": "Compact a [@graph, @index, @set] container", - "rdfs:comment": "Compact a @graph container with @index and @set", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0082-context.jsonld" - }, "assertions": [ { - "@id": "_:b14866", + "@id": "_:b16800", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "result": { - "@id": "_:b14910", + "@id": "_:b21329", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14870", + "@id": "_:b16798", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26968", + "@id": "_:b21126", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14869", + "@id": "_:b16803", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26764", + "@id": "_:b21331", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14864", + "@id": "_:b16805", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18009", + "@id": "_:b21332", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14871", + "@id": "_:b16804", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "result": { - "@id": "_:b25530", + "@id": "_:b10998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14867", + "@id": "_:b16801", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26746", + "@id": "_:b13349", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14872", + "@id": "_:b16806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12320", + "@id": "_:b21333", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14865", + "@id": "_:b16795", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", + "mode": "earl:automatic", "result": { - "@id": "_:b19455", + "@id": "_:b16796", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14868", + "@id": "_:b16799", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "result": { - "@id": "_:b26642", + "@id": "_:b21018", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14861", + "@id": "_:b16802", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", "result": { - "@id": "_:b14862", + "@id": "_:b21330", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c028-out.nq", + "title": "@propagate: false on embedded context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c028-in.jsonld", + "rdfs:comment": "embedded context with @propagate: false do not survive node-objects" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4893", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0083-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0083-out.jsonld", - "title": "[@graph, @index] does not compact graph with @id", - "rdfs:comment": "Graph compaction with @graph and @index works only on simple graphs", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0083-context.jsonld" + "@id": "_:b11603", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, "assertions": [ { - "@id": "_:b4899", + "@id": "_:b11609", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "result": { - "@id": "_:b26997", + "@id": "_:b21549", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4900", + "@id": "_:b11605", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26737", + "@id": "_:b19289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4895", + "@id": "_:b11608", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15319", + "@id": "_:b23979", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4894", + "@id": "_:b11604", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9177", + "@id": "_:b16138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4901", + "@id": "_:b11611", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "result": { - "@id": "_:b26860", + "@id": "_:b23964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4897", + "@id": "_:b11607", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22792", + "@id": "_:b23978", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4891", + "@id": "_:b11612", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4892", + "@id": "_:b23980", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4896", + "@id": "_:b11610", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", + "mode": "earl:automatic", "result": { - "@id": "_:b16869", + "@id": "_:b23236", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4898", + "@id": "_:b11606", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "result": { - "@id": "_:b3047", + "@id": "_:b23977", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4902", + "@id": "_:b11601", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", "result": { - "@id": "_:b26985", + "@id": "_:b11602", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context entry", + "title": "@propagate is invalid in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c029-in.jsonld", + "rdfs:comment": "@propagate is invalid in 1.0" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9992", + "@id": "_:b5619", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0084-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0084-out.jsonld", - "title": "Compact a simple graph with a [@graph, @id] container", - "rdfs:comment": "Compact a simple graph using a @graph container with @id", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0084-context.jsonld" - }, "assertions": [ { - "@id": "_:b9993", + "@id": "_:b5626", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "result": { - "@id": "_:b14202", + "@id": "_:b11521", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10001", + "@id": "_:b5620", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23230", + "@id": "_:b6514", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9995", + "@id": "_:b5625", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21687", + "@id": "_:b25769", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9998", + "@id": "_:b5617", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23227", + "@id": "_:b5618", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9994", + "@id": "_:b5624", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "result": { - "@id": "_:b18822", + "@id": "_:b25537", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9999", + "@id": "_:b5621", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23228", + "@id": "_:b11698", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9996", + "@id": "_:b5623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15969", + "@id": "_:b23637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10002", + "@id": "_:b5628", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", + "mode": "earl:automatic", "result": { - "@id": "_:b23231", + "@id": "_:b7625", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9997", + "@id": "_:b5622", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "result": { - "@id": "_:b23226", + "@id": "_:b22601", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10000", + "@id": "_:b5627", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", "result": { - "@id": "_:b23229", + "@id": "_:b20622", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @propagate value", + "title": "@propagate must be boolean valued", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c030-in.jsonld", + "rdfs:comment": "@propagate must be boolean valued" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14339", + "@id": "_:b1885", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0085-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0085-out.jsonld", - "title": "Compact a named graph with a [@graph, @id] container", - "rdfs:comment": "Compact a named graph using a @graph container with @id", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0085-context.jsonld" - }, "assertions": [ { - "@id": "_:b14340", + "@id": "_:b1892", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "result": { - "@id": "_:b17965", + "@id": "_:b20379", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14337", + "@id": "_:b1890", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14338", + "@id": "_:b24154", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14345", + "@id": "_:b1893", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21491", + "@id": "_:b15180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14342", + "@id": "_:b1883", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21294", + "@id": "_:b1884", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14347", + "@id": "_:b1889", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "result": { - "@id": "_:b15012", + "@id": "_:b16466", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14341", + "@id": "_:b1891", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19415", + "@id": "_:b24155", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14346", + "@id": "_:b1888", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21492", + "@id": "_:b21940", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14344", + "@id": "_:b1886", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", + "mode": "earl:automatic", "result": { - "@id": "_:b5063", + "@id": "_:b18902", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14348", + "@id": "_:b1887", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "result": { - "@id": "_:b18417", + "@id": "_:b21168", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14343", + "@id": "_:b1894", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", "result": { - "@id": "_:b21490", + "@id": "_:b24156", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c031-out.nq", + "title": "@context resolutions respects relative URLs.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c031-in.jsonld", + "rdfs:comment": "URL resolution follows RFC3986" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b286", + "@id": "_:b14799", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0086-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0086-out.jsonld", - "title": "Compact a simple graph with a [@graph, @id, @set] container", - "rdfs:comment": "Compact a simple graph using a @graph container with @id and @set", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0086-context.jsonld" - }, "assertions": [ { - "@id": "_:b287", + "@id": "_:b14804", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "result": { - "@id": "_:b297", + "@id": "_:b20109", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b292", + "@id": "_:b14800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b302", + "@id": "_:b20105", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b294", + "@id": "_:b14803", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b304", + "@id": "_:b20108", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b293", + "@id": "_:b14806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b303", + "@id": "_:b20111", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b295", + "@id": "_:b14807", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "result": { - "@id": "_:b305", + "@id": "_:b20112", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b290", + "@id": "_:b14802", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b300", + "@id": "_:b20107", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b296", + "@id": "_:b14809", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b306", + "@id": "_:b20113", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b288", + "@id": "_:b14801", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", + "mode": "earl:automatic", "result": { - "@id": "_:b298", + "@id": "_:b20106", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b289", + "@id": "_:b14808", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "result": { - "@id": "_:b299", + "@id": "_:b2460", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b291", + "@id": "_:b14805", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", "result": { - "@id": "_:b301", + "@id": "_:b20110", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid scoped context", + "title": "Unused embedded context with error.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c032-in.jsonld", + "rdfs:comment": "An embedded context which is never used should still be checked." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1511", + "@id": "_:b17530", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0087-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0087-out.jsonld", - "title": "Compact a named graph with a [@graph, @id, @set] container", - "rdfs:comment": "Compact a named graph using a @graph container with @id and @set", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0087-context.jsonld" - }, "assertions": [ { - "@id": "_:b1513", + "@id": "_:b17534", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "result": { - "@id": "_:b5744", + "@id": "_:b23875", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1514", + "@id": "_:b17532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5745", + "@id": "_:b9327", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1509", + "@id": "_:b17535", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1510", + "@id": "_:b25255", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1519", + "@id": "_:b17533", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5750", + "@id": "_:b22802", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1517", + "@id": "_:b17539", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "result": { - "@id": "_:b5748", + "@id": "_:b24443", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1515", + "@id": "_:b17538", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5746", + "@id": "_:b24370", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1518", + "@id": "_:b17536", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5749", + "@id": "_:b22223", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1516", + "@id": "_:b17537", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", + "mode": "earl:automatic", "result": { - "@id": "_:b5747", + "@id": "_:b26097", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1512", + "@id": "_:b17531", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "result": { - "@id": "_:b5743", + "@id": "_:b17997", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1520", + "@id": "_:b17528", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", "result": { - "@id": "_:b5751", + "@id": "_:b17529", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid scoped context", + "title": "Unused context with an embedded context error.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c033-in.jsonld", + "rdfs:comment": "An unused context with an embedded context should still be checked." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21063", + "@id": "_:b1196", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0088-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0088-out.jsonld", - "title": "Compact a graph with @index using a [@graph, @id] container", - "rdfs:comment": "Compact a @graph container with @id and @set, discarding an @index value", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0088-context.jsonld" - }, "assertions": [ { - "@id": "_:b21064", + "@id": "_:b1199", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "result": { - "@id": "_:b25150", + "@id": "_:b18082", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21071", + "@id": "_:b1204", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25050", + "@id": "_:b26390", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21065", + "@id": "_:b1200", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25344", + "@id": "_:b20294", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21067", + "@id": "_:b1205", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14727", + "@id": "_:b20358", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21066", + "@id": "_:b1197", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "result": { - "@id": "_:b19034", + "@id": "_:b14891", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21061", + "@id": "_:b1202", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21062", + "@id": "_:b22320", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21072", + "@id": "_:b1198", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24129", + "@id": "_:b13943", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21068", + "@id": "_:b1203", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", + "mode": "earl:automatic", "result": { - "@id": "_:b24781", + "@id": "_:b19330", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b21069", + "@id": "_:b1201", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "result": { - "@id": "_:b17890", + "@id": "_:b13012", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21070", + "@id": "_:b1194", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", "result": { - "@id": "_:b25989", + "@id": "_:b1195", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c034-out.nq", + "title": "Remote scoped context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c034-in.jsonld", + "rdfs:comment": "Scoped contexts may be externally loaded." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0089-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7598", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0089-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0089-out.jsonld", - "title": "Language map term selection with complications", - "rdfs:comment": "Test appropriate property use given language maps with @vocab, a default language, no language, and competing terms", "assertions": [ { - "@id": "_:b4910", + "@id": "_:b7603", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "result": { - "@id": "_:b22676", + "@id": "_:b23644", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4908", + "@id": "_:b7605", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22674", + "@id": "_:b23645", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4906", + "@id": "_:b7599", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16567", + "@id": "_:b19038", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4904", + "@id": "_:b7602", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4905", + "@id": "_:b23643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4914", + "@id": "_:b7604", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "result": { - "@id": "_:b9788", + "@id": "_:b21343", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4909", + "@id": "_:b7600", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22675", + "@id": "_:b23077", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4913", + "@id": "_:b7596", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19784", + "@id": "_:b7597", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4907", + "@id": "_:b7601", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", + "mode": "earl:automatic", "result": { - "@id": "_:b22025", + "@id": "_:b21444", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4911", + "@id": "_:b7606", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "result": { - "@id": "_:b21778", + "@id": "_:b23646", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4912", + "@id": "_:b7607", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", "result": { - "@id": "_:b22677", + "@id": "_:b23647", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c035-out.nq", + "title": "Term scoping with embedded contexts.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c035-in.jsonld", + "rdfs:comment": "Terms should make use of @vocab relative to the scope in which the term was defined." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9510", + "@id": "_:b4216", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0090-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0090-out.jsonld", - "title": "Compact input with @graph container to output without @graph container", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0090-context.jsonld" - }, "assertions": [ { - "@id": "_:b9517", + "@id": "_:b4221", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "result": { - "@id": "_:b9527", + "@id": "_:b9110", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9515", + "@id": "_:b4219", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9525", + "@id": "_:b20398", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9514", + "@id": "_:b4224", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9524", + "@id": "_:b26207", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9518", + "@id": "_:b4214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9528", + "@id": "_:b4215", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9513", + "@id": "_:b4223", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "result": { - "@id": "_:b9523", + "@id": "_:b25856", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9511", + "@id": "_:b4220", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9521", + "@id": "_:b20528", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9519", + "@id": "_:b4225", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9529", + "@id": "_:b18262", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9516", + "@id": "_:b4222", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", + "mode": "earl:automatic", "result": { - "@id": "_:b9526", + "@id": "_:b26117", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9512", + "@id": "_:b4218", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "result": { - "@id": "_:b9522", + "@id": "_:b20347", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9520", + "@id": "_:b4217", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", "result": { - "@id": "_:b9530", + "@id": "_:b19420", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di01-out.nq", + "title": "Expand string using default and term directions", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di01-in.jsonld", + "rdfs:comment": "Strings are coerced to have @direction based on default and term direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16440", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#compactArrays": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0091-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0091-out.jsonld", - "title": "Compact input with @graph container to output without @graph container with compactArrays unset", - "rdfs:comment": "Ensure @graph appears properly in output with compactArrays unset", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0091-context.jsonld" + "@id": "_:b2905", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b16444", + "@id": "_:b2909", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "result": { - "@id": "_:b8656", + "@id": "_:b26651", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16448", + "@id": "_:b2903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16456", + "@id": "_:b2904", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16442", + "@id": "_:b2910", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16452", + "@id": "_:b24343", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16446", + "@id": "_:b2912", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3595", + "@id": "_:b26781", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16449", + "@id": "_:b2907", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "result": { - "@id": "_:b16457", + "@id": "_:b20645", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16441", + "@id": "_:b2908", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16451", + "@id": "_:b22381", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16450", + "@id": "_:b2906", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16458", + "@id": "_:b16426", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16447", + "@id": "_:b2913", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", + "mode": "earl:automatic", "result": { - "@id": "_:b16455", + "@id": "_:b24615", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16445", + "@id": "_:b2911", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "result": { - "@id": "_:b16454", + "@id": "_:b26419", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16443", + "@id": "_:b2914", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", "result": { - "@id": "_:b16453", + "@id": "_:b20801", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di02-out.nq", + "title": "Expand string using default and term directions and languages", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di02-in.jsonld", + "rdfs:comment": "Strings are coerced to have @direction based on default and term direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7401", + "@id": "_:b605", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0092-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0092-out.jsonld", - "title": "Compact input with [@graph, @set] container to output without [@graph, @set] container", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0092-context.jsonld" - }, "assertions": [ { - "@id": "_:b7408", + "@id": "_:b613", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "result": { - "@id": "_:b19017", + "@id": "_:b623", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7406", + "@id": "_:b606", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19015", + "@id": "_:b616", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7409", + "@id": "_:b609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19018", + "@id": "_:b619", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7404", + "@id": "_:b610", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1735", + "@id": "_:b620", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7399", + "@id": "_:b608", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "result": { - "@id": "_:b7400", + "@id": "_:b618", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7402", + "@id": "_:b615", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19012", + "@id": "_:b625", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7403", + "@id": "_:b612", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19013", + "@id": "_:b622", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7407", + "@id": "_:b611", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", + "mode": "earl:automatic", "result": { - "@id": "_:b19016", + "@id": "_:b621", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7405", + "@id": "_:b614", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "result": { - "@id": "_:b19014", + "@id": "_:b624", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7410", + "@id": "_:b607", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", "result": { - "@id": "_:b18319", + "@id": "_:b617", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di03-out.nq", + "title": "expand list values with @direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di03-in.jsonld", + "rdfs:comment": "List values where the term has @direction are used in expansion." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15453", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#compactArrays": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0093-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0093-out.jsonld", - "title": "Compact input with [@graph, @set] container to output without [@graph, @set] container with compactArrays unset", - "rdfs:comment": "Ensure @graph appears properly in output with compactArrays unset", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0093-context.jsonld" + "@id": "_:b7731", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b15462", + "@id": "_:b7735", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "result": { - "@id": "_:b15558", + "@id": "_:b7745", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15456", + "@id": "_:b7739", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15552", + "@id": "_:b7749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15458", + "@id": "_:b7732", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15554", + "@id": "_:b7742", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15451", + "@id": "_:b7738", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15452", + "@id": "_:b7748", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15460", + "@id": "_:b7740", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "result": { - "@id": "_:b15556", + "@id": "_:b7750", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15459", + "@id": "_:b7737", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15555", + "@id": "_:b7747", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15455", + "@id": "_:b7741", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15551", + "@id": "_:b7751", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15454", + "@id": "_:b7733", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", + "mode": "earl:automatic", "result": { - "@id": "_:b15550", + "@id": "_:b7743", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15461", + "@id": "_:b7736", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "result": { - "@id": "_:b15557", + "@id": "_:b7746", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15457", + "@id": "_:b7734", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", "result": { - "@id": "_:b15553", + "@id": "_:b7744", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di04-out.nq", + "title": "simple language map with term direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di04-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13338", + "@id": "_:b10106", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0094-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0094-out.jsonld", - "title": "Compact input with [@graph, @set] container to output without [@graph, @set] container", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0094-context.jsonld" - }, "assertions": [ { - "@id": "_:b13342", + "@id": "_:b10108", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "result": { - "@id": "_:b13352", + "@id": "_:b16721", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13344", + "@id": "_:b10112", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10834", + "@id": "_:b24237", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13341", + "@id": "_:b10113", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13351", + "@id": "_:b24238", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13348", + "@id": "_:b10110", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13356", + "@id": "_:b24235", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13345", + "@id": "_:b10107", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "result": { - "@id": "_:b13354", + "@id": "_:b22451", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13340", + "@id": "_:b10114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13350", + "@id": "_:b24239", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13346", + "@id": "_:b10104", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13355", + "@id": "_:b10105", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13343", + "@id": "_:b10109", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", + "mode": "earl:automatic", "result": { - "@id": "_:b13353", + "@id": "_:b23938", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13347", + "@id": "_:b10115", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "result": { - "@id": "_:b12023", + "@id": "_:b5590", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13339", + "@id": "_:b10111", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", "result": { - "@id": "_:b13349", + "@id": "_:b24236", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di05-out.nq", + "title": "simple language mapwith overriding term direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di05-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0095-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12794", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0095-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0095-out.jsonld", - "title": "Relative propererty IRIs with @vocab: ''", - "rdfs:comment": "Complex use cases for relative IRI compaction or properties", "assertions": [ { - "@id": "_:b10672", + "@id": "_:b12798", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "result": { - "@id": "_:b11382", + "@id": "_:b12808", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10664", + "@id": "_:b12803", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12596", + "@id": "_:b12812", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10665", + "@id": "_:b12796", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8148", + "@id": "_:b12806", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10667", + "@id": "_:b12800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19198", + "@id": "_:b5228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10666", + "@id": "_:b12804", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "result": { - "@id": "_:b25641", + "@id": "_:b12813", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10662", + "@id": "_:b12802", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10663", + "@id": "_:b12811", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10668", + "@id": "_:b12797", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26562", + "@id": "_:b12807", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10669", + "@id": "_:b12801", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", + "mode": "earl:automatic", "result": { - "@id": "_:b5176", + "@id": "_:b12810", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10670", + "@id": "_:b12799", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "result": { - "@id": "_:b20975", + "@id": "_:b12809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10671", + "@id": "_:b12795", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", "result": { - "@id": "_:b26768", + "@id": "_:b12805", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di06-out.nq", + "title": "simple language mapwith overriding null direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di06-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1946", + "@id": "_:b669", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0096-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0096-out.jsonld", - "title": "Compact @graph container (multiple graphs)", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0096-context.jsonld" - }, "assertions": [ { - "@id": "_:b1952", + "@id": "_:b1185", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "result": { - "@id": "_:b24851", + "@id": "_:b8821", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1950", + "@id": "_:b1189", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21302", + "@id": "_:b8834", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1954", + "@id": "_:b1186", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22966", + "@id": "_:b10856", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1955", + "@id": "_:b1188", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11874", + "@id": "_:b19199", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1953", + "@id": "_:b1190", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "result": { - "@id": "_:b24038", + "@id": "_:b24749", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1951", + "@id": "_:b1187", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24077", + "@id": "_:b22510", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1949", + "@id": "_:b1191", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13776", + "@id": "_:b22038", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1947", + "@id": "_:b1192", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", + "mode": "earl:automatic", "result": { - "@id": "_:b4599", + "@id": "_:b25591", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1948", + "@id": "_:b1183", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "result": { - "@id": "_:b11039", + "@id": "_:b1184", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1944", + "@id": "_:b1193", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", "result": { - "@id": "_:b1945", + "@id": "_:b24408", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di07-out.nq", + "title": "simple language map with mismatching term direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di07-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4400", + "@id": "_:b9009", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0097-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0097-out.jsonld", - "title": "Compact [@graph, @set] container (multiple graphs)", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0097-context.jsonld" - }, "assertions": [ { - "@id": "_:b4403", + "@id": "_:b9014", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "result": { - "@id": "_:b13746", + "@id": "_:b25210", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4405", + "@id": "_:b9013", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13748", + "@id": "_:b25588", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4407", + "@id": "_:b9017", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13750", + "@id": "_:b26854", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4399", + "@id": "_:b9012", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1079", + "@id": "_:b19926", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4402", + "@id": "_:b9018", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "result": { - "@id": "_:b13745", + "@id": "_:b16995", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4406", + "@id": "_:b9010", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13749", + "@id": "_:b13635", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4408", + "@id": "_:b9015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13751", + "@id": "_:b20377", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4409", + "@id": "_:b9011", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", + "mode": "earl:automatic", "result": { - "@id": "_:b13752", + "@id": "_:b11128", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4401", + "@id": "_:b9007", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "result": { - "@id": "_:b13744", + "@id": "_:b9008", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4404", + "@id": "_:b9016", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", "result": { - "@id": "_:b13747", + "@id": "_:b26795", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid base direction", + "title": "@direction must be one of ltr or rtl", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di08-in.jsonld", + "rdfs:comment": "Generate an error if @direction has illegal value." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15492", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0098-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0098-out.jsonld", - "title": "Compact [@graph, @index] container (multiple indexed objects)", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0098-context.jsonld" + "@id": "_:b6765", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype" }, "assertions": [ { - "@id": "_:b15495", + "@id": "_:b6769", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "result": { - "@id": "_:b15504", + "@id": "_:b9747", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15502", + "@id": "_:b6771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14631", + "@id": "_:b9748", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15497", + "@id": "_:b6766", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15506", + "@id": "_:b9744", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15496", + "@id": "_:b6772", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15505", + "@id": "_:b1737", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15500", + "@id": "_:b6774", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "result": { - "@id": "_:b15509", + "@id": "_:b9750", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15501", + "@id": "_:b6767", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8557", + "@id": "_:b9745", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15494", + "@id": "_:b6773", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15503", + "@id": "_:b9749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15498", + "@id": "_:b6763", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", + "mode": "earl:automatic", "result": { - "@id": "_:b15507", + "@id": "_:b6764", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15499", + "@id": "_:b6770", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "result": { - "@id": "_:b15508", + "@id": "_:b9286", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15493", + "@id": "_:b6768", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", "result": { - "@id": "_:b7360", + "@id": "_:b9746", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di09-out.nq", + "title": "rdfDirection: i18n-datatype with direction and no language", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di09-in.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#requires": "I18nDatatype", + "rdfs:comment": "Generates i18n datatype from literal with direction with option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4094", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0099-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0099-out.jsonld", - "title": "Compact [@graph, @index, @set] container (multiple indexed objects)", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0099-context.jsonld" + "@id": "_:b7519", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype" }, "assertions": [ { - "@id": "_:b16113", + "@id": "_:b16195", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "result": { - "@id": "_:b4990", + "@id": "_:b25567", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16111", + "@id": "_:b16197", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16112", + "@id": "_:b24138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16118", + "@id": "_:b16196", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9071", + "@id": "_:b25678", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16117", + "@id": "_:b16199", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26626", + "@id": "_:b25653", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16115", + "@id": "_:b16201", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "result": { - "@id": "_:b24490", + "@id": "_:b26887", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16120", + "@id": "_:b16200", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b27020", + "@id": "_:b24551", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16121", + "@id": "_:b16194", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26650", + "@id": "_:b25291", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16116", + "@id": "_:b16193", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", + "mode": "earl:automatic", "result": { - "@id": "_:b25347", + "@id": "_:b16732", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16119", + "@id": "_:b16198", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "result": { - "@id": "_:b24792", + "@id": "_:b26365", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16114", + "@id": "_:b16191", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", "result": { - "@id": "_:b9123", + "@id": "_:b16192", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di10-out.nq", + "title": "rdfDirection: i18n-datatype with direction and language", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di10-in.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#requires": "I18nDatatype", + "rdfs:comment": "Generates i18n datatype from literal with direction with option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10700", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0100-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0100-out.jsonld", - "title": "Compact [@graph, @id] container (multiple indexed objects)", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0100-context.jsonld" + "@id": "_:b5204", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal" }, "assertions": [ { - "@id": "_:b10698", + "@id": "_:b5207", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "result": { - "@id": "_:b10699", + "@id": "_:b13424", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10703", + "@id": "_:b5211", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24553", + "@id": "_:b12891", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10706", + "@id": "_:b5206", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "result": { - "@id": "_:b24555", + "@id": "_:b13423", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b10707", + "@id": "_:b5209", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "result": { - "@id": "_:b24556", + "@id": "_:b13426", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": null }, { - "@id": "_:b10702", + "@id": "_:b5213", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "result": { - "@id": "_:b20536", + "@id": "_:b13428", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10701", + "@id": "_:b5205", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3048", + "@id": "_:b13422", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10705", + "@id": "_:b5212", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24554", + "@id": "_:b5777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10708", + "@id": "_:b5208", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", + "mode": "earl:automatic", "result": { - "@id": "_:b24557", + "@id": "_:b13425", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10704", + "@id": "_:b5202", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "result": { - "@id": "_:b24323", + "@id": "_:b5203", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10709", + "@id": "_:b5210", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", "result": { - "@id": "_:b16871", + "@id": "_:b13427", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di11-out.nq", + "title": "rdfDirection: compound-literal with direction and no language", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di11-in.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#requires": "CompoundLiteral", + "rdfs:comment": "Generates i18n datatype from literal with direction with option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13383", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0101-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0101-out.jsonld", - "title": "Compact [@graph, @id, @set] container (multiple indexed objects)", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0101-context.jsonld" + "@id": "_:b9385", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal" }, "assertions": [ { - "@id": "_:b13385", + "@id": "_:b9390", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "result": { - "@id": "_:b12535", + "@id": "_:b19777", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13389", + "@id": "_:b9383", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20318", + "@id": "_:b9384", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13392", + "@id": "_:b9392", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "result": { - "@id": "_:b25015", + "@id": "_:b20196", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b13384", + "@id": "_:b9387", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "result": { - "@id": "_:b13767", + "@id": "_:b17568", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": null }, { - "@id": "_:b13386", + "@id": "_:b9388", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "result": { - "@id": "_:b25247", + "@id": "_:b18206", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13391", + "@id": "_:b9391", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26004", + "@id": "_:b7933", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13382", + "@id": "_:b9386", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4744", + "@id": "_:b13782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13387", + "@id": "_:b9389", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", + "mode": "earl:automatic", "result": { - "@id": "_:b20677", + "@id": "_:b22413", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13388", + "@id": "_:b9394", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "result": { - "@id": "_:b26003", + "@id": "_:b26135", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13390", + "@id": "_:b9393", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", "result": { - "@id": "_:b18315", + "@id": "_:b26134", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di12-out.nq", + "title": "rdfDirection: compound-literal with direction and language", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di12-in.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#requires": "CompoundLiteral", + "rdfs:comment": "Generates compound literal from literal with direction with option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4266", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0102-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0102-out.jsonld", - "title": "Compact [@graph, @index] container (multiple indexes and objects)", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0102-context.jsonld" - }, "assertions": [ { - "@id": "_:b4275", + "@id": "_:b959", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "result": { - "@id": "_:b19921", + "@id": "_:b3023", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4268", + "@id": "_:b956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13771", + "@id": "_:b17662", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4269", + "@id": "_:b964", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19917", + "@id": "_:b25789", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4267", + "@id": "_:b962", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19916", + "@id": "_:b17231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4274", + "@id": "_:b961", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "result": { - "@id": "_:b3813", + "@id": "_:b25788", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4271", + "@id": "_:b960", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19919", + "@id": "_:b22877", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4273", + "@id": "_:b958", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4194", + "@id": "_:b24325", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4272", + "@id": "_:b957", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", + "mode": "earl:automatic", "result": { - "@id": "_:b19920", + "@id": "_:b18583", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4270", + "@id": "_:b954", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "result": { - "@id": "_:b19918", + "@id": "_:b955", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4264", + "@id": "_:b963", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", "result": { - "@id": "_:b4265", + "@id": "_:b17916", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e001-out.nq", + "title": "drop free-floating nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e001-in.jsonld", + "rdfs:comment": "Free-floating nodes do not generate RDF triples (from expand-0001)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11974", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0103-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0103-out.jsonld", - "title": "Compact [@graph, @id] container (multiple ids and objects)", - "rdfs:comment": "Ensure @graph appears properly in output", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0103-context.jsonld" - }, "assertions": [ { - "@id": "_:b11983", + "@id": "_:b3744", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "result": { - "@id": "_:b24816", + "@id": "_:b16720", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11977", + "@id": "_:b3750", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22478", + "@id": "_:b24507", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11975", + "@id": "_:b3749", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13918", + "@id": "_:b24506", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11982", + "@id": "_:b3748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8096", + "@id": "_:b15538", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11981", + "@id": "_:b3752", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "result": { - "@id": "_:b22382", + "@id": "_:b24508", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11979", + "@id": "_:b3747", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26244", + "@id": "_:b17356", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11972", + "@id": "_:b3746", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11973", + "@id": "_:b9805", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11976", + "@id": "_:b3745", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", + "mode": "earl:automatic", "result": { - "@id": "_:b21347", + "@id": "_:b15152", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11978", + "@id": "_:b3751", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "result": { - "@id": "_:b20146", + "@id": "_:b16929", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11980", + "@id": "_:b3742", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", "result": { - "@id": "_:b26728", + "@id": "_:b3743", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e002-out.nq", + "title": "basic", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e002-in.jsonld", + "rdfs:comment": "Basic RDF conversion (from expand-0002)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5418", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0104-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0104-out.jsonld", - "title": "Compact @type with @container: @set", - "rdfs:comment": "Ensures that a single @type value is represented as an array", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0104-context.jsonld" - }, "assertions": [ { - "@id": "_:b11515", + "@id": "_:b15255", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "result": { - "@id": "_:b11525", + "@id": "_:b23135", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11523", + "@id": "_:b15258", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11532", + "@id": "_:b23138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11519", + "@id": "_:b15254", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11528", + "@id": "_:b21287", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11522", + "@id": "_:b15261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11531", + "@id": "_:b18901", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11520", + "@id": "_:b15260", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "result": { - "@id": "_:b11529", + "@id": "_:b22335", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11521", + "@id": "_:b15251", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11530", + "@id": "_:b15252", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11518", + "@id": "_:b15253", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11527", + "@id": "_:b17836", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11516", + "@id": "_:b15257", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", + "mode": "earl:automatic", "result": { - "@id": "_:b8469", + "@id": "_:b23137", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11524", + "@id": "_:b15259", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "result": { - "@id": "_:b2349", + "@id": "_:b23139", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11517", + "@id": "_:b15256", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", "result": { - "@id": "_:b11526", + "@id": "_:b23136", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e003-out.nq", + "title": "drop null and unmapped properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e003-in.jsonld", + "rdfs:comment": "Properties mapped to null or which are never mapped are dropped (from expand-0003)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8916", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0105-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0105-out.jsonld", - "title": "Compact @type with @container: @set using an alias of @type", - "rdfs:comment": "Ensures that a single @type value is represented as an array", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0105-context.jsonld" - }, "assertions": [ { - "@id": "_:b8924", + "@id": "_:b317", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "result": { - "@id": "_:b25782", + "@id": "_:b25400", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8914", + "@id": "_:b316", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8915", + "@id": "_:b21232", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8919", + "@id": "_:b315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23779", + "@id": "_:b19865", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8920", + "@id": "_:b322", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24524", + "@id": "_:b18613", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8918", + "@id": "_:b319", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "result": { - "@id": "_:b16873", + "@id": "_:b16252", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8923", + "@id": "_:b323", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26371", + "@id": "_:b26506", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8921", + "@id": "_:b320", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26475", + "@id": "_:b23940", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8917", + "@id": "_:b314", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", + "mode": "earl:automatic", "result": { - "@id": "_:b19311", + "@id": "_:b21984", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8922", + "@id": "_:b321", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "result": { - "@id": "_:b26476", + "@id": "_:b15209", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8925", + "@id": "_:b318", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", "result": { - "@id": "_:b24387", + "@id": "_:b25659", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e004-out.nq", + "title": "optimize @set, keep empty arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e004-in.jsonld", + "rdfs:comment": "RDF version of expand-0004" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1522", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0106-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0106-out.jsonld", - "title": "Do not compact @type with @container: @set to an array using an alias of @type", - "rdfs:comment": "Ensures that a single @type value is not represented as an array in 1.0", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0106-context.jsonld" - }, "assertions": [ { - "@id": "_:b9452", + "@id": "_:b16602", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "result": { - "@id": "_:b21777", + "@id": "_:b16603", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9448", + "@id": "_:b16609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26054", + "@id": "_:b20090", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9447", + "@id": "_:b16607", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15687", + "@id": "_:b20088", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9445", + "@id": "_:b16605", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12933", + "@id": "_:b17881", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9446", + "@id": "_:b16606", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "result": { - "@id": "_:b21590", + "@id": "_:b15943", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9450", + "@id": "_:b16608", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26468", + "@id": "_:b20089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9451", + "@id": "_:b16611", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22043", + "@id": "_:b15583", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9449", + "@id": "_:b16604", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", + "mode": "earl:automatic", "result": { - "@id": "_:b26147", + "@id": "_:b13223", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9443", + "@id": "_:b16610", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "result": { - "@id": "_:b9444", + "@id": "_:b1386", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9453", + "@id": "_:b16612", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", "result": { - "@id": "_:b16474", + "@id": "_:b20091", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e005-out.nq", + "title": "do not expand aliased @id/@type", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e005-in.jsonld", + "rdfs:comment": "RDF version of expand-0005" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0107-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0107-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0107-out.jsonld", - "title": "Relative propererty IRIs with @vocab: ''", - "rdfs:comment": "Complex use cases for relative IRI compaction or properties", "assertions": [ { - "@id": "_:b1268", + "@id": "_:b8689", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "result": { - "@id": "_:b25798", + "@id": "_:b8690", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1265", + "@id": "_:b8695", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25196", + "@id": "_:b22278", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1263", + "@id": "_:b8696", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19420", + "@id": "_:b22279", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1269", + "@id": "_:b8694", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9919", + "@id": "_:b22277", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1270", + "@id": "_:b8692", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "result": { - "@id": "_:b14203", + "@id": "_:b18587", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1264", + "@id": "_:b8691", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22239", + "@id": "_:b18454", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1262", + "@id": "_:b8697", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16772", + "@id": "_:b18507", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1260", + "@id": "_:b8693", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", + "mode": "earl:automatic", "result": { - "@id": "_:b1261", + "@id": "_:b22276", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1266", + "@id": "_:b8699", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "result": { - "@id": "_:b22157", + "@id": "_:b22280", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1267", + "@id": "_:b8698", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", "result": { - "@id": "_:b12436", + "@id": "_:b16705", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e006-out.nq", + "title": "alias keywords", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e006-in.jsonld", + "rdfs:comment": "RDF version of expand-0006" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0108-context.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0108-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0108-out.jsonld", - "title": "context with JavaScript Object property names", - "rdfs:comment": "Compact with context including JavaScript Object property names", "assertions": [ { - "@id": "_:b6235", + "@id": "_:b13156", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "result": { - "@id": "_:b18471", + "@id": "_:b20460", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6239", + "@id": "_:b13154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17989", + "@id": "_:b22735", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6236", + "@id": "_:b13150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22332", + "@id": "_:b13151", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6232", + "@id": "_:b13158", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6233", + "@id": "_:b12321", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6242", + "@id": "_:b13160", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "result": { - "@id": "_:b26889", + "@id": "_:b26920", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6240", + "@id": "_:b13153", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25739", + "@id": "_:b21486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6237", + "@id": "_:b13155", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24446", + "@id": "_:b23566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6238", + "@id": "_:b13159", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", + "mode": "earl:automatic", "result": { - "@id": "_:b15315", + "@id": "_:b16879", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6234", + "@id": "_:b13152", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "result": { - "@id": "_:b15940", + "@id": "_:b16928", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6241", + "@id": "_:b13157", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", "result": { - "@id": "_:b17074", + "@id": "_:b23608", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e007-out.nq", + "title": "date type-coercion", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e007-in.jsonld", + "rdfs:comment": "Type-coerced dates generate typed literals (from expand-0007)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9126", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0109-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0109-out.jsonld", - "title": "Compact @graph container (multiple objects)", - "rdfs:comment": "Multiple objects in a simple graph with a graph container need to use @included", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0109-context.jsonld" - }, "assertions": [ { - "@id": "_:b9134", + "@id": "_:b10322", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "result": { - "@id": "_:b25723", + "@id": "_:b10332", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9131", + "@id": "_:b10327", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25133", + "@id": "_:b10336", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9133", + "@id": "_:b10323", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25750", + "@id": "_:b10333", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9127", + "@id": "_:b10321", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13461", + "@id": "_:b10331", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9129", + "@id": "_:b10328", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "result": { - "@id": "_:b13905", + "@id": "_:b2825", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9132", + "@id": "_:b10325", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26255", + "@id": "_:b10335", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9130", + "@id": "_:b10320", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24912", + "@id": "_:b10330", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9128", + "@id": "_:b10324", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", + "mode": "earl:automatic", "result": { - "@id": "_:b16594", + "@id": "_:b10334", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9124", + "@id": "_:b10329", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "result": { - "@id": "_:b9125", + "@id": "_:b10337", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9135", + "@id": "_:b10326", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", "result": { - "@id": "_:b25303", + "@id": "_:b6938", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e008-out.nq", + "title": "@value with @language", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e008-in.jsonld", + "rdfs:comment": "RDF version of expand-0008" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11182", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0110-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0110-out.jsonld", - "title": "Compact [@graph, @set] container (multiple objects)", - "rdfs:comment": "Multiple objects in a simple graph with a graph container need to use @included", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/0110-context.jsonld" - }, "assertions": [ { - "@id": "_:b20005", + "@id": "_:b14744", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "result": { - "@id": "_:b25466", + "@id": "_:b14752", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20009", + "@id": "_:b14746", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26886", + "@id": "_:b7682", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20002", + "@id": "_:b14747", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22362", + "@id": "_:b14754", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20008", + "@id": "_:b14742", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26781", + "@id": "_:b14750", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20006", + "@id": "_:b14749", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "result": { - "@id": "_:b25992", + "@id": "_:b14756", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20004", + "@id": "_:b14741", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25106", + "@id": "_:b3997", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20003", + "@id": "_:b14748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24829", + "@id": "_:b14755", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20010", + "@id": "_:b14740", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", + "mode": "earl:automatic", "result": { - "@id": "_:b26748", + "@id": "_:b11599", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20007", + "@id": "_:b14745", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "result": { - "@id": "_:b26517", + "@id": "_:b14753", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20011", + "@id": "_:b14743", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", "result": { - "@id": "_:b25173", + "@id": "_:b14751", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e009-out.nq", + "title": "@graph with terms", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e009-in.jsonld", + "rdfs:comment": "RDF version of expand-0009" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9151", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c001-out.jsonld", - "title": "adding new term", - "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c001-context.jsonld" - }, "assertions": [ { - "@id": "_:b9158", + "@id": "_:b7548", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "result": { - "@id": "_:b20224", + "@id": "_:b10314", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9157", + "@id": "_:b7544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20223", + "@id": "_:b7545", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9155", + "@id": "_:b7550", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20222", + "@id": "_:b10316", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9160", + "@id": "_:b7554", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20226", + "@id": "_:b7222", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9159", + "@id": "_:b7546", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "result": { - "@id": "_:b20225", + "@id": "_:b10312", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9152", + "@id": "_:b7551", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16283", + "@id": "_:b10317", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9153", + "@id": "_:b7549", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8951", + "@id": "_:b10315", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9156", + "@id": "_:b7553", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", + "mode": "earl:automatic", "result": { - "@id": "_:b13501", + "@id": "_:b10319", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9149", + "@id": "_:b7552", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "result": { - "@id": "_:b9150", + "@id": "_:b10318", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9154", + "@id": "_:b7547", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", "result": { - "@id": "_:b20221", + "@id": "_:b10313", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e010-out.nq", + "title": "native types", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e010-in.jsonld", + "rdfs:comment": "Native types generate typed literals (from expand-0010)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10735", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c002-out.jsonld", - "title": "overriding a term", - "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c002-context.jsonld" - }, "assertions": [ { - "@id": "_:b10738", + "@id": "_:b447", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "result": { - "@id": "_:b25011", + "@id": "_:b3861", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10741", + "@id": "_:b451", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22385", + "@id": "_:b15636", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10739", + "@id": "_:b455", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25846", + "@id": "_:b20742", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10740", + "@id": "_:b452", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26376", + "@id": "_:b23847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10742", + "@id": "_:b453", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "result": { - "@id": "_:b25661", + "@id": "_:b23778", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10736", + "@id": "_:b448", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17280", + "@id": "_:b14386", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10737", + "@id": "_:b449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10817", + "@id": "_:b19928", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10743", + "@id": "_:b450", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", + "mode": "earl:automatic", "result": { - "@id": "_:b14658", + "@id": "_:b23846", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10733", + "@id": "_:b456", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "result": { - "@id": "_:b10734", + "@id": "_:b23848", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10744", + "@id": "_:b454", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", "result": { - "@id": "_:b25781", + "@id": "_:b23366", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e011-out.nq", + "title": "coerced @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e011-in.jsonld", + "rdfs:comment": "RDF version of expand-0011" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13583", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c003-out.jsonld", - "title": "property and value with different terms mapping to the same expanded property", - "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c003-context.jsonld" - }, "assertions": [ { - "@id": "_:b13582", + "@id": "_:b16415", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "result": { - "@id": "_:b3994", + "@id": "_:b18400", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13589", + "@id": "_:b16419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24712", + "@id": "_:b25203", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13584", + "@id": "_:b16420", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17185", + "@id": "_:b20286", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13585", + "@id": "_:b16422", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8332", + "@id": "_:b22511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13592", + "@id": "_:b16416", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "result": { - "@id": "_:b10363", + "@id": "_:b21394", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13587", + "@id": "_:b16418", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24519", + "@id": "_:b12277", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13588", + "@id": "_:b16423", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24711", + "@id": "_:b19691", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13591", + "@id": "_:b16417", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", + "mode": "earl:automatic", "result": { - "@id": "_:b23535", + "@id": "_:b16472", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13590", + "@id": "_:b16414", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "result": { - "@id": "_:b15689", + "@id": "_:b6845", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13586", + "@id": "_:b16421", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", "result": { - "@id": "_:b20532", + "@id": "_:b20300", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e012-out.nq", + "title": "@graph with embed", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e012-in.jsonld", + "rdfs:comment": "RDF version of expand-0012" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19546", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c004-out.jsonld", - "title": "deep @context affects nested nodes", - "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c004-context.jsonld" - }, "assertions": [ { - "@id": "_:b19555", + "@id": "_:b12778", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "result": { - "@id": "_:b21202", + "@id": "_:b22633", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19544", + "@id": "_:b12773", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19545", + "@id": "_:b23835", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19550", + "@id": "_:b12771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21198", + "@id": "_:b20611", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19553", + "@id": "_:b12777", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21201", + "@id": "_:b24255", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19548", + "@id": "_:b12772", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "result": { - "@id": "_:b21196", + "@id": "_:b23044", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19547", + "@id": "_:b12776", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21195", + "@id": "_:b24254", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19554", + "@id": "_:b12768", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13775", + "@id": "_:b12769", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19549", + "@id": "_:b12774", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", + "mode": "earl:automatic", "result": { - "@id": "_:b21197", + "@id": "_:b24253", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19551", + "@id": "_:b12775", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "result": { - "@id": "_:b21199", + "@id": "_:b24167", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19552", + "@id": "_:b12770", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", "result": { - "@id": "_:b21200", + "@id": "_:b15410", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e013-out.nq", + "title": "expand already expanded", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e013-in.jsonld", + "rdfs:comment": "RDF version of expand-0013" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6348", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c005-out.jsonld", - "title": "scoped context layers on intemediate contexts", - "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c005-context.jsonld" - }, "assertions": [ { - "@id": "_:b6350", + "@id": "_:b5670", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "result": { - "@id": "_:b23966", + "@id": "_:b21039", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6356", + "@id": "_:b5667", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26183", + "@id": "_:b11842", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6352", + "@id": "_:b5675", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25595", + "@id": "_:b19441", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6351", + "@id": "_:b5669", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24819", + "@id": "_:b11085", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6354", + "@id": "_:b5666", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "result": { - "@id": "_:b26197", + "@id": "_:b7378", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6349", + "@id": "_:b5673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21392", + "@id": "_:b21041", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6355", + "@id": "_:b5668", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26448", + "@id": "_:b17668", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6357", + "@id": "_:b5674", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", + "mode": "earl:automatic", "result": { - "@id": "_:b23841", + "@id": "_:b21042", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6346", + "@id": "_:b5671", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "result": { - "@id": "_:b6347", + "@id": "_:b21040", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6353", + "@id": "_:b5672", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", "result": { - "@id": "_:b25834", + "@id": "_:b7026", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e015-out.nq", + "title": "collapse set of sets, keep empty lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e015-in.jsonld", + "rdfs:comment": "RDF version of expand-0015" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15097", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c006-out.jsonld", - "title": "adding new term", - "rdfs:comment": "scoped context on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c006-context.jsonld" - }, "assertions": [ { - "@id": "_:b15101", + "@id": "_:b2729", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "result": { - "@id": "_:b25346", + "@id": "_:b21295", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15105", + "@id": "_:b2730", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26266", + "@id": "_:b9629", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15099", + "@id": "_:b2733", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19624", + "@id": "_:b23689", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15106", + "@id": "_:b2736", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23701", + "@id": "_:b21482", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15104", + "@id": "_:b2737", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "result": { - "@id": "_:b26372", + "@id": "_:b25307", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15095", + "@id": "_:b2731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15096", + "@id": "_:b22668", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15100", + "@id": "_:b2727", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23623", + "@id": "_:b2728", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15102", + "@id": "_:b2734", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", + "mode": "earl:automatic", "result": { - "@id": "_:b26900", + "@id": "_:b16043", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15103", + "@id": "_:b2735", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "result": { - "@id": "_:b26279", + "@id": "_:b25320", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15098", + "@id": "_:b2732", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", "result": { - "@id": "_:b20769", + "@id": "_:b20668", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e016-out.nq", + "title": "context reset", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e016-in.jsonld", + "rdfs:comment": "RDF version of expand-0016" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4011", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c007-out.jsonld", - "title": "overriding a term", - "rdfs:comment": "scoped context on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c007-context.jsonld" - }, "assertions": [ { - "@id": "_:b4019", + "@id": "_:b7301", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "result": { - "@id": "_:b19843", + "@id": "_:b20342", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4014", + "@id": "_:b7303", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20203", + "@id": "_:b22797", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4009", + "@id": "_:b7306", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4010", + "@id": "_:b22799", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4018", + "@id": "_:b7302", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23824", + "@id": "_:b21921", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4013", + "@id": "_:b7307", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "result": { - "@id": "_:b11136", + "@id": "_:b22800", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4017", + "@id": "_:b7298", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15991", + "@id": "_:b7299", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4012", + "@id": "_:b7308", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18220", + "@id": "_:b10230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4020", + "@id": "_:b7305", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", + "mode": "earl:automatic", "result": { - "@id": "_:b23825", + "@id": "_:b22798", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4015", + "@id": "_:b7304", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "result": { - "@id": "_:b23823", + "@id": "_:b20333", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4016", + "@id": "_:b7300", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", "result": { - "@id": "_:b11484", + "@id": "_:b16387", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e017-out.nq", + "title": "@graph and @id aliased", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e017-in.jsonld", + "rdfs:comment": "RDF version of expand-0017" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19487", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c008-out.jsonld", - "title": "alias of @type", - "rdfs:comment": "scoped context on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c008-context.jsonld" - }, "assertions": [ { - "@id": "_:b19496", + "@id": "_:b2718", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "result": { - "@id": "_:b21298", + "@id": "_:b16253", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19485", + "@id": "_:b2722", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19486", + "@id": "_:b16256", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19490", + "@id": "_:b2723", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24039", + "@id": "_:b7684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19488", + "@id": "_:b2713", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20421", + "@id": "_:b2714", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19491", + "@id": "_:b2719", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "result": { - "@id": "_:b26026", + "@id": "_:b14798", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19493", + "@id": "_:b2721", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26028", + "@id": "_:b16255", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19495", + "@id": "_:b2717", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20039", + "@id": "_:b14599", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19489", + "@id": "_:b2716", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", + "mode": "earl:automatic", "result": { - "@id": "_:b22845", + "@id": "_:b3477", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19494", + "@id": "_:b2715", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "result": { - "@id": "_:b26029", + "@id": "_:b13033", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19492", + "@id": "_:b2720", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", "result": { - "@id": "_:b26027", + "@id": "_:b16254", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e018-out.nq", + "title": "override default @language", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e018-in.jsonld", + "rdfs:comment": "RDF version of expand-0018" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6374", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c009-out.jsonld", - "title": "deep @type-scoped @context does NOT affect nested nodes", - "rdfs:comment": "scoped context on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c009-context.jsonld" - }, "assertions": [ { - "@id": "_:b6383", + "@id": "_:b12549", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "result": { - "@id": "_:b21209", + "@id": "_:b26666", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6382", + "@id": "_:b12548", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21208", + "@id": "_:b26023", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6380", + "@id": "_:b12545", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21206", + "@id": "_:b15914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6378", + "@id": "_:b12547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21205", + "@id": "_:b25220", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6375", + "@id": "_:b12551", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "result": { - "@id": "_:b15136", + "@id": "_:b13102", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6376", + "@id": "_:b12544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21203", + "@id": "_:b20619", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6377", + "@id": "_:b12543", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21204", + "@id": "_:b18539", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6381", + "@id": "_:b12546", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", + "mode": "earl:automatic", "result": { - "@id": "_:b21207", + "@id": "_:b23469", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6379", + "@id": "_:b12550", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "result": { - "@id": "_:b11693", + "@id": "_:b20570", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6372", + "@id": "_:b12541", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", "result": { - "@id": "_:b6373", + "@id": "_:b12542", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e019-out.nq", + "title": "remove @value = null", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e019-in.jsonld", + "rdfs:comment": "RDF version of expand-0019" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10715", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c010-out.jsonld", - "title": "scoped context layers on intemediate contexts", - "rdfs:comment": "scoped context on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c010-context.jsonld" - }, "assertions": [ { - "@id": "_:b10721", + "@id": "_:b17325", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "result": { - "@id": "_:b24391", + "@id": "_:b9907", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10720", + "@id": "_:b17319", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19377", + "@id": "_:b25025", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10717", + "@id": "_:b17318", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22034", + "@id": "_:b24315", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10719", + "@id": "_:b17323", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18160", + "@id": "_:b26358", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10723", + "@id": "_:b17321", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "result": { - "@id": "_:b24393", + "@id": "_:b26357", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10722", + "@id": "_:b17315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24392", + "@id": "_:b17316", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10724", + "@id": "_:b17322", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24394", + "@id": "_:b22294", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10718", + "@id": "_:b17320", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", + "mode": "earl:automatic", "result": { - "@id": "_:b15650", + "@id": "_:b25736", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10716", + "@id": "_:b17324", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "result": { - "@id": "_:b18396", + "@id": "_:b26359", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10713", + "@id": "_:b17317", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", "result": { - "@id": "_:b10714", + "@id": "_:b18508", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e020-out.nq", + "title": "do not remove @graph if not at top-level", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e020-in.jsonld", + "rdfs:comment": "Embedded @graph without @id creates BNode-labeled named graph (from expand-0020)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19349", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c011-out.jsonld", - "title": "applies context for all values", - "rdfs:comment": "scoped context on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c011-context.jsonld" - }, "assertions": [ { - "@id": "_:b19356", + "@id": "_:b11397", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "result": { - "@id": "_:b21568", + "@id": "_:b26441", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19355", + "@id": "_:b11394", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26693", + "@id": "_:b7248", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19357", + "@id": "_:b11399", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b27017", + "@id": "_:b26188", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19358", + "@id": "_:b11401", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17920", + "@id": "_:b26206", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19352", + "@id": "_:b11392", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "result": { - "@id": "_:b25228", + "@id": "_:b11393", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19350", + "@id": "_:b11396", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21387", + "@id": "_:b25852", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19353", + "@id": "_:b11395", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22057", + "@id": "_:b22807", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19348", + "@id": "_:b11402", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", + "mode": "earl:automatic", "result": { - "@id": "_:b10243", + "@id": "_:b25758", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19354", + "@id": "_:b11398", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "result": { - "@id": "_:b19785", + "@id": "_:b21587", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19351", + "@id": "_:b11400", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", "result": { - "@id": "_:b23442", + "@id": "_:b11989", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e021-out.nq", + "title": "do not remove @graph at top-level if not only property", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e021-in.jsonld", + "rdfs:comment": "RDF version of expand-0021" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17820", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c012-out.jsonld", - "title": "orders @type terms when applying scoped contexts", - "rdfs:comment": "scoped context on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c012-context.jsonld" - }, "assertions": [ { - "@id": "_:b17824", + "@id": "_:b4948", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "result": { - "@id": "_:b22767", + "@id": "_:b21558", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17821", + "@id": "_:b4947", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22198", + "@id": "_:b7705", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17829", + "@id": "_:b4945", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22772", + "@id": "_:b4946", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17826", + "@id": "_:b4953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22769", + "@id": "_:b24625", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17828", + "@id": "_:b4955", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "result": { - "@id": "_:b22771", + "@id": "_:b24626", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17825", + "@id": "_:b4950", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22768", + "@id": "_:b24116", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17827", + "@id": "_:b4952", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22770", + "@id": "_:b1565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17822", + "@id": "_:b4951", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", + "mode": "earl:automatic", "result": { - "@id": "_:b22765", + "@id": "_:b23571", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17823", + "@id": "_:b4954", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "result": { - "@id": "_:b22766", + "@id": "_:b7047", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17818", + "@id": "_:b4949", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", "result": { - "@id": "_:b17819", + "@id": "_:b24624", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e022-out.nq", + "title": "expand value with default language", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e022-in.jsonld", + "rdfs:comment": "RDF version of expand-0022" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7740", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c013-out.jsonld", - "title": "deep property-term scoped @context in @type-scoped @context affects nested nodes", - "rdfs:comment": "scoped context on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c013-context.jsonld" - }, "assertions": [ { - "@id": "_:b7745", + "@id": "_:b9726", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "result": { - "@id": "_:b23763", + "@id": "_:b22747", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7742", + "@id": "_:b9719", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20371", + "@id": "_:b10563", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7738", + "@id": "_:b9722", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7739", + "@id": "_:b22380", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7743", + "@id": "_:b9725", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23691", + "@id": "_:b26364", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7749", + "@id": "_:b9720", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "result": { - "@id": "_:b9232", + "@id": "_:b18739", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7744", + "@id": "_:b9723", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23762", + "@id": "_:b22756", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7747", + "@id": "_:b9727", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23764", + "@id": "_:b25827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7741", + "@id": "_:b9721", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", + "mode": "earl:automatic", "result": { - "@id": "_:b18207", + "@id": "_:b19979", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7746", + "@id": "_:b9717", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "result": { - "@id": "_:b21596", + "@id": "_:b9718", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7748", + "@id": "_:b9724", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", "result": { - "@id": "_:b23765", + "@id": "_:b23795", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e023-out.nq", + "title": "Lists and sets of properties with list/set coercion", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e023-in.jsonld", + "rdfs:comment": "RDF version of expand-0023" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2202", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c014-out.jsonld", - "title": "type-scoped context nullification", - "rdfs:comment": "Nullifying a type-scoped context continues to use the previous context when compacting @type.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c014-context.jsonld" - }, "assertions": [ { - "@id": "_:b2210", + "@id": "_:b11376", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "result": { - "@id": "_:b21310", + "@id": "_:b22459", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2204", + "@id": "_:b11367", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2302", + "@id": "_:b11368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2207", + "@id": "_:b11372", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21307", + "@id": "_:b24738", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2209", + "@id": "_:b11373", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21309", + "@id": "_:b10608", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2205", + "@id": "_:b11370", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "result": { - "@id": "_:b21306", + "@id": "_:b22998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2203", + "@id": "_:b11369", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21305", + "@id": "_:b17650", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2200", + "@id": "_:b11377", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2201", + "@id": "_:b24740", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2206", + "@id": "_:b11374", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", + "mode": "earl:automatic", "result": { - "@id": "_:b19953", + "@id": "_:b24739", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2211", + "@id": "_:b11375", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "result": { - "@id": "_:b21311", + "@id": "_:b17138", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2208", + "@id": "_:b11371", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", "result": { - "@id": "_:b21308", + "@id": "_:b10916", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e024-out.nq", + "title": "Multiple contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e024-in.jsonld", + "rdfs:comment": "RDF version of expand-0024" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b408", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c015-out.jsonld", - "title": "type-scoped base", - "rdfs:comment": "type-scoped base", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c015-context.jsonld" - }, "assertions": [ { - "@id": "_:b412", + "@id": "_:b2457", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "result": { - "@id": "_:b422", + "@id": "_:b19161", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b416", + "@id": "_:b2451", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b426", + "@id": "_:b9928", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b413", + "@id": "_:b2449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b423", + "@id": "_:b2450", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b414", + "@id": "_:b2454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b424", + "@id": "_:b11982", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b415", + "@id": "_:b2456", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "result": { - "@id": "_:b425", + "@id": "_:b19160", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b417", + "@id": "_:b2458", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b427", + "@id": "_:b19162", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b409", + "@id": "_:b2452", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b419", + "@id": "_:b7804", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b411", + "@id": "_:b2459", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", + "mode": "earl:automatic", "result": { - "@id": "_:b421", + "@id": "_:b5643", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b410", + "@id": "_:b2453", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "result": { - "@id": "_:b420", + "@id": "_:b19158", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b418", + "@id": "_:b2455", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", "result": { - "@id": "_:b428", + "@id": "_:b19159", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e025-out.nq", + "title": "Problematic IRI expansion tests", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e025-in.jsonld", + "rdfs:comment": "RDF version of expand-0025" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2436", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c016-out.jsonld", - "title": "type-scoped vocab", - "rdfs:comment": "type-scoped vocab", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c016-context.jsonld" - }, "assertions": [ { - "@id": "_:b2441", + "@id": "_:b15356", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "result": { - "@id": "_:b23568", + "@id": "_:b3449", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2444", + "@id": "_:b15360", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24760", + "@id": "_:b15368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2439", + "@id": "_:b15362", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24758", + "@id": "_:b15370", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2445", + "@id": "_:b15363", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4359", + "@id": "_:b15371", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2438", + "@id": "_:b15358", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "result": { - "@id": "_:b23428", + "@id": "_:b15367", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2440", + "@id": "_:b15355", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22748", + "@id": "_:b15365", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2443", + "@id": "_:b15361", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24759", + "@id": "_:b15369", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2434", + "@id": "_:b15357", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", + "mode": "earl:automatic", "result": { - "@id": "_:b2435", + "@id": "_:b15366", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2442", + "@id": "_:b15359", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "result": { - "@id": "_:b9555", + "@id": "_:b5739", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2437", + "@id": "_:b15354", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", "result": { - "@id": "_:b12050", + "@id": "_:b15364", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e027-out.nq", + "title": "Keep duplicate values in @list and @set", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e027-in.jsonld", + "rdfs:comment": "RDF version of expand-0027" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15465", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c017-out.jsonld", - "title": "multiple type-scoped contexts are properly reverted", - "rdfs:comment": "multiple type-scoped contexts are property reverted", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c017-context.jsonld" - }, "assertions": [ { - "@id": "_:b15470", + "@id": "_:b6505", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "result": { - "@id": "_:b23465", + "@id": "_:b2287", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15466", + "@id": "_:b6510", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17073", + "@id": "_:b16493", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15463", + "@id": "_:b6509", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15464", + "@id": "_:b16492", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15468", + "@id": "_:b6508", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19634", + "@id": "_:b16491", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15471", + "@id": "_:b6511", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "result": { - "@id": "_:b23917", + "@id": "_:b16494", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15469", + "@id": "_:b6507", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25986", + "@id": "_:b16490", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15474", + "@id": "_:b6506", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22493", + "@id": "_:b16489", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15472", + "@id": "_:b6504", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", + "mode": "earl:automatic", "result": { - "@id": "_:b26916", + "@id": "_:b16488", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15467", + "@id": "_:b6503", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "result": { - "@id": "_:b24585", + "@id": "_:b14479", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15473", + "@id": "_:b6501", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", "result": { - "@id": "_:b24138", + "@id": "_:b6502", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e028-out.nq", + "title": "Use @vocab in properties and @type but not in @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e028-in.jsonld", + "rdfs:comment": "RDF version of expand-0028" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21210", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c018-out.jsonld", - "title": "multiple type-scoped types resolved against previous context", - "rdfs:comment": "multiple type-scoped types resolved against previous context", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c018-context.jsonld" - }, "assertions": [ { - "@id": "_:b21212", + "@id": "_:b12614", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "result": { - "@id": "_:b15436", + "@id": "_:b24048", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://kasei.us/about/#greg" }, { - "@id": "_:b21211", + "@id": "_:b12610", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21221", + "@id": "_:b12611", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21217", + "@id": "_:b12615", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21225", + "@id": "_:b20146", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21213", + "@id": "_:b12612", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21222", + "@id": "_:b15751", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21220", + "@id": "_:b12618", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "result": { - "@id": "_:b13596", + "@id": "_:b24828", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21214", + "@id": "_:b12616", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19928", + "@id": "_:b24827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21219", + "@id": "_:b12620", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21226", + "@id": "_:b24340", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21216", + "@id": "_:b12617", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", + "mode": "earl:automatic", "result": { - "@id": "_:b21224", + "@id": "_:b24718", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b21215", + "@id": "_:b12619", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "result": { - "@id": "_:b21223", + "@id": "_:b18639", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21218", + "@id": "_:b12613", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", "result": { - "@id": "_:b19107", + "@id": "_:b21445", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e029-out.nq", + "title": "Relative IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e029-in.jsonld", + "rdfs:comment": "RDF version of expand-0029" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12641", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c019-out.jsonld", - "title": "type-scoped context with multiple property scoped terms", - "rdfs:comment": "type-scoped context with multiple property scoped terms", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c019-context.jsonld" - }, "assertions": [ { - "@id": "_:b12792", + "@id": "_:b5663", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "result": { - "@id": "_:b24718", + "@id": "_:b24923", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12787", + "@id": "_:b5660", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22400", + "@id": "_:b14476", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12790", + "@id": "_:b5658", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25270", + "@id": "_:b9857", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12791", + "@id": "_:b5657", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21592", + "@id": "_:b3996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12783", + "@id": "_:b5664", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "result": { - "@id": "_:b12784", + "@id": "_:b18336", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12789", + "@id": "_:b5659", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19294", + "@id": "_:b13030", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12785", + "@id": "_:b5655", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13925", + "@id": "_:b5656", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12793", + "@id": "_:b5662", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", + "mode": "earl:automatic", "result": { - "@id": "_:b26801", + "@id": "_:b22600", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12788", + "@id": "_:b5661", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "result": { - "@id": "_:b6414", + "@id": "_:b20458", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12786", + "@id": "_:b5665", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", "result": { - "@id": "_:b20339", + "@id": "_:b18375", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e030-out.nq", + "title": "Language maps", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e030-in.jsonld", + "rdfs:comment": "RDF version of expand-0030" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7566", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c020-out.jsonld", - "title": "type-scoped value", - "rdfs:comment": "type-scoped value", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c020-context.jsonld" - }, "assertions": [ { - "@id": "_:b7573", + "@id": "_:b10806", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "result": { - "@id": "_:b17256", + "@id": "_:b22794", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7564", + "@id": "_:b10805", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7565", + "@id": "_:b15450", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7572", + "@id": "_:b10804", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16320", + "@id": "_:b19319", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7568", + "@id": "_:b10801", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21100", + "@id": "_:b10802", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7569", + "@id": "_:b10811", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "result": { - "@id": "_:b20538", + "@id": "_:b26874", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7574", + "@id": "_:b10808", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24106", + "@id": "_:b3021", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7570", + "@id": "_:b10807", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24954", + "@id": "_:b26671", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7571", + "@id": "_:b10809", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", + "mode": "earl:automatic", "result": { - "@id": "_:b7579", + "@id": "_:b22290", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7567", + "@id": "_:b10803", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "result": { - "@id": "_:b12321", + "@id": "_:b18253", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7575", + "@id": "_:b10810", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", "result": { - "@id": "_:b24184", + "@id": "_:b22409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e031-out.nq", + "title": "type-coercion of native types", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e031-in.jsonld", + "rdfs:comment": "RDF version of expand-0031" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9363", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c021-out.jsonld", - "title": "type-scoped value mix", - "rdfs:comment": "type-scoped value mix", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c021-context.jsonld" - }, "assertions": [ { - "@id": "_:b9370", + "@id": "_:b10544", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "result": { - "@id": "_:b5551", + "@id": "_:b14165", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9367", + "@id": "_:b10537", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22119", + "@id": "_:b11364", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9365", + "@id": "_:b10538", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19053", + "@id": "_:b14159", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9368", + "@id": "_:b10540", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25628", + "@id": "_:b14161", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9372", + "@id": "_:b10545", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "result": { - "@id": "_:b8845", + "@id": "_:b14166", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9371", + "@id": "_:b10539", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22123", + "@id": "_:b14160", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9369", + "@id": "_:b10542", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9482", + "@id": "_:b14163", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9364", + "@id": "_:b10541", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", + "mode": "earl:automatic", "result": { - "@id": "_:b14423", + "@id": "_:b14162", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9366", + "@id": "_:b10543", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "result": { - "@id": "_:b23146", + "@id": "_:b14164", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9361", + "@id": "_:b10535", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", "result": { - "@id": "_:b9362", + "@id": "_:b10536", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e032-out.nq", + "title": "Mapping a term to null decouples it from @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e032-in.jsonld", + "rdfs:comment": "RDF version of expand-0032" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9826", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c022-out.jsonld", - "title": "type-scoped property-scoped contexts including @type:@vocab", - "rdfs:comment": "type-scoped property-scoped contexts including @type:@vocab", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c022-context.jsonld" - }, "assertions": [ { - "@id": "_:b14481", + "@id": "_:b12930", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "result": { - "@id": "_:b14491", + "@id": "_:b20540", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14487", + "@id": "_:b12921", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14495", + "@id": "_:b12922", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14479", + "@id": "_:b12924", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14489", + "@id": "_:b23221", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14484", + "@id": "_:b12931", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14494", + "@id": "_:b26076", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14482", + "@id": "_:b12927", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "result": { - "@id": "_:b14492", + "@id": "_:b24888", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14486", + "@id": "_:b12926", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12770", + "@id": "_:b26486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14485", + "@id": "_:b12929", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8968", + "@id": "_:b26845", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14480", + "@id": "_:b12925", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", + "mode": "earl:automatic", "result": { - "@id": "_:b14490", + "@id": "_:b26255", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14488", + "@id": "_:b12923", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "result": { - "@id": "_:b14496", + "@id": "_:b21439", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14483", + "@id": "_:b12928", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", "result": { - "@id": "_:b14493", + "@id": "_:b15153", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e033-out.nq", + "title": "Using @vocab with with type-coercion", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e033-in.jsonld", + "rdfs:comment": "RDF version of expand-0033" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8137", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c023-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c023-out.jsonld", - "title": "composed type-scoped property-scoped contexts including @type:@vocab", - "rdfs:comment": "composed type-scoped property-scoped contexts including @type:@vocab", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c023-context.jsonld" - }, "assertions": [ { - "@id": "_:b8144", + "@id": "_:b15031", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "result": { - "@id": "_:b14168", + "@id": "_:b15032", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8143", + "@id": "_:b15035", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14167", + "@id": "_:b22922", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8142", + "@id": "_:b15036", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14166", + "@id": "_:b14059", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8139", + "@id": "_:b15037", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14163", + "@id": "_:b23147", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8135", + "@id": "_:b15041", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "result": { - "@id": "_:b8136", + "@id": "_:b23149", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8138", + "@id": "_:b15033", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10198", + "@id": "_:b16693", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8146", + "@id": "_:b15038", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14170", + "@id": "_:b23148", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8140", + "@id": "_:b15039", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", + "mode": "earl:automatic", "result": { - "@id": "_:b14164", + "@id": "_:b21941", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8141", + "@id": "_:b15040", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "result": { - "@id": "_:b14165", + "@id": "_:b11506", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8145", + "@id": "_:b15034", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", "result": { - "@id": "_:b14169", + "@id": "_:b19235", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e034-out.nq", + "title": "Multiple properties expanding to the same IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e034-in.jsonld", + "rdfs:comment": "RDF version of expand-0034" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5438", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c024-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c024-out.jsonld", - "title": "type-scoped + property-scoped + values evaluates against previous context", - "rdfs:comment": "type-scoped + property-scoped + values evaluates against previous context", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c024-context.jsonld" - }, "assertions": [ { - "@id": "_:b5446", + "@id": "_:b7295", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "result": { - "@id": "_:b14362", + "@id": "_:b26979", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5445", + "@id": "_:b7287", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16552", + "@id": "_:b7288", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5443", + "@id": "_:b7289", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18763", + "@id": "_:b14285", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5441", + "@id": "_:b7296", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26169", + "@id": "_:b25922", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5447", + "@id": "_:b7297", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "result": { - "@id": "_:b26832", + "@id": "_:b25540", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5440", + "@id": "_:b7290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24790", + "@id": "_:b11129", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5444", + "@id": "_:b7291", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26831", + "@id": "_:b23663", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5442", + "@id": "_:b7292", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", + "mode": "earl:automatic", "result": { - "@id": "_:b13468", + "@id": "_:b20697", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5439", + "@id": "_:b7294", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "result": { - "@id": "_:b15715", + "@id": "_:b25958", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5436", + "@id": "_:b7293", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", "result": { - "@id": "_:b5437", + "@id": "_:b7805", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e035-out.nq", + "title": "Language maps with @vocab, default language, and colliding property", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e035-in.jsonld", + "rdfs:comment": "RDF version of expand-0035" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5012", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c025-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c025-out.jsonld", - "title": "type-scoped + graph container", - "rdfs:comment": "type-scoped + graph container", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c025-context.jsonld" - }, "assertions": [ { - "@id": "_:b5021", + "@id": "_:b16714", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "result": { - "@id": "_:b18527", + "@id": "_:b25820", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5015", + "@id": "_:b16711", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23067", + "@id": "_:b18086", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5010", + "@id": "_:b16709", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5011", + "@id": "_:b19890", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5019", + "@id": "_:b16715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26943", + "@id": "_:b19114", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5020", + "@id": "_:b16713", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "result": { - "@id": "_:b11872", + "@id": "_:b22407", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5013", + "@id": "_:b16716", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10530", + "@id": "_:b25821", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5016", + "@id": "_:b16712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22754", + "@id": "_:b24062", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5014", + "@id": "_:b16717", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", + "mode": "earl:automatic", "result": { - "@id": "_:b18388", + "@id": "_:b14058", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5018", + "@id": "_:b16710", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "result": { - "@id": "_:b26548", + "@id": "_:b22840", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5017", + "@id": "_:b16707", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", "result": { - "@id": "_:b25460", + "@id": "_:b16708", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e036-out.nq", + "title": "Expanding @index", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e036-in.jsonld", + "rdfs:comment": "RDF version of expand-0036" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12187", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c026-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c026-out.jsonld", - "title": "@propagate: true on type-scoped context", - "rdfs:comment": "type-scoped context with @propagate: true survive node-objects", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c026-context.jsonld" - }, "assertions": [ { - "@id": "_:b12194", + "@id": "_:b17869", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "result": { - "@id": "_:b24371", + "@id": "_:b24004", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12192", + "@id": "_:b17868", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24040", + "@id": "_:b24425", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12185", + "@id": "_:b17867", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12186", + "@id": "_:b24502", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12189", + "@id": "_:b17865", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13282", + "@id": "_:b22085", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12196", + "@id": "_:b17863", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "result": { - "@id": "_:b20778", + "@id": "_:b7044", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12193", + "@id": "_:b17864", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24247", + "@id": "_:b20719", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12195", + "@id": "_:b17871", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24890", + "@id": "_:b22405", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12191", + "@id": "_:b17870", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", + "mode": "earl:automatic", "result": { - "@id": "_:b22937", + "@id": "_:b21440", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12188", + "@id": "_:b17866", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "result": { - "@id": "_:b21096", + "@id": "_:b22905", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12190", + "@id": "_:b17872", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", "result": { - "@id": "_:b22355", + "@id": "_:b26557", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e037-out.nq", + "title": "Expanding @reverse", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e037-in.jsonld", + "rdfs:comment": "RDF version of expand-0037" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2892", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c027-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c027-out.jsonld", - "title": "@propagate: false on property-scoped context", - "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/c027-context.jsonld" - }, "assertions": [ { - "@id": "_:b2893", + "@id": "_:b21073", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "result": { - "@id": "_:b12742", + "@id": "_:b23715", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2900", + "@id": "_:b21071", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15166", + "@id": "_:b2824", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2894", + "@id": "_:b21076", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20345", + "@id": "_:b23718", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2898", + "@id": "_:b21075", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17235", + "@id": "_:b23717", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2890", + "@id": "_:b21068", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "result": { - "@id": "_:b2891", + "@id": "_:b7555", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2899", + "@id": "_:b21074", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19121", + "@id": "_:b23716", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2897", + "@id": "_:b21070", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26472", + "@id": "_:b23713", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2901", + "@id": "_:b21072", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", + "mode": "earl:automatic", "result": { - "@id": "_:b10563", + "@id": "_:b23714", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2896", + "@id": "_:b21077", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "result": { - "@id": "_:b25542", + "@id": "_:b23719", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2895", + "@id": "_:b21069", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", "result": { - "@id": "_:b4289", + "@id": "_:b22351", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e039-out.nq", + "title": "Using terms in a reverse-maps", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e039-in.jsonld", + "rdfs:comment": "RDF version of expand-0039" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5216", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di01-out.jsonld", - "title": "term direction null", - "rdfs:comment": "Uses term with null direction when two terms conflict on direction.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/di01-context.jsonld" - }, "assertions": [ { - "@id": "_:b5220", + "@id": "_:b12240", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "result": { - "@id": "_:b23207", + "@id": "_:b20213", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5218", + "@id": "_:b12245", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22473", + "@id": "_:b25881", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5224", + "@id": "_:b12248", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17711", + "@id": "_:b19068", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5219", + "@id": "_:b12243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4132", + "@id": "_:b25880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5222", + "@id": "_:b12244", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "result": { - "@id": "_:b23208", + "@id": "_:b16770", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5217", + "@id": "_:b12242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15418", + "@id": "_:b25879", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5214", + "@id": "_:b12238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5215", + "@id": "_:b12239", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5223", + "@id": "_:b12241", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", + "mode": "earl:automatic", "result": { - "@id": "_:b23209", + "@id": "_:b21604", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5225", + "@id": "_:b12246", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "result": { - "@id": "_:b23210", + "@id": "_:b25882", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5221", + "@id": "_:b12247", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", "result": { - "@id": "_:b22992", + "@id": "_:b21598", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e040-out.nq", + "title": "language and index expansion on non-objects", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e040-in.jsonld", + "rdfs:comment": "RDF version of expand-0040" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8497", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di02-out.jsonld", - "title": "use alias of @direction", - "rdfs:comment": "Use alias of @direction.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/di02-context.jsonld" - }, "assertions": [ { - "@id": "_:b8499", + "@id": "_:b3698", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "result": { - "@id": "_:b20127", + "@id": "_:b24180", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8501", + "@id": "_:b3700", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26561", + "@id": "_:b21936", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8500", + "@id": "_:b3693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25523", + "@id": "_:b3694", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8503", + "@id": "_:b3702", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26848", + "@id": "_:b26058", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8506", + "@id": "_:b3697", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "result": { - "@id": "_:b26459", + "@id": "_:b23235", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8502", + "@id": "_:b3696", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26651", + "@id": "_:b23074", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8504", + "@id": "_:b3699", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6386", + "@id": "_:b2289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8495", + "@id": "_:b3695", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", + "mode": "earl:automatic", "result": { - "@id": "_:b8496", + "@id": "_:b16202", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8498", + "@id": "_:b3701", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "result": { - "@id": "_:b15917", + "@id": "_:b27016", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8505", + "@id": "_:b3703", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", "result": { - "@id": "_:b6640", + "@id": "_:b7669", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e041-out.nq", + "title": "Reset the default language", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e041-in.jsonld", + "rdfs:comment": "RDF version of expand-0041" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15568", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di03-out.jsonld", - "title": "term selection with lists and direction", - "rdfs:comment": "Term selection includes values of @list.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/di03-context.jsonld" - }, "assertions": [ { - "@id": "_:b22141", + "@id": "_:b11288", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "result": { - "@id": "_:b23500", + "@id": "_:b20344", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22138", + "@id": "_:b11292", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25767", + "@id": "_:b24686", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22137", + "@id": "_:b11293", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24645", + "@id": "_:b14692", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22134", + "@id": "_:b11287", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21327", + "@id": "_:b19306", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22139", + "@id": "_:b11289", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "result": { - "@id": "_:b26887", + "@id": "_:b22870", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22135", + "@id": "_:b11290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17844", + "@id": "_:b13878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22140", + "@id": "_:b11296", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25822", + "@id": "_:b12163", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22131", + "@id": "_:b11291", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", + "mode": "earl:automatic", "result": { - "@id": "_:b22132", + "@id": "_:b24685", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b22136", + "@id": "_:b11294", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "result": { - "@id": "_:b21708", + "@id": "_:b21017", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22133", + "@id": "_:b11295", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", "result": { - "@id": "_:b23730", + "@id": "_:b19835", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e042-out.nq", + "title": "Expanding reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e042-in.jsonld", + "rdfs:comment": "RDF version of expand-0042" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1788", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di04-out.jsonld", - "title": "simple language map with term direction", - "rdfs:comment": "Term selection with language maps and @direction.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/di04-context.jsonld" - }, "assertions": [ { - "@id": "_:b1794", + "@id": "_:b12026", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "result": { - "@id": "_:b26315", + "@id": "_:b22348", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1786", + "@id": "_:b12021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1787", + "@id": "_:b22345", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1789", + "@id": "_:b12017", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10178", + "@id": "_:b12018", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1796", + "@id": "_:b12022", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11088", + "@id": "_:b22188", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1795", + "@id": "_:b12025", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "result": { - "@id": "_:b26316", + "@id": "_:b22347", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1793", + "@id": "_:b12019", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13397", + "@id": "_:b15353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1790", + "@id": "_:b12027", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24207", + "@id": "_:b22349", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1791", + "@id": "_:b12020", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", + "mode": "earl:automatic", "result": { - "@id": "_:b1618", + "@id": "_:b20795", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1792", + "@id": "_:b12023", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "result": { - "@id": "_:b18529", + "@id": "_:b22346", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1797", + "@id": "_:b12024", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", "result": { - "@id": "_:b11899", + "@id": "_:b21979", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e043-out.nq", + "title": "Using reverse properties inside a @reverse-container", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e043-in.jsonld", + "rdfs:comment": "RDF version of expand-0043" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3185", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di05-out.jsonld", - "title": "simple language map with overriding term direction", - "rdfs:comment": "Term selection with language maps and @direction.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/di05-context.jsonld" - }, "assertions": [ { - "@id": "_:b3187", + "@id": "_:b20059", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "result": { - "@id": "_:b12922", + "@id": "_:b26640", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3186", + "@id": "_:b20058", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12481", + "@id": "_:b9273", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3190", + "@id": "_:b20056", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12925", + "@id": "_:b16352", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3191", + "@id": "_:b20061", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12926", + "@id": "_:b24823", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3192", + "@id": "_:b20055", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "result": { - "@id": "_:b12927", + "@id": "_:b23143", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3193", + "@id": "_:b20057", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12928", + "@id": "_:b26017", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3189", + "@id": "_:b20054", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12924", + "@id": "_:b20439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3194", + "@id": "_:b20053", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", + "mode": "earl:automatic", "result": { - "@id": "_:b12929", + "@id": "_:b13807", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3183", + "@id": "_:b20060", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "result": { - "@id": "_:b3184", + "@id": "_:b26888", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3188", + "@id": "_:b20062", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", "result": { - "@id": "_:b12923", + "@id": "_:b26274", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e044-out.nq", + "title": "Ensure index maps use language mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e044-in.jsonld", + "rdfs:comment": "RDF version of expand-0044" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10567", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di06-out.jsonld", - "title": "simple language map with overriding null direction", - "rdfs:comment": "Term selection with language maps and @direction.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/di06-context.jsonld" - }, "assertions": [ { - "@id": "_:b10565", + "@id": "_:b17482", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "result": { - "@id": "_:b10566", + "@id": "_:b21436", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10571", + "@id": "_:b17477", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23562", + "@id": "_:b17302", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10568", + "@id": "_:b17479", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20069", + "@id": "_:b21974", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10570", + "@id": "_:b17473", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23561", + "@id": "_:b17474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10576", + "@id": "_:b17478", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "result": { - "@id": "_:b20639", + "@id": "_:b25093", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10572", + "@id": "_:b17476", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23563", + "@id": "_:b23683", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10573", + "@id": "_:b17483", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23363", + "@id": "_:b26560", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10574", + "@id": "_:b17475", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", + "mode": "earl:automatic", "result": { - "@id": "_:b23564", + "@id": "_:b18753", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10575", + "@id": "_:b17480", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "result": { - "@id": "_:b23565", + "@id": "_:b26559", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10569", + "@id": "_:b17481", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", "result": { - "@id": "_:b22023", + "@id": "_:b24056", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e045-out.nq", + "title": "Top-level value objects are removed", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e045-in.jsonld", + "rdfs:comment": "RDF version of expand-0045" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16478", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di07-out.jsonld", - "title": "simple language map with mismatching term direction", - "rdfs:comment": "Term selection with language maps and @direction.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/di07-context.jsonld" - }, "assertions": [ { - "@id": "_:b16485", + "@id": "_:b11729", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "result": { - "@id": "_:b15196", + "@id": "_:b20640", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16481", + "@id": "_:b11735", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25979", + "@id": "_:b24647", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16483", + "@id": "_:b11733", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8494", + "@id": "_:b25288", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16476", + "@id": "_:b11734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16477", + "@id": "_:b25289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16484", + "@id": "_:b11732", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "result": { - "@id": "_:b26402", + "@id": "_:b25287", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16482", + "@id": "_:b11731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26502", + "@id": "_:b24896", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16487", + "@id": "_:b11736", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25528", + "@id": "_:b21714", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16486", + "@id": "_:b11728", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", + "mode": "earl:automatic", "result": { - "@id": "_:b9866", + "@id": "_:b16730", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16480", + "@id": "_:b11730", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "result": { - "@id": "_:b20533", + "@id": "_:b21142", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16479", + "@id": "_:b11726", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", "result": { - "@id": "_:b17787", + "@id": "_:b11727", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e046-out.nq", + "title": "Free-floating nodes are removed", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e046-in.jsonld", + "rdfs:comment": "RDF version of expand-0046" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1297", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/e002-in.jsonld", - "mf:result": "IRI confused with prefix", - "title": "Absolute IRI confused with Compact IRI", - "rdfs:comment": "Verifies that IRI compaction detects when the result is an absolute IRI with a scheme matching a term.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/e002-context.jsonld" - }, "assertions": [ { - "@id": "_:b1302", + "@id": "_:b16061", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "result": { - "@id": "_:b15598", + "@id": "_:b23437", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1301", + "@id": "_:b16060", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15597", + "@id": "_:b20474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1295", + "@id": "_:b16062", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1296", + "@id": "_:b23438", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1306", + "@id": "_:b16063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15602", + "@id": "_:b19852", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1300", + "@id": "_:b16059", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "result": { - "@id": "_:b15596", + "@id": "_:b23436", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1304", + "@id": "_:b16058", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15600", + "@id": "_:b23435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1303", + "@id": "_:b16055", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15599", + "@id": "_:b23433", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1298", + "@id": "_:b16053", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", + "mode": "earl:automatic", "result": { - "@id": "_:b13106", + "@id": "_:b16054", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1299", + "@id": "_:b16056", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "result": { - "@id": "_:b15517", + "@id": "_:b23434", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1305", + "@id": "_:b16057", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", "result": { - "@id": "_:b15601", + "@id": "_:b16487", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e047-out.nq", + "title": "Remove free-floating set values and lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e047-in.jsonld", + "rdfs:comment": "RDF version of expand-0047" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3248", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/en01-in.jsonld", - "mf:result": "invalid @nest value", - "title": "Nest term not defined", - "rdfs:comment": "Transparent Nesting", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/en01-context.jsonld" - }, "assertions": [ { - "@id": "_:b3252", + "@id": "_:b2677", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "result": { - "@id": "_:b20216", + "@id": "_:b2687", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3253", + "@id": "_:b2670", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20217", + "@id": "_:b2680", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3246", + "@id": "_:b2674", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3247", + "@id": "_:b2684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3256", + "@id": "_:b2673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20219", + "@id": "_:b2683", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3257", + "@id": "_:b2676", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "result": { - "@id": "_:b20220", + "@id": "_:b2686", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3250", + "@id": "_:b2669", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18383", + "@id": "_:b2679", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3255", + "@id": "_:b2675", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12214", + "@id": "_:b2685", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3251", + "@id": "_:b2668", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", + "mode": "earl:automatic", "result": { - "@id": "_:b20215", + "@id": "_:b2678", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3249", + "@id": "_:b2671", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "result": { - "@id": "_:b12985", + "@id": "_:b2681", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3254", + "@id": "_:b2672", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", "result": { - "@id": "_:b20218", + "@id": "_:b2682", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e048-out.nq", + "title": "Terms are ignored in @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e048-in.jsonld", + "rdfs:comment": "RDF version of expand-0048" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b265", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep05-in.jsonld", - "mf:result": "processing mode conflict", - "title": "processingMode json-ld-1.0 conflicts with @version: 1.1", - "rdfs:comment": "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep05-context.jsonld" - }, "assertions": [ { - "@id": "_:b271", + "@id": "_:b16909", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "result": { - "@id": "_:b281", + "@id": "_:b21159", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b266", + "@id": "_:b16903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b276", + "@id": "_:b21300", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b274", + "@id": "_:b16902", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b284", + "@id": "_:b18803", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b273", + "@id": "_:b16908", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b283", + "@id": "_:b11026", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b275", + "@id": "_:b16906", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "result": { - "@id": "_:b285", + "@id": "_:b26573", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b267", + "@id": "_:b16904", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b277", + "@id": "_:b24642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b270", + "@id": "_:b16899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b280", + "@id": "_:b16900", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b272", + "@id": "_:b16905", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", + "mode": "earl:automatic", "result": { - "@id": "_:b282", + "@id": "_:b26064", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b268", + "@id": "_:b16907", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "result": { - "@id": "_:b278", + "@id": "_:b26780", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b269", + "@id": "_:b16901", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", "result": { - "@id": "_:b279", + "@id": "_:b17170", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e049-out.nq", + "title": "Using strings as value of a reverse property", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e049-in.jsonld", + "rdfs:comment": "RDF version of expand-0049" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11823", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep06-in.jsonld", - "mf:result": "invalid @version value", - "title": "@version must be 1.1", - "rdfs:comment": "If @version is specified, it must be 1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep06-context.jsonld" - }, "assertions": [ { - "@id": "_:b11830", + "@id": "_:b21810", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "result": { - "@id": "_:b12866", + "@id": "_:b23277", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11827", + "@id": "_:b21815", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21815", + "@id": "_:b24628", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11829", + "@id": "_:b21812", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19288", + "@id": "_:b20273", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11828", + "@id": "_:b21814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21816", + "@id": "_:b24627", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11826", + "@id": "_:b21811", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "result": { - "@id": "_:b17577", + "@id": "_:b8794", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11825", + "@id": "_:b21817", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20035", + "@id": "_:b24629", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11832", + "@id": "_:b21807", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19827", + "@id": "_:b21808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11831", + "@id": "_:b21809", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", + "mode": "earl:automatic", "result": { - "@id": "_:b21817", + "@id": "_:b20095", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11824", + "@id": "_:b21813", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "result": { - "@id": "_:b15515", + "@id": "_:b21561", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11833", + "@id": "_:b21816", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", "result": { - "@id": "_:b21818", + "@id": "_:b22077", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e050-out.nq", + "title": "Term definitions with prefix separate from prefix definitions", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e050-in.jsonld", + "rdfs:comment": "RDF version of expand-0050" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4263", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep07-in.jsonld", - "mf:result": "invalid term definition", - "title": "@prefix is not allowed in 1.0", - "rdfs:comment": "@prefix is not allowed in a term definition 1.0", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep07-context.jsonld" - }, "assertions": [ { - "@id": "_:b4799", + "@id": "_:b2498", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "result": { - "@id": "_:b19463", + "@id": "_:b2499", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4800", + "@id": "_:b2506", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19464", + "@id": "_:b26567", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4795", + "@id": "_:b2502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4796", + "@id": "_:b21781", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4804", + "@id": "_:b2508", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19466", + "@id": "_:b21608", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4805", + "@id": "_:b2503", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "result": { - "@id": "_:b19226", + "@id": "_:b23311", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4798", + "@id": "_:b2505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19462", + "@id": "_:b2145", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4803", + "@id": "_:b2501", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19465", + "@id": "_:b14521", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4797", + "@id": "_:b2507", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", + "mode": "earl:automatic", "result": { - "@id": "_:b15854", + "@id": "_:b11491", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4802", + "@id": "_:b2500", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "result": { - "@id": "_:b10661", + "@id": "_:b17295", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4801", + "@id": "_:b2504", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", "result": { - "@id": "_:b17582", + "@id": "_:b25274", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e051-out.nq", + "title": "Expansion of keyword aliases in term definitions", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e051-in.jsonld", + "rdfs:comment": "RDF version of expand-0051" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10549", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep08-in.jsonld", - "mf:result": "invalid @prefix value", - "title": "@prefix must be a boolean", - "rdfs:comment": "@prefix must be a boolean in a term definition in 1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep08-context.jsonld" - }, "assertions": [ { - "@id": "_:b10550", + "@id": "_:b3249", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "result": { - "@id": "_:b14424", + "@id": "_:b6225", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10552", + "@id": "_:b3241", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24182", + "@id": "_:b19982", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10551", + "@id": "_:b3243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7617", + "@id": "_:b25807", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10554", + "@id": "_:b3247", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26190", + "@id": "_:b26152", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10558", + "@id": "_:b3245", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "result": { - "@id": "_:b24192", + "@id": "_:b6450", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10547", + "@id": "_:b3246", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10548", + "@id": "_:b25946", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10555", + "@id": "_:b3242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26861", + "@id": "_:b25158", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10553", + "@id": "_:b3240", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", + "mode": "earl:automatic", "result": { - "@id": "_:b22470", + "@id": "_:b18283", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10556", + "@id": "_:b3244", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "result": { - "@id": "_:b11471", + "@id": "_:b24016", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10557", + "@id": "_:b3248", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", "result": { - "@id": "_:b14252", + "@id": "_:b24809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e052-out.nq", + "title": "@vocab-relative IRIs in term definitions", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e052-in.jsonld", + "rdfs:comment": "RDF version of expand-0052" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14272", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep09-in.jsonld", - "mf:result": "invalid term definition", - "title": "@prefix not allowed on compact IRI term", - "rdfs:comment": "If processingMode is json-ld-1.0, or if term contains a colon (:), an invalid term definition has been detected and processing is aborted.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep09-context.jsonld" - }, "assertions": [ { - "@id": "_:b14281", + "@id": "_:b5709", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "result": { - "@id": "_:b26707", + "@id": "_:b21322", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14273", + "@id": "_:b5711", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16124", + "@id": "_:b26193", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14276", + "@id": "_:b5705", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22069", + "@id": "_:b14283", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14277", + "@id": "_:b5704", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26537", + "@id": "_:b2367", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14278", + "@id": "_:b5712", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "result": { - "@id": "_:b24445", + "@id": "_:b14324", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14274", + "@id": "_:b5708", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15249", + "@id": "_:b20621", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14280", + "@id": "_:b5710", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21753", + "@id": "_:b25073", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14270", + "@id": "_:b5706", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", + "mode": "earl:automatic", "result": { - "@id": "_:b14271", + "@id": "_:b1551", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14279", + "@id": "_:b5702", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "result": { - "@id": "_:b25902", + "@id": "_:b5703", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14275", + "@id": "_:b5707", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", "result": { - "@id": "_:b22843", + "@id": "_:b7346", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e053-out.nq", + "title": "Expand absolute IRI with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e053-in.jsonld", + "rdfs:comment": "RDF version of expand-0053" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5520", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep10-in.jsonld", - "mf:result": "invalid term definition", - "title": "@nest is not allowed in 1.0", - "rdfs:comment": "@nest is not allowed in a term definitionin 1.0", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep10-context.jsonld" - }, "assertions": [ { - "@id": "_:b5522", + "@id": "_:b6484", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "result": { - "@id": "_:b14093", + "@id": "_:b26290", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5523", + "@id": "_:b6480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12741", + "@id": "_:b21020", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5525", + "@id": "_:b6478", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19599", + "@id": "_:b18339", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5524", + "@id": "_:b6475", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10364", + "@id": "_:b6476", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5528", + "@id": "_:b6485", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "result": { - "@id": "_:b25832", + "@id": "_:b8808", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5529", + "@id": "_:b6477", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13948", + "@id": "_:b16679", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5526", + "@id": "_:b6479", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20431", + "@id": "_:b21297", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5518", + "@id": "_:b6482", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", + "mode": "earl:automatic", "result": { - "@id": "_:b5519", + "@id": "_:b20218", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5527", + "@id": "_:b6483", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "result": { - "@id": "_:b4472", + "@id": "_:b26289", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5521", + "@id": "_:b6481", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", "result": { - "@id": "_:b8062", + "@id": "_:b22917", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e054-out.nq", + "title": "Expand term with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e054-in.jsonld", + "rdfs:comment": "RDF version of expand-0054" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5320", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep11-in.jsonld", - "mf:result": "invalid term definition", - "title": "@context is not allowed in 1.0", - "rdfs:comment": "@context is not allowed in a term definitionin 1.0", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep11-context.jsonld" - }, "assertions": [ { - "@id": "_:b5325", + "@id": "_:b19100", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "result": { - "@id": "_:b18012", + "@id": "_:b19101", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5318", + "@id": "_:b19105", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5319", + "@id": "_:b23191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5329", + "@id": "_:b19104", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18015", + "@id": "_:b14634", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5326", + "@id": "_:b19106", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18013", + "@id": "_:b19137", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5327", + "@id": "_:b19109", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "result": { - "@id": "_:b18014", + "@id": "_:b23194", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5324", + "@id": "_:b19103", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18011", + "@id": "_:b23190", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5323", + "@id": "_:b19102", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1521", + "@id": "_:b21081", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5322", + "@id": "_:b19108", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", + "mode": "earl:automatic", "result": { - "@id": "_:b18010", + "@id": "_:b23193", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5321", + "@id": "_:b19107", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "result": { - "@id": "_:b7427", + "@id": "_:b23192", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5328", + "@id": "_:b19110", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", "result": { - "@id": "_:b4345", + "@id": "_:b13186", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e055-out.nq", + "title": "Expand @vocab-relative term with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e055-in.jsonld", + "rdfs:comment": "RDF version of expand-0055" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1106", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep12-in.jsonld", - "mf:result": "invalid container mapping", - "title": "@container may not be an array in 1.0", - "rdfs:comment": "validate appropriate values of @container", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep12-context.jsonld" - }, "assertions": [ { - "@id": "_:b1112", + "@id": "_:b8869", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "result": { - "@id": "_:b24938", + "@id": "_:b23189", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1110", + "@id": "_:b8867", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22741", + "@id": "_:b22203", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1115", + "@id": "_:b8861", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24940", + "@id": "_:b8862", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1111", + "@id": "_:b8868", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24937", + "@id": "_:b23188", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1113", + "@id": "_:b8866", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "result": { - "@id": "_:b20581", + "@id": "_:b23187", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1114", + "@id": "_:b8865", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24939", + "@id": "_:b20195", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1109", + "@id": "_:b8870", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23651", + "@id": "_:b18623", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1107", + "@id": "_:b8864", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", + "mode": "earl:automatic", "result": { - "@id": "_:b5412", + "@id": "_:b19874", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1108", + "@id": "_:b8863", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "result": { - "@id": "_:b19691", + "@id": "_:b18255", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1104", + "@id": "_:b8871", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", "result": { - "@id": "_:b1105", + "@id": "_:b22671", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e056-out.nq", + "title": "Use terms with @type: @vocab but not with @type: @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e056-in.jsonld", + "rdfs:comment": "RDF version of expand-0056" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6128", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep13-in.jsonld", - "mf:result": "invalid container mapping", - "title": "@container may not be @id in 1.0", - "rdfs:comment": "validate appropriate values of @container", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep13-context.jsonld" - }, "assertions": [ { - "@id": "_:b6129", + "@id": "_:b6431", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "result": { - "@id": "_:b19405", + "@id": "_:b22472", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6133", + "@id": "_:b6424", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19409", + "@id": "_:b6425", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6134", + "@id": "_:b6427", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13124", + "@id": "_:b19403", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6132", + "@id": "_:b6432", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19408", + "@id": "_:b25037", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6131", + "@id": "_:b6429", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "result": { - "@id": "_:b19407", + "@id": "_:b20701", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6135", + "@id": "_:b6426", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12961", + "@id": "_:b11115", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6130", + "@id": "_:b6433", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19406", + "@id": "_:b25038", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6126", + "@id": "_:b6434", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", + "mode": "earl:automatic", "result": { - "@id": "_:b6127", + "@id": "_:b12410", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6137", + "@id": "_:b6428", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "result": { - "@id": "_:b19411", + "@id": "_:b20670", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6136", + "@id": "_:b6430", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", "result": { - "@id": "_:b19410", + "@id": "_:b25036", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e057-out.nq", + "title": "Expand relative IRI with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e057-in.jsonld", + "rdfs:comment": "RDF version of expand-0057" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6439", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep14-in.jsonld", - "mf:result": "invalid container mapping", - "title": "@container may not be @type in 1.0", - "rdfs:comment": "validate appropriate values of @container", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep14-context.jsonld" - }, "assertions": [ { - "@id": "_:b11717", + "@id": "_:b21363", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "result": { - "@id": "_:b20515", + "@id": "_:b25150", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11718", + "@id": "_:b21365", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21449", + "@id": "_:b25825", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11725", + "@id": "_:b21364", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17141", + "@id": "_:b10693", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11722", + "@id": "_:b21362", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22553", + "@id": "_:b24555", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11720", + "@id": "_:b21361", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "result": { - "@id": "_:b4865", + "@id": "_:b22996", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11724", + "@id": "_:b21367", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26375", + "@id": "_:b24461", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11719", + "@id": "_:b21358", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19389", + "@id": "_:b21359", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11726", + "@id": "_:b21360", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", + "mode": "earl:automatic", "result": { - "@id": "_:b1246", + "@id": "_:b6486", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11723", + "@id": "_:b21368", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "result": { - "@id": "_:b24600", + "@id": "_:b18544", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11721", + "@id": "_:b21366", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", "result": { - "@id": "_:b24013", + "@id": "_:b25826", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e058-out.nq", + "title": "Expand compact IRI with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e058-in.jsonld", + "rdfs:comment": "RDF version of expand-0058" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1382", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep15-in.jsonld", - "mf:result": "invalid container mapping", - "title": "@container may not be @graph in 1.0", - "rdfs:comment": "validate appropriate values of @container", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep15-context.jsonld" - }, "assertions": [ { - "@id": "_:b1391", + "@id": "_:b20977", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "result": { - "@id": "_:b15670", + "@id": "_:b20985", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1388", + "@id": "_:b20974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15667", + "@id": "_:b20983", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1386", + "@id": "_:b20979", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15665", + "@id": "_:b20987", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1385", + "@id": "_:b20975", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15664", + "@id": "_:b15754", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1389", + "@id": "_:b20972", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "result": { - "@id": "_:b15668", + "@id": "_:b20982", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1384", + "@id": "_:b20971", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14005", + "@id": "_:b20981", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1390", + "@id": "_:b20973", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15669", + "@id": "_:b3999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1387", + "@id": "_:b20976", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", + "mode": "earl:automatic", "result": { - "@id": "_:b15666", + "@id": "_:b20984", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1383", + "@id": "_:b20978", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "result": { - "@id": "_:b11139", + "@id": "_:b20986", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1380", + "@id": "_:b20980", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", "result": { - "@id": "_:b1381", + "@id": "_:b19876", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e059-out.nq", + "title": "Reset @vocab by setting it to null", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e059-in.jsonld", + "rdfs:comment": "RDF version of expand-0059" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19767", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in01-out.jsonld", - "title": "Basic Included array", - "rdfs:comment": "Tests included blocks.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/in01-context.jsonld" - }, "assertions": [ { - "@id": "_:b19771", + "@id": "_:b6817", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "result": { - "@id": "_:b20034", + "@id": "_:b18558", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19772", + "@id": "_:b6811", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21419", + "@id": "_:b18554", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19769", + "@id": "_:b6814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21417", + "@id": "_:b18556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19775", + "@id": "_:b6815", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21422", + "@id": "_:b17122", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19765", + "@id": "_:b6808", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "result": { - "@id": "_:b19766", + "@id": "_:b6809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19773", + "@id": "_:b6816", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21420", + "@id": "_:b18557", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19768", + "@id": "_:b6812", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15409", + "@id": "_:b9353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19774", + "@id": "_:b6818", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", + "mode": "earl:automatic", "result": { - "@id": "_:b21421", + "@id": "_:b18559", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19770", + "@id": "_:b6810", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "result": { - "@id": "_:b21418", + "@id": "_:b15044", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19776", + "@id": "_:b6813", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", "result": { - "@id": "_:b21423", + "@id": "_:b18555", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e060-out.nq", + "title": "Overwrite document base with @base and reset it again", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e060-in.jsonld", + "rdfs:comment": "RDF version of expand-0060" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6999", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in02-out.jsonld", - "title": "Basic Included object", - "rdfs:comment": "Tests included blocks.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/in02-context.jsonld" - }, "assertions": [ { - "@id": "_:b7002", + "@id": "_:b1392", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "result": { - "@id": "_:b20883", + "@id": "_:b23931", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7006", + "@id": "_:b1389", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16337", + "@id": "_:b2643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7003", + "@id": "_:b1390", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11985", + "@id": "_:b12485", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7007", + "@id": "_:b1394", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23023", + "@id": "_:b17420", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7008", + "@id": "_:b1396", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "result": { - "@id": "_:b18870", + "@id": "_:b26645", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7000", + "@id": "_:b1391", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17262", + "@id": "_:b22383", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6997", + "@id": "_:b1397", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6998", + "@id": "_:b26861", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7005", + "@id": "_:b1387", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", + "mode": "earl:automatic", "result": { - "@id": "_:b11357", + "@id": "_:b1388", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7001", + "@id": "_:b1395", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "result": { - "@id": "_:b20104", + "@id": "_:b26424", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7004", + "@id": "_:b1393", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", "result": { - "@id": "_:b24784", + "@id": "_:b23935", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e061-out.nq", + "title": "Coercing native types to arbitrary datatypes", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e061-in.jsonld", + "rdfs:comment": "RDF version of expand-0061" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1712", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in03-out.jsonld", - "title": "Multiple properties mapping to @included are folded together", - "rdfs:comment": "Tests included blocks.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/in03-context.jsonld" - }, "assertions": [ { - "@id": "_:b1716", + "@id": "_:b1022", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "result": { - "@id": "_:b23777", + "@id": "_:b25429", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://kasei.us/about/#greg" }, { - "@id": "_:b1715", + "@id": "_:b1019", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19257", + "@id": "_:b18540", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1710", + "@id": "_:b1027", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1711", + "@id": "_:b20272", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1717", + "@id": "_:b1024", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25506", + "@id": "_:b21098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1720", + "@id": "_:b1026", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "result": { - "@id": "_:b15395", + "@id": "_:b2750", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1713", + "@id": "_:b1020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8108", + "@id": "_:b20677", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1718", + "@id": "_:b1023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26421", + "@id": "_:b8990", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1714", + "@id": "_:b1017", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", + "mode": "earl:automatic", "result": { - "@id": "_:b16872", + "@id": "_:b1018", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1721", + "@id": "_:b1021", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "result": { - "@id": "_:b19292", + "@id": "_:b21552", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1719", + "@id": "_:b1025", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", "result": { - "@id": "_:b26765", + "@id": "_:b24648", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e062-out.nq", + "title": "Various relative IRIs with with @base", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e062-in.jsonld", + "rdfs:comment": "RDF version of expand-0062" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11642", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in04-out.jsonld", - "title": "Included containing @included", - "rdfs:comment": "Tests included blocks.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/in04-context.jsonld" - }, "assertions": [ { - "@id": "_:b11649", + "@id": "_:b10004", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "result": { - "@id": "_:b15608", + "@id": "_:b10602", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11640", + "@id": "_:b10007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11641", + "@id": "_:b10605", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11648", + "@id": "_:b10003", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15607", + "@id": "_:b10601", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11645", + "@id": "_:b10002", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15604", + "@id": "_:b10600", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11650", + "@id": "_:b10001", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "result": { - "@id": "_:b15609", + "@id": "_:b10599", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11646", + "@id": "_:b10006", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15605", + "@id": "_:b10604", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11651", + "@id": "_:b10009", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6258", + "@id": "_:b10607", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11643", + "@id": "_:b10008", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", + "mode": "earl:automatic", "result": { - "@id": "_:b14459", + "@id": "_:b10606", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11644", + "@id": "_:b9999", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "result": { - "@id": "_:b15603", + "@id": "_:b10000", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11647", + "@id": "_:b10005", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", "result": { - "@id": "_:b15606", + "@id": "_:b10603", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e063-out.nq", + "title": "Expand a reverse property with an index-container", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e063-in.jsonld", + "rdfs:comment": "RDF version of expand-0063" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4410", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in05-out.jsonld", - "title": "Property value with @included", - "rdfs:comment": "Tests included blocks.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/in05-context.jsonld" - }, "assertions": [ { - "@id": "_:b18603", + "@id": "_:b227", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "result": { - "@id": "_:b21637", + "@id": "_:b21661", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18606", + "@id": "_:b229", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23660", + "@id": "_:b19598", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18611", + "@id": "_:b224", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24188", + "@id": "_:b14062", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18601", + "@id": "_:b231", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18602", + "@id": "_:b24777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18610", + "@id": "_:b230", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "result": { - "@id": "_:b26918", + "@id": "_:b24776", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18607", + "@id": "_:b233", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14699", + "@id": "_:b11990", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18609", + "@id": "_:b232", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18841", + "@id": "_:b24778", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18605", + "@id": "_:b225", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", + "mode": "earl:automatic", "result": { - "@id": "_:b23069", + "@id": "_:b18637", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18604", + "@id": "_:b228", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "result": { - "@id": "_:b22178", + "@id": "_:b22978", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18608", + "@id": "_:b226", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", "result": { - "@id": "_:b20891", + "@id": "_:b20728", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e064-out.nq", + "title": "Expand reverse property whose values are unlabeled blank nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e064-in.jsonld", + "rdfs:comment": "RDF version of expand-0064" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12084", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js01-out.jsonld", - "title": "Compact JSON literal (boolean true)", - "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (boolean true).", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js01-context.jsonld" - }, "assertions": [ { - "@id": "_:b12094", + "@id": "_:b13644", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "result": { - "@id": "_:b26779", + "@id": "_:b26132", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12089", + "@id": "_:b13645", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24019", + "@id": "_:b8031", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12088", + "@id": "_:b13638", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22444", + "@id": "_:b16231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12092", + "@id": "_:b13640", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24856", + "@id": "_:b20911", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12085", + "@id": "_:b13642", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "result": { - "@id": "_:b19286", + "@id": "_:b8233", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12091", + "@id": "_:b13636", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26512", + "@id": "_:b13637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12093", + "@id": "_:b13643", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26771", + "@id": "_:b13010", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12087", + "@id": "_:b13646", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", + "mode": "earl:automatic", "result": { - "@id": "_:b24719", + "@id": "_:b14635", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12086", + "@id": "_:b13639", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "result": { - "@id": "_:b24075", + "@id": "_:b18043", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12090", + "@id": "_:b13641", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", "result": { - "@id": "_:b26664", + "@id": "_:b24000", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e065-out.nq", + "title": "Keys that are not mapped to an IRI in a reverse-map are dropped", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e065-in.jsonld", + "rdfs:comment": "RDF version of expand-0065" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10837", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js02-out.jsonld", - "title": "Compact JSON literal (boolean false)", - "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (boolean false).", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js02-context.jsonld" - }, "assertions": [ { - "@id": "_:b10843", + "@id": "_:b18089", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "result": { - "@id": "_:b18682", + "@id": "_:b20609", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10840", + "@id": "_:b18094", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18679", + "@id": "_:b24754", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10842", + "@id": "_:b18093", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18681", + "@id": "_:b24368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10839", + "@id": "_:b18087", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14502", + "@id": "_:b18088", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10844", + "@id": "_:b18091", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "result": { - "@id": "_:b18683", + "@id": "_:b22113", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10841", + "@id": "_:b18090", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18680", + "@id": "_:b21235", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10846", + "@id": "_:b18097", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18685", + "@id": "_:b22811", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10838", + "@id": "_:b18092", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", + "mode": "earl:automatic", "result": { - "@id": "_:b12142", + "@id": "_:b22728", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10845", + "@id": "_:b18095", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "result": { - "@id": "_:b18684", + "@id": "_:b24407", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10835", + "@id": "_:b18096", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", "result": { - "@id": "_:b10836", + "@id": "_:b24755", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e066-out.nq", + "title": "Use @vocab to expand keys in reverse-maps", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e066-in.jsonld", + "rdfs:comment": "RDF version of expand-0066" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8546", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js03-out.jsonld", - "title": "Compact JSON literal (double)", - "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (double).", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js03-context.jsonld" - }, "assertions": [ { - "@id": "_:b8550", + "@id": "_:b9307", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "result": { - "@id": "_:b20951", + "@id": "_:b10595", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8554", + "@id": "_:b9308", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26754", + "@id": "_:b22161", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8553", + "@id": "_:b9311", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26959", + "@id": "_:b25590", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8547", + "@id": "_:b9313", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22202", + "@id": "_:b17000", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8551", + "@id": "_:b9309", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "result": { - "@id": "_:b26780", + "@id": "_:b24851", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8549", + "@id": "_:b9310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22931", + "@id": "_:b26700", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8548", + "@id": "_:b9303", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25085", + "@id": "_:b9304", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8544", + "@id": "_:b9312", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", + "mode": "earl:automatic", "result": { - "@id": "_:b8545", + "@id": "_:b26537", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8555", + "@id": "_:b9305", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "result": { - "@id": "_:b25485", + "@id": "_:b11321", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8552", + "@id": "_:b9306", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", "result": { - "@id": "_:b5025", + "@id": "_:b16050", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e067-out.nq", + "title": "prefix:://sufffix not a compact IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e067-in.jsonld", + "rdfs:comment": "RDF version of expand-0067" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11889", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js04-out.jsonld", - "title": "Compact JSON literal (double-zero)", - "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (double-zero).", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js04-context.jsonld" - }, "assertions": [ { - "@id": "_:b11893", + "@id": "_:b3657", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "result": { - "@id": "_:b21173", + "@id": "_:b3658", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11898", + "@id": "_:b3661", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21178", + "@id": "_:b8016", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11890", + "@id": "_:b3664", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12432", + "@id": "_:b23295", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11896", + "@id": "_:b3666", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21176", + "@id": "_:b23296", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11887", + "@id": "_:b3665", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "result": { - "@id": "_:b11888", + "@id": "_:b21166", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11895", + "@id": "_:b3659", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21175", + "@id": "_:b20031", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11891", + "@id": "_:b3662", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21171", + "@id": "_:b15774", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11894", + "@id": "_:b3663", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", + "mode": "earl:automatic", "result": { - "@id": "_:b21174", + "@id": "_:b23294", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11897", + "@id": "_:b3660", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "result": { - "@id": "_:b21177", + "@id": "_:b23293", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11892", + "@id": "_:b3667", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", "result": { - "@id": "_:b21172", + "@id": "_:b23297", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e068-out.nq", + "title": "_::sufffix not a compact IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e068-in.jsonld", + "rdfs:comment": "RDF version of expand-0068" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6941", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js05-out.jsonld", - "title": "Compact JSON literal (integer)", - "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (integer).", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js05-context.jsonld" - }, "assertions": [ { - "@id": "_:b6949", + "@id": "_:b14639", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "result": { - "@id": "_:b21718", + "@id": "_:b26334", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6948", + "@id": "_:b14638", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21717", + "@id": "_:b21827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6944", + "@id": "_:b14642", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21714", + "@id": "_:b26306", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6943", + "@id": "_:b14644", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20068", + "@id": "_:b26533", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6940", + "@id": "_:b14645", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "result": { - "@id": "_:b4021", + "@id": "_:b17172", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6947", + "@id": "_:b14637", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21716", + "@id": "_:b21885", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6950", + "@id": "_:b14641", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20971", + "@id": "_:b24819", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6945", + "@id": "_:b14646", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", + "mode": "earl:automatic", "result": { - "@id": "_:b5137", + "@id": "_:b22369", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6946", + "@id": "_:b14640", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "result": { - "@id": "_:b21715", + "@id": "_:b24001", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6942", + "@id": "_:b14643", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", "result": { - "@id": "_:b17154", + "@id": "_:b24446", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e069-out.nq", + "title": "Compact IRI as term with type mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e069-in.jsonld", + "rdfs:comment": "RDF version of expand-0069" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18030", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js06-out.jsonld", - "title": "Compact JSON literal (object)", - "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (object).", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js06-context.jsonld" - }, "assertions": [ { - "@id": "_:b18034", + "@id": "_:b5310", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "result": { - "@id": "_:b23749", + "@id": "_:b16356", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18036", + "@id": "_:b5313", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18297", + "@id": "_:b21252", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18035", + "@id": "_:b5307", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23750", + "@id": "_:b18408", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18038", + "@id": "_:b5314", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23752", + "@id": "_:b5744", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18032", + "@id": "_:b5308", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "result": { - "@id": "_:b22484", + "@id": "_:b19129", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18028", + "@id": "_:b5311", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18029", + "@id": "_:b21250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18031", + "@id": "_:b5309", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20829", + "@id": "_:b18374", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18033", + "@id": "_:b5305", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", + "mode": "earl:automatic", "result": { - "@id": "_:b23524", + "@id": "_:b5306", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18037", + "@id": "_:b5312", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "result": { - "@id": "_:b23751", + "@id": "_:b21251", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18039", + "@id": "_:b5315", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", "result": { - "@id": "_:b23753", + "@id": "_:b21253", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e070-out.nq", + "title": "Redefine compact IRI with itself", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e070-in.jsonld", + "rdfs:comment": "RDF version of expand-0070" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11534", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js07-out.jsonld", - "title": "Compact JSON literal (array)", - "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (array).", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js07-context.jsonld" - }, "assertions": [ { - "@id": "_:b22103", + "@id": "_:b12116", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "result": { - "@id": "_:b26016", + "@id": "_:b24577", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22104", + "@id": "_:b12109", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26042", + "@id": "_:b12110", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22105", + "@id": "_:b12111", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17111", + "@id": "_:b21782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22099", + "@id": "_:b12117", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24140", + "@id": "_:b24650", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22107", + "@id": "_:b12114", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "result": { - "@id": "_:b22404", + "@id": "_:b25285", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22100", + "@id": "_:b12112", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5411", + "@id": "_:b25233", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22106", + "@id": "_:b12119", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23916", + "@id": "_:b16676", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22097", + "@id": "_:b12115", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", + "mode": "earl:automatic", "result": { - "@id": "_:b22098", + "@id": "_:b26216", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b22101", + "@id": "_:b12113", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "result": { - "@id": "_:b22700", + "@id": "_:b9431", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22102", + "@id": "_:b12118", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", "result": { - "@id": "_:b23333", + "@id": "_:b15248", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e072-out.nq", + "title": "Redefine term using @vocab, not itself", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e072-in.jsonld", + "rdfs:comment": "RDF version of expand-0072" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12171", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js08-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js08-out.jsonld", - "title": "Compact already expanded JSON literal", - "rdfs:comment": "Tests compacting JSON literal does not expand terms inside json.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js08-context.jsonld" - }, "assertions": [ { - "@id": "_:b12172", + "@id": "_:b9913", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "result": { - "@id": "_:b14071", + "@id": "_:b13968", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12169", + "@id": "_:b9916", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12170", + "@id": "_:b26256", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12175", + "@id": "_:b9911", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25296", + "@id": "_:b10771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12180", + "@id": "_:b9909", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17265", + "@id": "_:b9910", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12178", + "@id": "_:b9919", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "result": { - "@id": "_:b24814", + "@id": "_:b6553", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12179", + "@id": "_:b9915", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12616", + "@id": "_:b26652", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12173", + "@id": "_:b9914", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11559", + "@id": "_:b23996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12177", + "@id": "_:b9912", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", + "mode": "earl:automatic", "result": { - "@id": "_:b25843", + "@id": "_:b16998", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12174", + "@id": "_:b9918", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "result": { - "@id": "_:b24377", + "@id": "_:b15942", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12176", + "@id": "_:b9917", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", "result": { - "@id": "_:b25329", + "@id": "_:b23237", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e073-out.nq", + "title": "@context not first property", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e073-in.jsonld", + "rdfs:comment": "Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18197", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js09-out.jsonld", - "title": "Compact already expanded JSON literal with aliased keys", - "rdfs:comment": "Tests compacting JSON literal in expanded form.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js09-context.jsonld" - }, "assertions": [ { - "@id": "_:b18205", + "@id": "_:b594", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "result": { - "@id": "_:b25900", + "@id": "_:b604", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18198", + "@id": "_:b588", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18221", + "@id": "_:b598", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18203", + "@id": "_:b585", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21615", + "@id": "_:b595", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18206", + "@id": "_:b587", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25901", + "@id": "_:b597", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18195", + "@id": "_:b586", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "result": { - "@id": "_:b18196", + "@id": "_:b596", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18204", + "@id": "_:b591", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25899", + "@id": "_:b601", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18202", + "@id": "_:b592", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23919", + "@id": "_:b602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18201", + "@id": "_:b590", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", + "mode": "earl:automatic", "result": { - "@id": "_:b16403", + "@id": "_:b600", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18199", + "@id": "_:b589", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "result": { - "@id": "_:b22759", + "@id": "_:b599", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18200", + "@id": "_:b593", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", "result": { - "@id": "_:b23725", + "@id": "_:b603", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e074-out.nq", + "title": "@id not first property", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e074-in.jsonld", + "rdfs:comment": "Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14312", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js10-out.jsonld", - "title": "Compact JSON literal (string)", - "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (string).", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js10-context.jsonld" + "@id": "_:b15017", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0", + "https://w3c.github.io/json-ld-api/tests/vocab#produceGeneralizedRdf": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, "assertions": [ { - "@id": "_:b14314", + "@id": "_:b15026", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "result": { - "@id": "_:b17424", + "@id": "_:b10931", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b14319", + "@id": "_:b15015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17428", + "@id": "_:b15016", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:inapplicable" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14315", + "@id": "_:b15020", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "result": { - "@id": "_:b17425", + "@id": "_:b24283", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b14316", + "@id": "_:b15025", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17426", + "@id": "_:b9643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14320", + "@id": "_:b15021", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "result": { - "@id": "_:b17429", + "@id": "_:b10597", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14313", + "@id": "_:b15024", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17423", + "@id": "_:b25053", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14321", + "@id": "_:b15023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17430", + "@id": "_:b23516", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14318", + "@id": "_:b15018", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", + "mode": "earl:automatic", "result": { - "@id": "_:b17427", + "@id": "_:b18702", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14317", + "@id": "_:b15022", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "result": { - "@id": "_:b6327", + "@id": "_:b25052", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14310", + "@id": "_:b15019", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", "result": { - "@id": "_:b14311", + "@id": "_:b23822", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e075-out.nq", + "title": "@vocab as blank node identifier", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e075-in.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#requires": "GeneralizedRdf", + "rdfs:comment": "Use @vocab to map all properties to blank node identifiers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5252", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js11-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js11-out.jsonld", - "title": "Compact JSON literal (null)", - "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (null).", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/js11-context.jsonld" + "@id": "_:b11901", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example/base/" + } }, "assertions": [ { - "@id": "_:b5257", + "@id": "_:b11910", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "result": { - "@id": "_:b23870", + "@id": "_:b6409", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5254", + "@id": "_:b11906", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17594", + "@id": "_:b18393", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5259", + "@id": "_:b11905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23536", + "@id": "_:b18392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5253", + "@id": "_:b11909", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20084", + "@id": "_:b18395", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5258", + "@id": "_:b11907", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "result": { - "@id": "_:b23871", + "@id": "_:b14051", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5256", + "@id": "_:b11904", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23869", + "@id": "_:b18391", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5261", + "@id": "_:b11908", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23872", + "@id": "_:b18394", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5255", + "@id": "_:b11903", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", + "mode": "earl:automatic", "result": { - "@id": "_:b23868", + "@id": "_:b18390", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5250", + "@id": "_:b11902", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "result": { - "@id": "_:b5251", + "@id": "_:b18389", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5260", + "@id": "_:b11899", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", "result": { - "@id": "_:b16284", + "@id": "_:b11900", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e076-out.nq", + "title": "base option overrides document location", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e076-in.jsonld", + "rdfs:comment": "Use of the base option overrides the document location" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/la01-context.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2183", + "https://w3c.github.io/json-ld-api/tests/vocab#expandContext": { + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf/e077-context.jsonld" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/la01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/la01-out.jsonld", - "title": "most specific term matching in @list.", - "rdfs:comment": "The most specific term that matches all of the elements in the list, taking into account the default language, must be selected, without considering case of language.", "assertions": [ { - "@id": "_:b16586", + "@id": "_:b2185", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "result": { - "@id": "_:b26077", + "@id": "_:b10639", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16588", + "@id": "_:b2184", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2604", + "@id": "_:b4475", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16581", + "@id": "_:b2186", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17982", + "@id": "_:b7349", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16579", + "@id": "_:b2187", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16580", + "@id": "_:b18356", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16589", + "@id": "_:b2188", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "result": { - "@id": "_:b13685", + "@id": "_:b6298", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16587", + "@id": "_:b2189", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26661", + "@id": "_:b26938", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16584", + "@id": "_:b2192", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22999", + "@id": "_:b3807", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16585", + "@id": "_:b2191", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", + "mode": "earl:automatic", "result": { - "@id": "_:b23671", + "@id": "_:b26986", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16583", + "@id": "_:b2190", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "result": { - "@id": "_:b22564", + "@id": "_:b26208", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16582", + "@id": "_:b2181", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", "result": { - "@id": "_:b21313", + "@id": "_:b2182", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e077-out.nq", + "title": "expandContext option", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e077-in.jsonld", + "rdfs:comment": "Use of the expandContext option to expand the input document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12538", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li01-out.jsonld", - "title": "coerced @list containing an empty list", - "rdfs:comment": "Lists of Lists", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/li01-context.jsonld" - }, "assertions": [ { - "@id": "_:b12545", + "@id": "_:b13043", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "result": { - "@id": "_:b24776", + "@id": "_:b24444", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12539", + "@id": "_:b13034", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24345", + "@id": "_:b13035", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12536", + "@id": "_:b13041", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12537", + "@id": "_:b22604", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12547", + "@id": "_:b13044", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24777", + "@id": "_:b23684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12546", + "@id": "_:b13038", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "result": { - "@id": "_:b12860", + "@id": "_:b21522", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12540", + "@id": "_:b13037", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24440", + "@id": "_:b24873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12542", + "@id": "_:b13039", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14096", + "@id": "_:b24874", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12541", + "@id": "_:b13040", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", + "mode": "earl:automatic", "result": { - "@id": "_:b24774", + "@id": "_:b24875", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12544", + "@id": "_:b13042", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "result": { - "@id": "_:b20511", + "@id": "_:b13315", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12543", + "@id": "_:b13036", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", "result": { - "@id": "_:b24775", + "@id": "_:b23122", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e078-out.nq", + "title": "multiple reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e078-in.jsonld", + "rdfs:comment": "Use of multiple reverse properties" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20056", + "@id": "_:b12399", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li02-out.jsonld", - "title": "coerced @list containing a list", - "rdfs:comment": "Lists of Lists", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/li02-context.jsonld" - }, "assertions": [ { - "@id": "_:b20064", + "@id": "_:b12407", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "result": { - "@id": "_:b25229", + "@id": "_:b25140", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20060", + "@id": "_:b12406", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25751", + "@id": "_:b17301", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20062", + "@id": "_:b12403", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22535", + "@id": "_:b22441", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20061", + "@id": "_:b12404", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23560", + "@id": "_:b25728", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20063", + "@id": "_:b12408", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "result": { - "@id": "_:b20308", + "@id": "_:b18839", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20058", + "@id": "_:b12397", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3474", + "@id": "_:b12398", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20065", + "@id": "_:b12405", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26178", + "@id": "_:b19151", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20057", + "@id": "_:b12401", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", + "mode": "earl:automatic", "result": { - "@id": "_:b20170", + "@id": "_:b19328", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20059", + "@id": "_:b12400", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "result": { - "@id": "_:b24830", + "@id": "_:b17620", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20054", + "@id": "_:b12402", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", "result": { - "@id": "_:b20055", + "@id": "_:b23611", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e079-out.nq", + "title": "expand @graph container", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e079-in.jsonld", + "rdfs:comment": "Use of @graph containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1536", + "@id": "_:b3717", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li03-out.jsonld", - "title": "coerced @list containing an deep list", - "rdfs:comment": "Lists of Lists", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/li03-context.jsonld" - }, "assertions": [ { - "@id": "_:b1537", + "@id": "_:b3723", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "result": { - "@id": "_:b2535", + "@id": "_:b14496", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1540", + "@id": "_:b3726", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2538", + "@id": "_:b23743", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1544", + "@id": "_:b3719", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2542", + "@id": "_:b5230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1545", + "@id": "_:b3721", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2543", + "@id": "_:b11537", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1541", + "@id": "_:b3724", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "result": { - "@id": "_:b2539", + "@id": "_:b23742", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1542", + "@id": "_:b3715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2540", + "@id": "_:b3716", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1539", + "@id": "_:b3725", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2537", + "@id": "_:b22976", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1546", + "@id": "_:b3722", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", + "mode": "earl:automatic", "result": { - "@id": "_:b2544", + "@id": "_:b23741", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1538", + "@id": "_:b3720", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "result": { - "@id": "_:b2536", + "@id": "_:b23320", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1543", + "@id": "_:b3718", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", "result": { - "@id": "_:b2541", + "@id": "_:b14550", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e080-out.nq", + "title": "expand [@graph, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e080-in.jsonld", + "rdfs:comment": "Use of [@graph, @set] containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16659", + "@id": "_:b7782", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li04-out.jsonld", - "title": "coerced @list containing multiple lists", - "rdfs:comment": "Lists of Lists", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/li04-context.jsonld" - }, "assertions": [ { - "@id": "_:b16665", + "@id": "_:b7790", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "result": { - "@id": "_:b23540", + "@id": "_:b21744", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16663", + "@id": "_:b7784", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12863", + "@id": "_:b16015", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16667", + "@id": "_:b7785", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17753", + "@id": "_:b18868", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16666", + "@id": "_:b7791", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26948", + "@id": "_:b21745", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16660", + "@id": "_:b7783", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "result": { - "@id": "_:b19461", + "@id": "_:b11626", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16657", + "@id": "_:b7786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16658", + "@id": "_:b19940", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16664", + "@id": "_:b7780", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25924", + "@id": "_:b7781", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16661", + "@id": "_:b7789", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", + "mode": "earl:automatic", "result": { - "@id": "_:b23548", + "@id": "_:b21743", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16668", + "@id": "_:b7788", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "result": { - "@id": "_:b24881", + "@id": "_:b21742", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16662", + "@id": "_:b7787", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", "result": { - "@id": "_:b23027", + "@id": "_:b21741", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e081-out.nq", + "title": "Creates an @graph container if value is a graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e081-in.jsonld", + "rdfs:comment": "Don't double-expand an already expanded graph" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10872", + "@id": "_:b1754", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li05-out.jsonld", - "title": "coerced @list containing mixed list values", - "rdfs:comment": "Lists of Lists", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/li05-context.jsonld" - }, "assertions": [ { - "@id": "_:b10879", + "@id": "_:b1752", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "result": { - "@id": "_:b25514", + "@id": "_:b1753", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10878", + "@id": "_:b1762", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26826", + "@id": "_:b4359", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10876", + "@id": "_:b1760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23224", + "@id": "_:b20331", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10870", + "@id": "_:b1755", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10871", + "@id": "_:b8067", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10881", + "@id": "_:b1763", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "result": { - "@id": "_:b8631", + "@id": "_:b6885", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10877", + "@id": "_:b1757", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26181", + "@id": "_:b14757", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10874", + "@id": "_:b1756", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20355", + "@id": "_:b19072", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10873", + "@id": "_:b1761", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", + "mode": "earl:automatic", "result": { - "@id": "_:b17704", + "@id": "_:b20332", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10875", + "@id": "_:b1758", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "result": { - "@id": "_:b22742", + "@id": "_:b20329", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10880", + "@id": "_:b1759", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", "result": { - "@id": "_:b26773", + "@id": "_:b20330", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e082-out.nq", + "title": "expand [@graph, @index] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e082-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14681", + "@id": "_:b12264", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m001-out.jsonld", - "title": "Indexes to object not having an @id", - "rdfs:comment": "Compaction using @container: @id", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m001-context.jsonld" - }, "assertions": [ { - "@id": "_:b14686", + "@id": "_:b12269", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "result": { - "@id": "_:b3310", + "@id": "_:b23517", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14684", + "@id": "_:b12270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4863", + "@id": "_:b17289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14688", + "@id": "_:b12272", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19627", + "@id": "_:b26138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14683", + "@id": "_:b12267", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22685", + "@id": "_:b22972", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14690", + "@id": "_:b12268", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "result": { - "@id": "_:b25802", + "@id": "_:b20349", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14689", + "@id": "_:b12263", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26759", + "@id": "_:b9968", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14682", + "@id": "_:b12271", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19813", + "@id": "_:b26171", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14679", + "@id": "_:b12273", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", + "mode": "earl:automatic", "result": { - "@id": "_:b14680", + "@id": "_:b26437", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14687", + "@id": "_:b12265", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "result": { - "@id": "_:b25603", + "@id": "_:b14055", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14685", + "@id": "_:b12266", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", "result": { - "@id": "_:b26092", + "@id": "_:b21246", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e083-out.nq", + "title": "expand [@graph, @index, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e083-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7015", + "@id": "_:b4895", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m002-out.jsonld", - "title": "Indexes to object already having an @id", - "rdfs:comment": "Compaction using @container: @id", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m002-context.jsonld" - }, "assertions": [ { - "@id": "_:b7016", + "@id": "_:b4904", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "result": { - "@id": "_:b9670", + "@id": "_:b21708", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7021", + "@id": "_:b4896", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15614", + "@id": "_:b16471", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7024", + "@id": "_:b4898", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13075", + "@id": "_:b24110", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7013", + "@id": "_:b4901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7014", + "@id": "_:b26463", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7018", + "@id": "_:b4897", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "result": { - "@id": "_:b15611", + "@id": "_:b4262", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7020", + "@id": "_:b4903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15613", + "@id": "_:b21485", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7019", + "@id": "_:b4899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15612", + "@id": "_:b23144", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7017", + "@id": "_:b4893", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", + "mode": "earl:automatic", "result": { - "@id": "_:b15610", + "@id": "_:b4894", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7023", + "@id": "_:b4902", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "result": { - "@id": "_:b15616", + "@id": "_:b22181", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7022", + "@id": "_:b4900", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", "result": { - "@id": "_:b15615", + "@id": "_:b25895", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e084-out.nq", + "title": "Do not expand [@graph, @index] container if value is a graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e084-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2867", + "@id": "_:b11762", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m003-out.jsonld", - "title": "Indexes to object not having an @type", - "rdfs:comment": "Compaction using @container: @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m003-context.jsonld" - }, "assertions": [ { - "@id": "_:b2874", + "@id": "_:b11767", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "result": { - "@id": "_:b26320", + "@id": "_:b15378", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2869", + "@id": "_:b11763", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25016", + "@id": "_:b16841", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2872", + "@id": "_:b11769", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23509", + "@id": "_:b26096", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2876", + "@id": "_:b11771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26322", + "@id": "_:b24593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2868", + "@id": "_:b11765", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "result": { - "@id": "_:b23569", + "@id": "_:b20142", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2873", + "@id": "_:b11764", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25803", + "@id": "_:b22034", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2865", + "@id": "_:b11760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2866", + "@id": "_:b11761", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2871", + "@id": "_:b11768", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", + "mode": "earl:automatic", "result": { - "@id": "_:b20438", + "@id": "_:b26095", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2875", + "@id": "_:b11770", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "result": { - "@id": "_:b26321", + "@id": "_:b12710", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2870", + "@id": "_:b11766", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", "result": { - "@id": "_:b10526", + "@id": "_:b14404", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e085-out.nq", + "title": "expand [@graph, @id] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e085-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1369", + "@id": "_:b5561", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m004-out.jsonld", - "title": "Indexes to object already having an @type", - "rdfs:comment": "Compaction using @container: @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m004-context.jsonld" - }, "assertions": [ { - "@id": "_:b1377", + "@id": "_:b5567", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "result": { - "@id": "_:b20519", + "@id": "_:b21987", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1375", + "@id": "_:b5562", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21443", + "@id": "_:b11470", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1378", + "@id": "_:b5565", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21444", + "@id": "_:b24547", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1370", + "@id": "_:b5559", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17684", + "@id": "_:b5560", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1379", + "@id": "_:b5570", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "result": { - "@id": "_:b21445", + "@id": "_:b24549", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1371", + "@id": "_:b5563", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10882", + "@id": "_:b23932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1374", + "@id": "_:b5568", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21442", + "@id": "_:b24548", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1376", + "@id": "_:b5564", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", + "mode": "earl:automatic", "result": { - "@id": "_:b14878", + "@id": "_:b24546", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1373", + "@id": "_:b5569", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "result": { - "@id": "_:b21441", + "@id": "_:b23852", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1372", + "@id": "_:b5566", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", "result": { - "@id": "_:b21440", + "@id": "_:b18899", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e086-out.nq", + "title": "expand [@graph, @id, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e086-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7216", + "@id": "_:b12415", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m005-out.jsonld", - "title": "Indexes to object using compact IRI @id", - "rdfs:comment": "Compaction using @container: @id", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m005-context.jsonld" - }, "assertions": [ { - "@id": "_:b7221", + "@id": "_:b12419", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "result": { - "@id": "_:b7231", + "@id": "_:b12076", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7220", + "@id": "_:b12417", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7230", + "@id": "_:b19139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7223", + "@id": "_:b12424", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7233", + "@id": "_:b24901", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7217", + "@id": "_:b12416", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7227", + "@id": "_:b13562", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7218", + "@id": "_:b12420", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "result": { - "@id": "_:b7228", + "@id": "_:b24899", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7219", + "@id": "_:b12421", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7229", + "@id": "_:b24900", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7224", + "@id": "_:b12423", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7234", + "@id": "_:b23591", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7222", + "@id": "_:b12422", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", + "mode": "earl:automatic", "result": { - "@id": "_:b7232", + "@id": "_:b19552", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7226", + "@id": "_:b12413", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "result": { - "@id": "_:b7236", + "@id": "_:b12414", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7225", + "@id": "_:b12418", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", "result": { - "@id": "_:b7235", + "@id": "_:b21802", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e087-out.nq", + "title": "Do not expand [@graph, @id] container if value is a graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e087-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16924", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m006-out.jsonld", - "title": "Indexes using compacted @type", - "rdfs:comment": "Compaction using @container: @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m006-context.jsonld" - }, "assertions": [ { - "@id": "_:b16932", + "@id": "_:b1767", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "result": { - "@id": "_:b17295", + "@id": "_:b14388", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16929", + "@id": "_:b1768", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14235", + "@id": "_:b22397", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16930", + "@id": "_:b1771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26403", + "@id": "_:b24112", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16933", + "@id": "_:b1769", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21484", + "@id": "_:b22078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16925", + "@id": "_:b1773", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "result": { - "@id": "_:b20086", + "@id": "_:b14308", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16931", + "@id": "_:b1774", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26741", + "@id": "_:b22281", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16928", + "@id": "_:b1775", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24804", + "@id": "_:b24114", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16927", + "@id": "_:b1772", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", + "mode": "earl:automatic", "result": { - "@id": "_:b24194", + "@id": "_:b24113", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16922", + "@id": "_:b1765", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "result": { - "@id": "_:b16923", + "@id": "_:b1766", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16926", + "@id": "_:b1770", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", "result": { - "@id": "_:b22408", + "@id": "_:b24111", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e088-out.nq", + "title": "Do not expand native values to IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e088-in.jsonld", + "rdfs:comment": "Value Expansion does not expand native values, such as booleans, to a node object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16184", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m007-out.jsonld", - "title": "When type is in a type map", - "rdfs:comment": "scoped context on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m007-context.jsonld" + "@id": "_:b22014", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example/base/" + } }, "assertions": [ { - "@id": "_:b16192", + "@id": "_:b22012", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "result": { - "@id": "_:b17655", + "@id": "_:b22013", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16191", + "@id": "_:b22019", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25688", + "@id": "_:b25020", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16188", + "@id": "_:b22017", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25284", + "@id": "_:b26319", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16187", + "@id": "_:b22015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23739", + "@id": "_:b16339", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16189", + "@id": "_:b22022", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "result": { - "@id": "_:b25687", + "@id": "_:b22123", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16190", + "@id": "_:b22020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24934", + "@id": "_:b26670", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16186", + "@id": "_:b22021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21666", + "@id": "_:b22492", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16193", + "@id": "_:b22018", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", + "mode": "earl:automatic", "result": { - "@id": "_:b24971", + "@id": "_:b26472", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16182", + "@id": "_:b22016", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "result": { - "@id": "_:b16183", + "@id": "_:b25978", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16185", + "@id": "_:b22023", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", "result": { - "@id": "_:b20724", + "@id": "_:b15030", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e089-out.nq", + "title": "empty @base applied to the base option", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e089-in.jsonld", + "rdfs:comment": "Use of an empty @base is applied to the base option" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13473", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m008-out.jsonld", - "title": "@index map with @none node definition", - "rdfs:comment": "index on @index", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m008-context.jsonld" + "@id": "_:b3039", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example/base/" + } }, "assertions": [ { - "@id": "_:b13480", + "@id": "_:b3044", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "result": { - "@id": "_:b21183", + "@id": "_:b24847", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13474", + "@id": "_:b3046", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18384", + "@id": "_:b26891", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13478", + "@id": "_:b3042", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21181", + "@id": "_:b21035", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13479", + "@id": "_:b3047", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21182", + "@id": "_:b4971", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13481", + "@id": "_:b3043", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "result": { - "@id": "_:b21184", + "@id": "_:b19382", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13477", + "@id": "_:b3045", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16771", + "@id": "_:b2523", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13482", + "@id": "_:b3037", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13781", + "@id": "_:b3038", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13472", + "@id": "_:b3040", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", + "mode": "earl:automatic", "result": { - "@id": "_:b7192", + "@id": "_:b7176", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13475", + "@id": "_:b3041", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "result": { - "@id": "_:b21179", + "@id": "_:b15933", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13476", + "@id": "_:b3048", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", "result": { - "@id": "_:b21180", + "@id": "_:b22031", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e090-out.nq", + "title": "relative @base overrides base option and document location", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e090-in.jsonld", + "rdfs:comment": "Use of a relative @base overrides base option and document location" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5314", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m009-out.jsonld", - "title": "@index map with @none value", - "rdfs:comment": "index on @index", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m009-context.jsonld" + "@id": "_:b11013", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example/base/" + } }, "assertions": [ { - "@id": "_:b7171", + "@id": "_:b11017", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "result": { - "@id": "_:b24329", + "@id": "_:b23387", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7172", + "@id": "_:b11019", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24836", + "@id": "_:b26818", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7167", + "@id": "_:b11020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7168", + "@id": "_:b8155", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7169", + "@id": "_:b11021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13787", + "@id": "_:b22377", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7170", + "@id": "_:b11022", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "result": { - "@id": "_:b10559", + "@id": "_:b25532", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7176", + "@id": "_:b11014", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12654", + "@id": "_:b21437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7173", + "@id": "_:b11016", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25097", + "@id": "_:b25386", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7174", + "@id": "_:b11015", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", + "mode": "earl:automatic", "result": { - "@id": "_:b26367", + "@id": "_:b23421", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7175", + "@id": "_:b11018", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "result": { - "@id": "_:b25926", + "@id": "_:b26805", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7177", + "@id": "_:b11011", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", "result": { - "@id": "_:b25753", + "@id": "_:b11012", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e091-out.nq", + "title": "relative and absolute @base overrides base option and document location", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e091-in.jsonld", + "rdfs:comment": "Use of a relative and absolute @base overrides base option and document location" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9579", + "@id": "_:b17851", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m010-out.jsonld", - "title": "@index map with @none value using alias of @none", - "rdfs:comment": "index on @index", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m010-context.jsonld" - }, "assertions": [ { - "@id": "_:b9582", + "@id": "_:b17859", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "result": { - "@id": "_:b16335", + "@id": "_:b26269", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9580", + "@id": "_:b17855", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9803", + "@id": "_:b15500", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9577", + "@id": "_:b17854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9578", + "@id": "_:b22736", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9583", + "@id": "_:b17860", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23439", + "@id": "_:b26270", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9581", + "@id": "_:b17849", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "result": { - "@id": "_:b12684", + "@id": "_:b17850", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9586", + "@id": "_:b17858", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20273", + "@id": "_:b26268", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9585", + "@id": "_:b17853", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24945", + "@id": "_:b18137", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9584", + "@id": "_:b17852", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", + "mode": "earl:automatic", "result": { - "@id": "_:b12861", + "@id": "_:b19390", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9588", + "@id": "_:b17857", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "result": { - "@id": "_:b25692", + "@id": "_:b25782", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9587", + "@id": "_:b17856", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", "result": { - "@id": "_:b25691", + "@id": "_:b20581", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e092-out.nq", + "title": "Various relative IRIs as properties with with @vocab: ''", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e092-in.jsonld", + "rdfs:comment": "Pathological relative property IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15903", + "@id": "_:b15169", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m011-out.jsonld", - "title": "@language map with no @language", - "rdfs:comment": "index on @language", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m011-context.jsonld" - }, "assertions": [ { - "@id": "_:b15911", + "@id": "_:b15171", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "result": { - "@id": "_:b26510", + "@id": "_:b24400", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15910", + "@id": "_:b15172", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21851", + "@id": "_:b9525", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15908", + "@id": "_:b15174", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25903", + "@id": "_:b17458", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15905", + "@id": "_:b15176", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22397", + "@id": "_:b24122", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15906", + "@id": "_:b15177", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "result": { - "@id": "_:b24016", + "@id": "_:b25721", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15907", + "@id": "_:b15173", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24381", + "@id": "_:b1068", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15909", + "@id": "_:b15170", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26175", + "@id": "_:b19044", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15904", + "@id": "_:b15175", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", + "mode": "earl:automatic", "result": { - "@id": "_:b16856", + "@id": "_:b25832", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15901", + "@id": "_:b15167", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "result": { - "@id": "_:b15902", + "@id": "_:b15168", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15912", + "@id": "_:b15178", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", "result": { - "@id": "_:b26921", + "@id": "_:b25833", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e093-out.nq", + "title": "expand @graph container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e093-in.jsonld", + "rdfs:comment": "Use of @graph containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9764", + "@id": "_:b4191", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m012-out.jsonld", - "title": "language map with no @language using alias of @none", - "rdfs:comment": "index on @language", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m012-context.jsonld" - }, "assertions": [ { - "@id": "_:b9770", + "@id": "_:b4194", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "result": { - "@id": "_:b25164", + "@id": "_:b24550", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9771", + "@id": "_:b4195", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22709", + "@id": "_:b17447", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9762", + "@id": "_:b4198", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9763", + "@id": "_:b25585", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9767", + "@id": "_:b4192", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22965", + "@id": "_:b11722", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9768", + "@id": "_:b4193", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "result": { - "@id": "_:b16401", + "@id": "_:b23618", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9765", + "@id": "_:b4200", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12082", + "@id": "_:b25587", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9766", + "@id": "_:b4196", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19471", + "@id": "_:b25583", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9772", + "@id": "_:b4197", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", + "mode": "earl:automatic", "result": { - "@id": "_:b26575", + "@id": "_:b25584", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9769", + "@id": "_:b4199", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "result": { - "@id": "_:b25738", + "@id": "_:b25586", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9773", + "@id": "_:b4201", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", "result": { - "@id": "_:b25917", + "@id": "_:b25375", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e094-out.nq", + "title": "expand [@graph, @set] container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e094-in.jsonld", + "rdfs:comment": "Use of [@graph, @set] containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8560", + "@id": "_:b9088", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m013-out.jsonld", - "title": "id map using @none", - "rdfs:comment": "index on @id", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m013-context.jsonld" - }, "assertions": [ { - "@id": "_:b8565", + "@id": "_:b9095", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "result": { - "@id": "_:b15280", + "@id": "_:b24150", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8562", + "@id": "_:b9094", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10377", + "@id": "_:b22082", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8564", + "@id": "_:b9089", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15279", + "@id": "_:b9869", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8558", + "@id": "_:b9086", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8559", + "@id": "_:b9087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8567", + "@id": "_:b9097", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "result": { - "@id": "_:b13466", + "@id": "_:b24286", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8568", + "@id": "_:b9093", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15282", + "@id": "_:b22026", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8566", + "@id": "_:b9092", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15281", + "@id": "_:b24971", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8569", + "@id": "_:b9091", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", + "mode": "earl:automatic", "result": { - "@id": "_:b13109", + "@id": "_:b10754", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8561", + "@id": "_:b9090", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "result": { - "@id": "_:b9238", + "@id": "_:b11103", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8563", + "@id": "_:b9096", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", "result": { - "@id": "_:b15278", + "@id": "_:b25641", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e095-out.nq", + "title": "Creates an @graph container if value is a graph (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e095-in.jsonld", + "rdfs:comment": "Don't double-expand an already expanded graph" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7812", + "@id": "_:b12197", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m014-out.jsonld", - "title": "id map using @none with alias", - "rdfs:comment": "index on @id", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m014-context.jsonld" - }, "assertions": [ { - "@id": "_:b7813", + "@id": "_:b12196", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "result": { - "@id": "_:b16746", + "@id": "_:b5160", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7818", + "@id": "_:b12200", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26762", + "@id": "_:b24072", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7810", + "@id": "_:b12199", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7811", + "@id": "_:b22132", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7819", + "@id": "_:b12198", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21653", + "@id": "_:b19548", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7814", + "@id": "_:b12201", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "result": { - "@id": "_:b6473", + "@id": "_:b24394", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7821", + "@id": "_:b12205", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26763", + "@id": "_:b10882", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7820", + "@id": "_:b12204", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22366", + "@id": "_:b21660", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7817", + "@id": "_:b12203", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", + "mode": "earl:automatic", "result": { - "@id": "_:b23057", + "@id": "_:b26467", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7816", + "@id": "_:b12206", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "result": { - "@id": "_:b23933", + "@id": "_:b24118", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7815", + "@id": "_:b12202", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", "result": { - "@id": "_:b23663", + "@id": "_:b21008", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e096-out.nq", + "title": "expand [@graph, @index] container (multiple indexed objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e096-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11287", + "@id": "_:b13881", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m015-out.jsonld", - "title": "type map using @none with alias", - "rdfs:comment": "index on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m015-context.jsonld" - }, "assertions": [ { - "@id": "_:b11289", + "@id": "_:b13889", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "result": { - "@id": "_:b17509", + "@id": "_:b23458", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11294", + "@id": "_:b13882", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17514", + "@id": "_:b16631", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11288", + "@id": "_:b13879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17508", + "@id": "_:b13880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11296", + "@id": "_:b13885", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17516", + "@id": "_:b25750", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11290", + "@id": "_:b13883", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "result": { - "@id": "_:b17510", + "@id": "_:b17873", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11285", + "@id": "_:b13888", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11286", + "@id": "_:b26906", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11291", + "@id": "_:b13886", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17511", + "@id": "_:b18590", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11295", + "@id": "_:b13890", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", + "mode": "earl:automatic", "result": { - "@id": "_:b17515", + "@id": "_:b19058", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11293", + "@id": "_:b13884", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "result": { - "@id": "_:b17513", + "@id": "_:b23652", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11292", + "@id": "_:b13887", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", "result": { - "@id": "_:b17512", + "@id": "_:b26491", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e097-out.nq", + "title": "expand [@graph, @index, @set] container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e097-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6209", + "@id": "_:b1919", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m016-out.jsonld", - "title": "type map using @none with alias", - "rdfs:comment": "index on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m016-context.jsonld" - }, "assertions": [ { - "@id": "_:b6213", + "@id": "_:b1921", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "result": { - "@id": "_:b6223", + "@id": "_:b8926", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6215", + "@id": "_:b1923", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6225", + "@id": "_:b7621", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6218", + "@id": "_:b1924", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6228", + "@id": "_:b21328", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6210", + "@id": "_:b1928", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6220", + "@id": "_:b25636", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6219", + "@id": "_:b1926", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "result": { - "@id": "_:b6229", + "@id": "_:b10895", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6216", + "@id": "_:b1925", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6226", + "@id": "_:b25211", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6217", + "@id": "_:b1922", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6227", + "@id": "_:b16151", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6212", + "@id": "_:b1920", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", + "mode": "earl:automatic", "result": { - "@id": "_:b6222", + "@id": "_:b4855", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6211", + "@id": "_:b1917", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "result": { - "@id": "_:b6221", + "@id": "_:b1918", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6214", + "@id": "_:b1927", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", "result": { - "@id": "_:b6224", + "@id": "_:b24365", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e098-out.nq", + "title": "Do not expand [@graph, @index] container if value is a graph (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e098-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4537", + "@id": "_:b7188", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m017-out.jsonld", - "title": "graph index map using @none", - "rdfs:comment": "index on @graph and @index", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m017-context.jsonld" - }, "assertions": [ { - "@id": "_:b4540", + "@id": "_:b12081", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "result": { - "@id": "_:b21654", + "@id": "_:b12091", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4543", + "@id": "_:b12078", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4291", + "@id": "_:b12088", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4544", + "@id": "_:b12079", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23512", + "@id": "_:b12089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4546", + "@id": "_:b12077", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23514", + "@id": "_:b12087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4535", + "@id": "_:b12083", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "result": { - "@id": "_:b4536", + "@id": "_:b12093", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4545", + "@id": "_:b12082", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23513", + "@id": "_:b12092", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4539", + "@id": "_:b12086", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19427", + "@id": "_:b12096", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4541", + "@id": "_:b12080", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", + "mode": "earl:automatic", "result": { - "@id": "_:b19689", + "@id": "_:b12090", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4542", + "@id": "_:b12085", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "result": { - "@id": "_:b23511", + "@id": "_:b12095", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4538", + "@id": "_:b12084", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", "result": { - "@id": "_:b16985", + "@id": "_:b12094", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e099-out.nq", + "title": "expand [@graph, @id] container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e099-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16232", + "@id": "_:b15086", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m018-out.jsonld", - "title": "graph id map using @none", - "rdfs:comment": "index on @graph and @id", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m018-context.jsonld" - }, "assertions": [ { - "@id": "_:b16239", + "@id": "_:b15096", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "result": { - "@id": "_:b16247", + "@id": "_:b15104", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16241", + "@id": "_:b15090", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16249", + "@id": "_:b15100", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16237", + "@id": "_:b15095", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16246", + "@id": "_:b15103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16238", + "@id": "_:b15088", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14475", + "@id": "_:b15098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16242", + "@id": "_:b15093", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "result": { - "@id": "_:b12166", + "@id": "_:b6449", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16240", + "@id": "_:b15087", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16248", + "@id": "_:b15097", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16235", + "@id": "_:b15094", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15002", + "@id": "_:b7639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16234", + "@id": "_:b15091", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", + "mode": "earl:automatic", "result": { - "@id": "_:b16244", + "@id": "_:b15101", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16233", + "@id": "_:b15089", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "result": { - "@id": "_:b16243", + "@id": "_:b15099", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16236", + "@id": "_:b15092", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", "result": { - "@id": "_:b16245", + "@id": "_:b15102", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e100-out.nq", + "title": "expand [@graph, @id, @set] container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e100-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7308", + "@id": "_:b13226", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m019-out.jsonld", - "title": "graph id map using alias of @none", - "rdfs:comment": "index on @graph and @id", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m019-context.jsonld" - }, "assertions": [ { - "@id": "_:b7317", + "@id": "_:b13224", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "result": { - "@id": "_:b23628", + "@id": "_:b13225", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7311", + "@id": "_:b13230", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19761", + "@id": "_:b21847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7315", + "@id": "_:b13231", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15230", + "@id": "_:b21848", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7312", + "@id": "_:b13234", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21833", + "@id": "_:b21850", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7316", + "@id": "_:b13233", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "result": { - "@id": "_:b25792", + "@id": "_:b21849", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7314", + "@id": "_:b13229", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24526", + "@id": "_:b19421", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7306", + "@id": "_:b13227", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7307", + "@id": "_:b14471", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7310", + "@id": "_:b13228", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", + "mode": "earl:automatic", "result": { - "@id": "_:b15364", + "@id": "_:b16776", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7309", + "@id": "_:b13232", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "result": { - "@id": "_:b8061", + "@id": "_:b21603", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7313", + "@id": "_:b13235", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", "result": { - "@id": "_:b24372", + "@id": "_:b19067", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e101-out.nq", + "title": "Do not expand [@graph, @id] container if value is a graph (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e101-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20296", + "@id": "_:b9605", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m020-out.jsonld", - "title": "node reference compacts to string value of type map", - "rdfs:comment": "index on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m020-context.jsonld" - }, "assertions": [ { - "@id": "_:b20300", + "@id": "_:b9607", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "result": { - "@id": "_:b25549", + "@id": "_:b10906", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20297", + "@id": "_:b9608", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21826", + "@id": "_:b10907", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20303", + "@id": "_:b9610", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13667", + "@id": "_:b10909", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20302", + "@id": "_:b9614", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24415", + "@id": "_:b10913", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20294", + "@id": "_:b9612", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "result": { - "@id": "_:b20295", + "@id": "_:b10911", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20304", + "@id": "_:b9603", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21465", + "@id": "_:b9604", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20299", + "@id": "_:b9611", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18530", + "@id": "_:b10910", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20301", + "@id": "_:b9609", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", + "mode": "earl:automatic", "result": { - "@id": "_:b25550", + "@id": "_:b10908", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20298", + "@id": "_:b9606", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "result": { - "@id": "_:b22475", + "@id": "_:b10905", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20305", + "@id": "_:b9613", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", "result": { - "@id": "_:b25551", + "@id": "_:b10912", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e102-out.nq", + "title": "Expand @graph container if value is a graph (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e102-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15781", + "@id": "_:b24030", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m021-out.jsonld", - "title": "node reference compacts to string value of type map with @type: @id", - "rdfs:comment": "index on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m021-context.jsonld" - }, "assertions": [ { - "@id": "_:b15783", + "@id": "_:b24038", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "result": { - "@id": "_:b20495", + "@id": "_:b20829", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15785", + "@id": "_:b24033", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24540", + "@id": "_:b26333", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15787", + "@id": "_:b24032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22150", + "@id": "_:b19558", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15790", + "@id": "_:b24034", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23845", + "@id": "_:b26711", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15786", + "@id": "_:b24035", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "result": { - "@id": "_:b25967", + "@id": "_:b25948", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15788", + "@id": "_:b24029", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25968", + "@id": "_:b20544", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15789", + "@id": "_:b24037", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25969", + "@id": "_:b5176", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15782", + "@id": "_:b24036", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", + "mode": "earl:automatic", "result": { - "@id": "_:b15988", + "@id": "_:b26362", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15784", + "@id": "_:b24031", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "result": { - "@id": "_:b24170", + "@id": "_:b21270", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15779", + "@id": "_:b24039", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", "result": { - "@id": "_:b15780", + "@id": "_:b25768", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e103-out.nq", + "title": "Expand @graph container if value is a graph (multiple graphs)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e103-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11385", + "@id": "_:b17719", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m022-out.jsonld", - "title": "node reference compacts to string value of type map with @type: @vocab", - "rdfs:comment": "index on @type", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/m022-context.jsonld" - }, "assertions": [ { - "@id": "_:b11389", + "@id": "_:b17720", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "result": { - "@id": "_:b24017", + "@id": "_:b18607", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11392", + "@id": "_:b17721", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26964", + "@id": "_:b20449", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11390", + "@id": "_:b17726", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26277", + "@id": "_:b12061", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11394", + "@id": "_:b17723", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17688", + "@id": "_:b24930", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11391", + "@id": "_:b17724", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "result": { - "@id": "_:b23365", + "@id": "_:b24152", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11387", + "@id": "_:b17722", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11347", + "@id": "_:b24452", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11393", + "@id": "_:b17725", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23126", + "@id": "_:b24938", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11386", + "@id": "_:b17727", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", + "mode": "earl:automatic", "result": { - "@id": "_:b18298", + "@id": "_:b26768", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11388", + "@id": "_:b17728", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "result": { - "@id": "_:b16818", + "@id": "_:b25520", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11383", + "@id": "_:b17729", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", "result": { - "@id": "_:b11384", + "@id": "_:b26769", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e104-out.nq", + "title": "Creates an @graph container if value is a graph (mixed graph and object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e104-in.jsonld", + "rdfs:comment": "Don't double-expand an already expanded graph" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4523", + "@id": "_:b2868", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n001-out.jsonld", - "title": "Indexes to @nest for property with @nest", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n001-context.jsonld" - }, "assertions": [ { - "@id": "_:b4532", + "@id": "_:b2870", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "result": { - "@id": "_:b24676", + "@id": "_:b17152", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://kasei.us/about/#greg" }, { - "@id": "_:b4528", + "@id": "_:b2876", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14928", + "@id": "_:b20337", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4521", + "@id": "_:b2872", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4522", + "@id": "_:b19383", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4526", + "@id": "_:b2875", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12165", + "@id": "_:b20336", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4530", + "@id": "_:b2871", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "result": { - "@id": "_:b22980", + "@id": "_:b18305", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4531", + "@id": "_:b2874", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24675", + "@id": "_:b20335", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4524", + "@id": "_:b2873", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11859", + "@id": "_:b20334", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4527", + "@id": "_:b2869", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", + "mode": "earl:automatic", "result": { - "@id": "_:b24674", + "@id": "_:b7174", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4525", + "@id": "_:b2877", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "result": { - "@id": "_:b24673", + "@id": "_:b20338", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4529", + "@id": "_:b2866", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", "result": { - "@id": "_:b18633", + "@id": "_:b2867", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e105-out.nq", + "title": "Do not expand [@graph, @index] container if value is a graph (mixed graph and object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e105-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18751", + "@id": "_:b4228", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n002-out.jsonld", - "title": "Indexes to @nest for all properties with @nest", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n002-context.jsonld" - }, "assertions": [ { - "@id": "_:b18749", + "@id": "_:b4235", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "result": { - "@id": "_:b18750", + "@id": "_:b26798", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18754", + "@id": "_:b4231", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18643", + "@id": "_:b21231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18759", + "@id": "_:b4233", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17267", + "@id": "_:b26797", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18752", + "@id": "_:b4232", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19950", + "@id": "_:b17134", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18760", + "@id": "_:b4234", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "result": { - "@id": "_:b12323", + "@id": "_:b6630", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18756", + "@id": "_:b4230", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24031", + "@id": "_:b22695", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18757", + "@id": "_:b4236", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24032", + "@id": "_:b23161", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18755", + "@id": "_:b4237", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", + "mode": "earl:automatic", "result": { - "@id": "_:b24030", + "@id": "_:b25145", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18753", + "@id": "_:b4226", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "result": { - "@id": "_:b22179", + "@id": "_:b4227", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18758", + "@id": "_:b4229", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", "result": { - "@id": "_:b22243", + "@id": "_:b20643", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e106-out.nq", + "title": "Do not expand [@graph, @id] container if value is a graph (mixed graph and object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e106-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14123", + "@id": "_:b4278", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n003-out.jsonld", - "title": "Nests using alias of @nest", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n003-context.jsonld" - }, "assertions": [ { - "@id": "_:b14131", + "@id": "_:b4279", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "result": { - "@id": "_:b17328", + "@id": "_:b7275", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://kasei.us/about/#greg" }, { - "@id": "_:b14129", + "@id": "_:b4281", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17326", + "@id": "_:b15536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14124", + "@id": "_:b4287", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17322", + "@id": "_:b22137", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14132", + "@id": "_:b4276", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17329", + "@id": "_:b4277", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14130", + "@id": "_:b4286", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "result": { - "@id": "_:b17327", + "@id": "_:b14088", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14125", + "@id": "_:b4283", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b850", + "@id": "_:b22134", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14127", + "@id": "_:b4282", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17324", + "@id": "_:b21610", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14126", + "@id": "_:b4285", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", + "mode": "earl:automatic", "result": { - "@id": "_:b17323", + "@id": "_:b22136", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14121", + "@id": "_:b4280", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "result": { - "@id": "_:b14122", + "@id": "_:b10935", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14128", + "@id": "_:b4284", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", "result": { - "@id": "_:b17325", + "@id": "_:b22135", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e107-out.nq", + "title": "expand [@graph, @index] container (indexes with multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e107-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1837", + "@id": "_:b18571", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n004-out.jsonld", - "title": "Arrays of nested values", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n004-context.jsonld" - }, "assertions": [ { - "@id": "_:b1838", + "@id": "_:b18580", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "result": { - "@id": "_:b8347", + "@id": "_:b24724", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1835", + "@id": "_:b18569", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1836", + "@id": "_:b18570", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1841", + "@id": "_:b18575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24467", + "@id": "_:b20627", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1844", + "@id": "_:b18572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9069", + "@id": "_:b21125", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1846", + "@id": "_:b18576", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "result": { - "@id": "_:b24469", + "@id": "_:b23877", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1845", + "@id": "_:b18574", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15513", + "@id": "_:b24992", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1843", + "@id": "_:b18579", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19422", + "@id": "_:b22863", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1842", + "@id": "_:b18578", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", + "mode": "earl:automatic", "result": { - "@id": "_:b24468", + "@id": "_:b18754", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1839", + "@id": "_:b18573", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "result": { - "@id": "_:b18326", + "@id": "_:b19930", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1840", + "@id": "_:b18577", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", "result": { - "@id": "_:b8345", + "@id": "_:b26894", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e108-out.nq", + "title": "expand [@graph, @id] container (multiple ids and objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e108-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2705", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n005-out.jsonld", - "title": "Nested @container: @list", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n005-context.jsonld" - }, "assertions": [ { - "@id": "_:b2709", + "@id": "_:b6949", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "result": { - "@id": "_:b6501", + "@id": "_:b13180", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2711", + "@id": "_:b6939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25664", + "@id": "_:b6940", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2712", + "@id": "_:b6943", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19342", + "@id": "_:b18704", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2710", + "@id": "_:b6947", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15876", + "@id": "_:b18708", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2706", + "@id": "_:b6946", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "result": { - "@id": "_:b16795", + "@id": "_:b18707", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2703", + "@id": "_:b6948", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2704", + "@id": "_:b18709", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2708", + "@id": "_:b6944", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23669", + "@id": "_:b18705", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2714", + "@id": "_:b6942", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", + "mode": "earl:automatic", "result": { - "@id": "_:b25665", + "@id": "_:b18194", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2713", + "@id": "_:b6941", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "result": { - "@id": "_:b5009", + "@id": "_:b11981", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2707", + "@id": "_:b6945", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", "result": { - "@id": "_:b22048", + "@id": "_:b18706", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e109-out.nq", + "title": "IRI expansion of fragments including ':'", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e109-in.jsonld", + "rdfs:comment": "Do not treat as absolute IRIs values that look like compact IRIs if they're not absolute" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7454", + "@id": "_:b9617", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n006-out.jsonld", - "title": "Nested @container: @index", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n006-context.jsonld" - }, "assertions": [ { - "@id": "_:b7463", + "@id": "_:b9619", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "result": { - "@id": "_:b19228", + "@id": "_:b24051", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7456", + "@id": "_:b9624", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19033", + "@id": "_:b19399", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7452", + "@id": "_:b9626", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7453", + "@id": "_:b2285", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7458", + "@id": "_:b9623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b877", + "@id": "_:b24674", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7457", + "@id": "_:b9625", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "result": { - "@id": "_:b24416", + "@id": "_:b24675", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7460", + "@id": "_:b9615", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15942", + "@id": "_:b9616", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7459", + "@id": "_:b9622", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26052", + "@id": "_:b18145", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7455", + "@id": "_:b9621", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", + "mode": "earl:automatic", "result": { - "@id": "_:b18730", + "@id": "_:b24673", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7461", + "@id": "_:b9618", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "result": { - "@id": "_:b23673", + "@id": "_:b21204", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7462", + "@id": "_:b9620", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", "result": { - "@id": "_:b26519", + "@id": "_:b24672", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e110-out.nq", + "title": "Various relative IRIs as properties with with relative @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e110-in.jsonld", + "rdfs:comment": "Pathological relative property IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18353", + "@id": "_:b8462", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n007-out.jsonld", - "title": "Nested @container: @language", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n007-context.jsonld" - }, "assertions": [ { - "@id": "_:b18357", + "@id": "_:b8464", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "result": { - "@id": "_:b26437", + "@id": "_:b23083", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18356", + "@id": "_:b8470", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25823", + "@id": "_:b21181", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18360", + "@id": "_:b8467", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "result": { - "@id": "_:b26439", + "@id": "_:b23621", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b18359", + "@id": "_:b8471", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26438", + "@id": "_:b23623", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18355", + "@id": "_:b8460", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "result": { - "@id": "_:b24986", + "@id": "_:b8461", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18361", + "@id": "_:b8468", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26440", + "@id": "_:b15981", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18351", + "@id": "_:b8465", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18352", + "@id": "_:b23620", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18358", + "@id": "_:b8469", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", + "mode": "earl:automatic", "result": { - "@id": "_:b26340", + "@id": "_:b23622", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18354", + "@id": "_:b8463", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "result": { - "@id": "_:b5500", + "@id": "_:b18307", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18362", + "@id": "_:b8466", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", "result": { - "@id": "_:b2888", + "@id": "_:b10592", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e111-out.nq", + "title": "Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e111-in.jsonld", + "rdfs:comment": "Pathological relative property IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b588", + "@id": "_:b10814", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n008-out.jsonld", - "title": "Nested @container: @type", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n008-context.jsonld" - }, "assertions": [ { - "@id": "_:b4052", + "@id": "_:b10815", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "result": { - "@id": "_:b20967", + "@id": "_:b17974", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4054", + "@id": "_:b10818", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20969", + "@id": "_:b17596", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4047", + "@id": "_:b10812", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "result": { - "@id": "_:b16489", + "@id": "_:b10813", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b4051", + "@id": "_:b10819", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20966", + "@id": "_:b6999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4049", + "@id": "_:b10823", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "result": { - "@id": "_:b7113", + "@id": "_:b19065", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4048", + "@id": "_:b10816", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14881", + "@id": "_:b1411", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4053", + "@id": "_:b10822", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20968", + "@id": "_:b19064", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4055", + "@id": "_:b10820", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", + "mode": "earl:automatic", "result": { - "@id": "_:b20970", + "@id": "_:b19062", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4050", + "@id": "_:b10817", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "result": { - "@id": "_:b20965", + "@id": "_:b19061", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4045", + "@id": "_:b10821", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", "result": { - "@id": "_:b4046", + "@id": "_:b19063", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e112-out.nq", + "title": "Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e112-in.jsonld", + "rdfs:comment": "Pathological relative property IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8446", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n009-out.jsonld", - "title": "Nested @container: @id", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n009-context.jsonld" - }, "assertions": [ { - "@id": "_:b8451", + "@id": "_:b6600", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "result": { - "@id": "_:b26399", + "@id": "_:b18976", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8452", + "@id": "_:b6598", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26766", + "@id": "_:b18974", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8454", + "@id": "_:b6595", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25212", + "@id": "_:b1220", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8448", + "@id": "_:b6592", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21894", + "@id": "_:b6593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8453", + "@id": "_:b6601", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "result": { - "@id": "_:b14537", + "@id": "_:b8992", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8447", + "@id": "_:b6597", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12743", + "@id": "_:b18973", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8456", + "@id": "_:b6602", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25235", + "@id": "_:b14438", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8455", + "@id": "_:b6594", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", + "mode": "earl:automatic", "result": { - "@id": "_:b26821", + "@id": "_:b18858", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8449", + "@id": "_:b6596", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "result": { - "@id": "_:b18699", + "@id": "_:b18972", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8450", + "@id": "_:b6599", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", "result": { - "@id": "_:b10697", + "@id": "_:b18975", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e113-out.nq", + "title": "context with JavaScript Object property names", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e113-in.jsonld", + "rdfs:comment": "Expand with context including JavaScript Object property names" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11755", + "@id": "_:b14726", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n010-out.jsonld", - "title": "Multiple nest aliases", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n010-context.jsonld" - }, "assertions": [ { - "@id": "_:b11756", + "@id": "_:b14724", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "result": { - "@id": "_:b3347", + "@id": "_:b14725", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11759", + "@id": "_:b14731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22861", + "@id": "_:b24404", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11763", + "@id": "_:b14730", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10654", + "@id": "_:b21087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11764", + "@id": "_:b14729", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23486", + "@id": "_:b22097", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11753", + "@id": "_:b14734", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "result": { - "@id": "_:b11754", + "@id": "_:b25961", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11757", + "@id": "_:b14733", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20888", + "@id": "_:b24829", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11758", + "@id": "_:b14728", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23483", + "@id": "_:b9553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11760", + "@id": "_:b14727", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", + "mode": "earl:automatic", "result": { - "@id": "_:b23484", + "@id": "_:b19529", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11761", + "@id": "_:b14732", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "result": { - "@id": "_:b13410", + "@id": "_:b26378", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11762", + "@id": "_:b14735", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", "result": { - "@id": "_:b23485", + "@id": "_:b26379", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e114-out.nq", + "title": "Expansion allows multiple properties expanding to @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e114-in.jsonld", + "rdfs:comment": "An exception for the colliding keywords error is made for @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3755", + "@id": "_:b13893", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n011-out.jsonld", - "title": "Nests using alias of @nest (defined with @id)", - "rdfs:comment": "Compaction using @nest", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/n011-context.jsonld" - }, "assertions": [ { - "@id": "_:b3758", + "@id": "_:b13896", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "result": { - "@id": "_:b19163", + "@id": "_:b16573", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3753", + "@id": "_:b13897", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3754", + "@id": "_:b16574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3762", + "@id": "_:b13901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20074", + "@id": "_:b3522", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3759", + "@id": "_:b13891", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25715", + "@id": "_:b13892", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3764", + "@id": "_:b13898", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "result": { - "@id": "_:b22961", + "@id": "_:b16575", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3760", + "@id": "_:b13894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25716", + "@id": "_:b16571", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3761", + "@id": "_:b13899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20853", + "@id": "_:b16576", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3756", + "@id": "_:b13900", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", + "mode": "earl:automatic", "result": { - "@id": "_:b19923", + "@id": "_:b2996", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3763", + "@id": "_:b13895", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "result": { - "@id": "_:b12769", + "@id": "_:b16572", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3757", + "@id": "_:b13902", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", "result": { - "@id": "_:b20876", + "@id": "_:b1003", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e117-out.nq", + "title": "A term starting with a colon can expand to a different IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e117-in.jsonld", + "rdfs:comment": "Terms may begin with a colon and not be treated as IRIs." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6245", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p001-out.jsonld", - "title": "Compact IRI will not use an expanded term definition in 1.0", - "rdfs:comment": "Terms with an expanded term definition are not used for creating compact IRIs", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/p001-context.jsonld" + "@id": "_:b4155", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b6251", + "@id": "_:b4158", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "result": { - "@id": "_:b19038", + "@id": "_:b21537", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6253", + "@id": "_:b4160", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22647", + "@id": "_:b25923", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6246", + "@id": "_:b4157", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17968", + "@id": "_:b20442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6250", + "@id": "_:b4162", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20486", + "@id": "_:b21944", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6249", + "@id": "_:b4159", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "result": { - "@id": "_:b22646", + "@id": "_:b23777", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6248", + "@id": "_:b4163", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21748", + "@id": "_:b23901", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6247", + "@id": "_:b4161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19290", + "@id": "_:b26177", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6254", + "@id": "_:b4165", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", + "mode": "earl:automatic", "result": { - "@id": "_:b22648", + "@id": "_:b26501", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6243", + "@id": "_:b4164", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "result": { - "@id": "_:b6244", + "@id": "_:b23610", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6252", + "@id": "_:b4156", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", "result": { - "@id": "_:b19115", + "@id": "_:b18737", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e118-out.nq", + "title": "Expanding a value staring with a colon does not treat that value as an IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e118-in.jsonld", + "rdfs:comment": "Terms may begin with a colon and not be treated as IRIs." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1119", + "@id": "_:b22297", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p002-out.jsonld", - "title": "Compact IRI does not use expanded term definition in 1.1", - "rdfs:comment": "Terms with an expanded term definition are not used for creating compact IRIs", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/p002-context.jsonld" - }, "assertions": [ { - "@id": "_:b1122", + "@id": "_:b22303", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "result": { - "@id": "_:b5344", + "@id": "_:b25004", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1117", + "@id": "_:b22301", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1118", + "@id": "_:b21200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1127", + "@id": "_:b22302", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5349", + "@id": "_:b26415", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1126", + "@id": "_:b22300", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5348", + "@id": "_:b23441", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1121", + "@id": "_:b22299", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "result": { - "@id": "_:b5343", + "@id": "_:b25716", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1123", + "@id": "_:b22305", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5345", + "@id": "_:b21080", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1128", + "@id": "_:b22304", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5350", + "@id": "_:b26941", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1125", + "@id": "_:b22306", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", + "mode": "earl:automatic", "result": { - "@id": "_:b5347", + "@id": "_:b14601", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1124", + "@id": "_:b22295", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "result": { - "@id": "_:b5346", + "@id": "_:b22296", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1120", + "@id": "_:b22298", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", "result": { - "@id": "_:b5342", + "@id": "_:b11984", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e119-out.nq", + "title": "Ignore some terms with @, allow others.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e119-in.jsonld", + "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14643", + "@id": "_:b13972", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p003-out.jsonld", - "title": "Compact IRI does not use simple term that does not end with a gen-delim", - "rdfs:comment": "Terms not ending with a gen-delim are not used for creating compact IRIs", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/p003-context.jsonld" - }, "assertions": [ { - "@id": "_:b14645", + "@id": "_:b13976", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "result": { - "@id": "_:b22114", + "@id": "_:b12180", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14641", + "@id": "_:b13978", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14642", + "@id": "_:b21997", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14646", + "@id": "_:b13974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24154", + "@id": "_:b20914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14652", + "@id": "_:b13977", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25366", + "@id": "_:b21996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14649", + "@id": "_:b13979", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "result": { - "@id": "_:b25182", + "@id": "_:b21998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14651", + "@id": "_:b13980", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26256", + "@id": "_:b21999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14648", + "@id": "_:b13981", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24548", + "@id": "_:b18731", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14647", + "@id": "_:b13975", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", + "mode": "earl:automatic", "result": { - "@id": "_:b24624", + "@id": "_:b18084", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14644", + "@id": "_:b13970", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "result": { - "@id": "_:b20601", + "@id": "_:b13971", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14650", + "@id": "_:b13973", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", "result": { - "@id": "_:b22309", + "@id": "_:b19978", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e120-out.nq", + "title": "Ignore some values of @id with @, allow others.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e120-in.jsonld", + "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8797", + "@id": "_:b13697", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p004-out.jsonld", - "title": "Compact IRIs using simple terms ending with gen-delim", - "rdfs:comment": "All simple terms ending with gen-delim are suitable for compaction", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/p004-context.jsonld" - }, "assertions": [ { - "@id": "_:b14790", + "@id": "_:b13706", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "result": { - "@id": "_:b12874", + "@id": "_:b22215", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14781", + "@id": "_:b13698", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14782", + "@id": "_:b14520", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14784", + "@id": "_:b13703", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19977", + "@id": "_:b22212", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14786", + "@id": "_:b13700", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23349", + "@id": "_:b22210", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14791", + "@id": "_:b13705", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "result": { - "@id": "_:b23353", + "@id": "_:b22214", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14789", + "@id": "_:b13704", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23352", + "@id": "_:b22213", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14785", + "@id": "_:b13702", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23124", + "@id": "_:b22211", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14783", + "@id": "_:b13699", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", + "mode": "earl:automatic", "result": { - "@id": "_:b14322", + "@id": "_:b18805", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14788", + "@id": "_:b13701", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "result": { - "@id": "_:b23351", + "@id": "_:b20431", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14787", + "@id": "_:b13695", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", "result": { - "@id": "_:b23350", + "@id": "_:b13696", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e121-out.nq", + "title": "Ignore some values of @reverse with @, allow others.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e121-in.jsonld", + "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14580", + "@id": "_:b20020", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p005-out.jsonld", - "title": "Compact IRI uses term with definition including @prefix: true", - "rdfs:comment": "Expanded term definition may set prefix explicitly in 1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/p005-context.jsonld" - }, "assertions": [ { - "@id": "_:b14585", + "@id": "_:b20028", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "result": { - "@id": "_:b21299", + "@id": "_:b24488", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14586", + "@id": "_:b20022", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26509", + "@id": "_:b23404", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14583", + "@id": "_:b20026", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17480", + "@id": "_:b14389", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14581", + "@id": "_:b20021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22160", + "@id": "_:b22389", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14587", + "@id": "_:b20029", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "result": { - "@id": "_:b24817", + "@id": "_:b23983", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14589", + "@id": "_:b20018", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14499", + "@id": "_:b20019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14590", + "@id": "_:b20023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26979", + "@id": "_:b23649", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14584", + "@id": "_:b20024", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", + "mode": "earl:automatic", "result": { - "@id": "_:b25749", + "@id": "_:b24772", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14582", + "@id": "_:b20025", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "result": { - "@id": "_:b21428", + "@id": "_:b26050", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14588", + "@id": "_:b20027", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", "result": { - "@id": "_:b19930", + "@id": "_:b3809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e122-out.nq", + "title": "Ignore some IRIs when that start with @ when expanding.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e122-in.jsonld", + "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1285", + "@id": "_:b13907", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p006-out.jsonld", - "title": "Compact IRI uses term with definition including @prefix: true", - "rdfs:comment": "Expanded term definition may set prefix explicitly in 1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/p006-context.jsonld" - }, "assertions": [ { - "@id": "_:b1290", + "@id": "_:b13915", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "result": { - "@id": "_:b24516", + "@id": "_:b26730", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1293", + "@id": "_:b13912", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26984", + "@id": "_:b19388", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1292", + "@id": "_:b13913", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26878", + "@id": "_:b9752", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1287", + "@id": "_:b13916", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19498", + "@id": "_:b26731", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1283", + "@id": "_:b13911", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "result": { - "@id": "_:b1284", + "@id": "_:b8326", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1291", + "@id": "_:b13909", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7594", + "@id": "_:b18785", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1289", + "@id": "_:b13914", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15651", + "@id": "_:b24622", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1286", + "@id": "_:b13910", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", + "mode": "earl:automatic", "result": { - "@id": "_:b18306", + "@id": "_:b23627", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1294", + "@id": "_:b13908", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "result": { - "@id": "_:b26044", + "@id": "_:b15938", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1288", + "@id": "_:b13917", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", "result": { - "@id": "_:b19401", + "@id": "_:b7347", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid typed value", + "title": "Value objects including invalid literal datatype IRIs are rejected", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e123-in.jsonld", + "rdfs:comment": "Processors MUST validate datatype IRIs." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1858", + "@id": "_:b9317", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p007-out.jsonld", - "title": "Compact IRI not used as prefix", - "rdfs:comment": "Terms including a colon are excluded from being used as a prefix", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/p007-context.jsonld" - }, "assertions": [ { - "@id": "_:b1866", + "@id": "_:b9325", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "result": { - "@id": "_:b10439", + "@id": "_:b25710", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1862", + "@id": "_:b9320", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22905", + "@id": "_:b25013", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1865", + "@id": "_:b9321", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26516", + "@id": "_:b25574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1864", + "@id": "_:b9315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25131", + "@id": "_:b9316", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1860", + "@id": "_:b9319", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "result": { - "@id": "_:b19222", + "@id": "_:b17085", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1856", + "@id": "_:b9323", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1857", + "@id": "_:b22995", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1867", + "@id": "_:b9326", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20443", + "@id": "_:b25711", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1863", + "@id": "_:b9322", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "mode": "earl:automatic", "result": { - "@id": "_:b24706", + "@id": "_:b25709", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1859", + "@id": "_:b9324", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "result": { - "@id": "_:b18648", + "@id": "_:b20215", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1861", + "@id": "_:b9318", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", "result": { - "@id": "_:b18323", + "@id": "_:b12045", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } + ], + "testResult": [ + "https://w3c.github.io/json-ld-api/tests/toRdf/e124-out.nq", + "https://w3c.github.io/json-ld-api/tests/toRdf/0124-out.nq" + ], + "title": [ + "compact IRI as @vocab", + "IRI Resolution (4)" + ], + "testAction": [ + "https://w3c.github.io/json-ld-api/tests/toRdf/0124-in.jsonld", + "https://w3c.github.io/json-ld-api/tests/toRdf/e124-in.jsonld" + ], + "rdfs:comment": [ + "Verifies that @vocab defined as a compact IRI expands properly", + "IRI resolution according to RFC3986." ] }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14568", + "@id": "_:b17814", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p008-out.jsonld", - "title": "Compact IRI does not use term with definition including @prefix: false", - "rdfs:comment": "Expanded term definition may set prefix explicitly in 1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/p008-context.jsonld" - }, "assertions": [ { - "@id": "_:b14572", + "@id": "_:b17816", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "result": { - "@id": "_:b20765", + "@id": "_:b17617", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14574", + "@id": "_:b17822", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26239", + "@id": "_:b17829", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14575", + "@id": "_:b17824", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3853", + "@id": "_:b17831", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14569", + "@id": "_:b17821", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15163", + "@id": "_:b17828", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14573", + "@id": "_:b17815", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "result": { - "@id": "_:b21561", + "@id": "_:b17825", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14571", + "@id": "_:b17818", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23452", + "@id": "_:b17826", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14576", + "@id": "_:b17819", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26240", + "@id": "_:b15638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14570", + "@id": "_:b17817", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "mode": "earl:automatic", "result": { - "@id": "_:b16568", + "@id": "_:b13105", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14577", + "@id": "_:b17820", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "result": { - "@id": "_:b23727", + "@id": "_:b17827", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14566", + "@id": "_:b17823", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", "result": { - "@id": "_:b14567", + "@id": "_:b17830", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } + ], + "testResult": [ + "https://w3c.github.io/json-ld-api/tests/toRdf/0125-out.nq", + "https://w3c.github.io/json-ld-api/tests/toRdf/e125-out.nq" + ], + "title": [ + "term as @vocab", + "IRI Resolution (5)" + ], + "testAction": [ + "https://w3c.github.io/json-ld-api/tests/toRdf/e125-in.jsonld", + "https://w3c.github.io/json-ld-api/tests/toRdf/0125-in.jsonld" + ], + "rdfs:comment": [ + "IRI resolution according to RFC3986.", + "Verifies that @vocab defined as a term expands properly" ] }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1461", + "@id": "_:b882", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi01-out.jsonld", - "title": "property-valued index indexes property value, instead of property (value)", - "rdfs:comment": "Compacting property-valued indexes.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi01-context.jsonld" - }, "assertions": [ { - "@id": "_:b1463", + "@id": "_:b890", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "result": { - "@id": "_:b24413", + "@id": "_:b24274", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1466", + "@id": "_:b887", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23364", + "@id": "_:b25766", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1468", + "@id": "_:b880", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22416", + "@id": "_:b881", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1465", + "@id": "_:b884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23745", + "@id": "_:b22622", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1459", + "@id": "_:b885", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "result": { - "@id": "_:b1460", + "@id": "_:b24136", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1464", + "@id": "_:b888", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25915", + "@id": "_:b25695", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1469", + "@id": "_:b891", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23310", + "@id": "_:b25104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1470", + "@id": "_:b886", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", + "mode": "earl:automatic", "result": { - "@id": "_:b26116", + "@id": "_:b24737", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1462", + "@id": "_:b883", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "result": { - "@id": "_:b22081", + "@id": "_:b15190", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1467", + "@id": "_:b889", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", "result": { - "@id": "_:b21325", + "@id": "_:b25764", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e126-out.nq", + "title": "A scoped context may include itself recursively (direct)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e126-in.jsonld", + "rdfs:comment": "Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11320", + "@id": "_:b3670", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi02-out.jsonld", - "title": "property-valued index indexes property value, instead of property (multiple values)", - "rdfs:comment": "Compacting property-valued indexes.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi02-context.jsonld" - }, "assertions": [ { - "@id": "_:b16048", + "@id": "_:b3672", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "result": { - "@id": "_:b23265", + "@id": "_:b1410", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16053", + "@id": "_:b3673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17254", + "@id": "_:b16684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16047", + "@id": "_:b3668", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1413", + "@id": "_:b3669", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16044", + "@id": "_:b3675", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16045", + "@id": "_:b16686", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16051", + "@id": "_:b3679", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "result": { - "@id": "_:b23268", + "@id": "_:b16690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16052", + "@id": "_:b3676", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23269", + "@id": "_:b16687", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16049", + "@id": "_:b3678", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23266", + "@id": "_:b16689", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16046", + "@id": "_:b3671", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", + "mode": "earl:automatic", "result": { - "@id": "_:b21474", + "@id": "_:b10598", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16054", + "@id": "_:b3677", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "result": { - "@id": "_:b3996", + "@id": "_:b16688", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16050", + "@id": "_:b3674", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", "result": { - "@id": "_:b23267", + "@id": "_:b16685", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e127-out.nq", + "title": "A scoped context may include itself recursively (indirect)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e127-in.jsonld", + "rdfs:comment": "Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11133", + "@id": "_:b11275", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi03-out.jsonld", - "title": "property-valued index indexes property value, instead of property (node)", - "rdfs:comment": "Compacting property-valued indexes.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi03-context.jsonld" - }, "assertions": [ { - "@id": "_:b21286", + "@id": "_:b11276", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "result": { - "@id": "_:b26294", + "@id": "_:b11774", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21280", + "@id": "_:b11278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21344", + "@id": "_:b22474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21284", + "@id": "_:b11279", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24810", + "@id": "_:b25023", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21283", + "@id": "_:b11282", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24255", + "@id": "_:b23565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21282", + "@id": "_:b11284", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "result": { - "@id": "_:b23914", + "@id": "_:b22312", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21287", + "@id": "_:b11280", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26573", + "@id": "_:b25058", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21285", + "@id": "_:b11283", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25327", + "@id": "_:b25060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21281", + "@id": "_:b11277", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", + "mode": "earl:automatic", "result": { - "@id": "_:b23794", + "@id": "_:b14467", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b21278", + "@id": "_:b11281", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "result": { - "@id": "_:b21279", + "@id": "_:b25059", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21288", + "@id": "_:b11273", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", "result": { - "@id": "_:b23609", + "@id": "_:b11274", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e128-out.nq", + "title": "Two scoped context may include a shared context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e128-in.jsonld", + "rdfs:comment": "Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3014", + "@id": "_:b5913", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi04-out.jsonld", - "title": "property-valued index indexes property value, instead of property (multiple nodes)", - "rdfs:comment": "Compacting property-valued indexes.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi04-context.jsonld" - }, "assertions": [ { - "@id": "_:b3019", + "@id": "_:b5914", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "result": { - "@id": "_:b22357", + "@id": "_:b12072", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3017", + "@id": "_:b5916", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8277", + "@id": "_:b19142", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3023", + "@id": "_:b5915", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4928", + "@id": "_:b17503", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3021", + "@id": "_:b5921", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23987", + "@id": "_:b24360", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3015", + "@id": "_:b5917", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "result": { - "@id": "_:b9920", + "@id": "_:b24356", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3012", + "@id": "_:b5919", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3013", + "@id": "_:b24358", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3018", + "@id": "_:b5920", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23044", + "@id": "_:b24359", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3022", + "@id": "_:b5923", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", + "mode": "earl:automatic", "result": { - "@id": "_:b24090", + "@id": "_:b24362", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3016", + "@id": "_:b5918", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "result": { - "@id": "_:b11639", + "@id": "_:b24357", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3020", + "@id": "_:b5922", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", "result": { - "@id": "_:b24089", + "@id": "_:b24361", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e129-out.nq", + "title": "Base without trailing slash, without path", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e129-in.jsonld", + "rdfs:comment": "Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10984", + "@id": "_:b12946", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi05-out.jsonld", - "title": "property-valued index indexes using @none if no property value exists", - "rdfs:comment": "Compacting property-valued indexes.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi05-context.jsonld" - }, "assertions": [ { - "@id": "_:b10985", + "@id": "_:b12948", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "result": { - "@id": "_:b13381", + "@id": "_:b12958", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10982", + "@id": "_:b12952", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10983", + "@id": "_:b12962", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10992", + "@id": "_:b12951", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11181", + "@id": "_:b12961", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10991", + "@id": "_:b12953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20909", + "@id": "_:b12963", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10993", + "@id": "_:b12950", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "result": { - "@id": "_:b13467", + "@id": "_:b12960", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10989", + "@id": "_:b12956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20145", + "@id": "_:b12965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10988", + "@id": "_:b12954", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20907", + "@id": "_:b11680", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10987", + "@id": "_:b12947", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", + "mode": "earl:automatic", "result": { - "@id": "_:b20906", + "@id": "_:b12957", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10986", + "@id": "_:b12949", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "result": { - "@id": "_:b20905", + "@id": "_:b12959", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10990", + "@id": "_:b12955", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", "result": { - "@id": "_:b20908", + "@id": "_:b12964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e130-out.nq", + "title": "Base without trailing slash, with path", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e130-in.jsonld", + "rdfs:comment": "Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12338", + "@id": "_:b13854", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi06-out.jsonld", - "title": "property-valued index indexes using @none if no property value does not compact to string", - "rdfs:comment": "Compacting property-valued indexes.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi06-context.jsonld" - }, "assertions": [ { - "@id": "_:b12341", + "@id": "_:b13855", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "result": { - "@id": "_:b1993", + "@id": "_:b22752", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12345", + "@id": "_:b13857", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21660", + "@id": "_:b15777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12344", + "@id": "_:b13858", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21659", + "@id": "_:b11943", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12343", + "@id": "_:b13863", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21658", + "@id": "_:b26534", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12346", + "@id": "_:b13860", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "result": { - "@id": "_:b6333", + "@id": "_:b14478", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12342", + "@id": "_:b13856", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21657", + "@id": "_:b25889", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12347", + "@id": "_:b13862", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21661", + "@id": "_:b26010", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12339", + "@id": "_:b13859", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", + "mode": "earl:automatic", "result": { - "@id": "_:b19362", + "@id": "_:b22689", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12340", + "@id": "_:b13852", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "result": { - "@id": "_:b21656", + "@id": "_:b13853", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12336", + "@id": "_:b13861", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", "result": { - "@id": "_:b12337", + "@id": "_:b20297", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "Invalid keyword in term definition", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/ec01-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid term definition is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15946", + "@id": "_:b14418", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr01-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Check illegal clearing of context with protected terms", - "rdfs:comment": "Check error when clearing a context with protected terms.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr01-context.jsonld" - }, "assertions": [ { - "@id": "_:b15944", + "@id": "_:b14426", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "result": { - "@id": "_:b15945", + "@id": "_:b14435", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15954", + "@id": "_:b14422", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22065", + "@id": "_:b14432", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15947", + "@id": "_:b14420", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18656", + "@id": "_:b14430", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15953", + "@id": "_:b14427", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22064", + "@id": "_:b1473", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15948", + "@id": "_:b14425", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "result": { - "@id": "_:b20171", + "@id": "_:b14434", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15952", + "@id": "_:b14419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14222", + "@id": "_:b14429", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15951", + "@id": "_:b14428", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22063", + "@id": "_:b14436", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15950", + "@id": "_:b14421", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", + "mode": "earl:automatic", "result": { - "@id": "_:b21779", + "@id": "_:b14431", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15949", + "@id": "_:b14424", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "result": { - "@id": "_:b22062", + "@id": "_:b14433", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15955", + "@id": "_:b14423", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", "result": { - "@id": "_:b22066", + "@id": "_:b3136", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "keyword redefinition", + "title": "Term definition on @type with empty map", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/ec02-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised if @type is defined as a term with an empty map" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7986", + "@id": "_:b2109", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr02-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Check illegal overriding of protected term", - "rdfs:comment": "Check error when overriding a protected term.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr02-context.jsonld" - }, "assertions": [ { - "@id": "_:b7994", + "@id": "_:b2118", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "result": { - "@id": "_:b24466", + "@id": "_:b24773", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7991", + "@id": "_:b2111", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22816", + "@id": "_:b9406", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7992", + "@id": "_:b2116", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19183", + "@id": "_:b26545", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7984", + "@id": "_:b2115", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7985", + "@id": "_:b26729", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7988", + "@id": "_:b2117", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "result": { - "@id": "_:b17789", + "@id": "_:b12364", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7990", + "@id": "_:b2110", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22044", + "@id": "_:b5105", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7987", + "@id": "_:b2114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16084", + "@id": "_:b18877", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7993", + "@id": "_:b2113", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", + "mode": "earl:automatic", "result": { - "@id": "_:b26349", + "@id": "_:b16508", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7989", + "@id": "_:b2107", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "result": { - "@id": "_:b19019", + "@id": "_:b2108", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7995", + "@id": "_:b2112", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", "result": { - "@id": "_:b13462", + "@id": "_:b21298", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "title": "Invalid container mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/em01-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9161", + "@id": "_:b1803", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr03-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Check illegal overriding of protected term from type-scoped context", - "rdfs:comment": "Check error when overriding a protected term from type-scoped context.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr03-context.jsonld" - }, "assertions": [ { - "@id": "_:b19889", + "@id": "_:b1811", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "result": { - "@id": "_:b23632", + "@id": "_:b21431", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19884", + "@id": "_:b1806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19885", + "@id": "_:b21427", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19886", + "@id": "_:b1801", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10182", + "@id": "_:b1802", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19893", + "@id": "_:b1812", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23636", + "@id": "_:b21432", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19894", + "@id": "_:b1804", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "result": { - "@id": "_:b23637", + "@id": "_:b16266", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19887", + "@id": "_:b1809", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22061", + "@id": "_:b21429", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19890", + "@id": "_:b1808", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23633", + "@id": "_:b21428", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19892", + "@id": "_:b1810", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", + "mode": "earl:automatic", "result": { - "@id": "_:b23635", + "@id": "_:b21430", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19888", + "@id": "_:b1805", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "result": { - "@id": "_:b23072", + "@id": "_:b21426", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19891", + "@id": "_:b1807", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", "result": { - "@id": "_:b23634", + "@id": "_:b3993", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "@nest MUST NOT have a string value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en01-in.jsonld", + "rdfs:comment": "container: @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10100", + "@id": "_:b3619", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pr04-out.jsonld", - "title": "Check legal overriding of protected term from property-scoped context", - "rdfs:comment": "Check overriding a protected term from property-scoped context.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr04-context.jsonld" - }, "assertions": [ { - "@id": "_:b10102", + "@id": "_:b3624", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "result": { - "@id": "_:b23972", + "@id": "_:b24175", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10107", + "@id": "_:b3628", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15415", + "@id": "_:b24221", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10101", + "@id": "_:b3625", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16981", + "@id": "_:b7147", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10110", + "@id": "_:b3626", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b27019", + "@id": "_:b8458", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10108", + "@id": "_:b3621", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "result": { - "@id": "_:b27032", + "@id": "_:b20401", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10103", + "@id": "_:b3622", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20485", + "@id": "_:b22219", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10109", + "@id": "_:b3627", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16314", + "@id": "_:b9908", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10104", + "@id": "_:b3620", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", + "mode": "earl:automatic", "result": { - "@id": "_:b20912", + "@id": "_:b11700", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10106", + "@id": "_:b3623", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "result": { - "@id": "_:b26735", + "@id": "_:b22065", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10105", + "@id": "_:b3617", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", "result": { - "@id": "_:b24127", + "@id": "_:b3618", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "@nest MUST NOT have a boolen value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en02-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10981", + "@id": "_:b14099", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pr05-out.jsonld", - "title": "Check legal overriding of type-scoped protected term from nested node", - "rdfs:comment": "Check legal overriding of type-scoped protected term from nested node.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr05-context.jsonld" - }, "assertions": [ { - "@id": "_:b19520", + "@id": "_:b20750", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "result": { - "@id": "_:b21235", + "@id": "_:b20759", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19514", + "@id": "_:b20744", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19515", + "@id": "_:b20754", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19519", + "@id": "_:b20746", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5274", + "@id": "_:b20756", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19522", + "@id": "_:b20753", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14798", + "@id": "_:b13087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19524", + "@id": "_:b20747", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "result": { - "@id": "_:b21238", + "@id": "_:b20757", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19521", + "@id": "_:b20745", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21236", + "@id": "_:b20755", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19516", + "@id": "_:b20752", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21234", + "@id": "_:b17844", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19523", + "@id": "_:b20751", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", + "mode": "earl:automatic", "result": { - "@id": "_:b21237", + "@id": "_:b20760", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19517", + "@id": "_:b20748", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "result": { - "@id": "_:b18084", + "@id": "_:b20758", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19518", + "@id": "_:b20749", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", "result": { - "@id": "_:b1092", + "@id": "_:b7274", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "@nest MUST NOT have a numeric value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en03-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10060", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example.org/" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/r001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/r001-out.jsonld", - "title": "Expands and compacts to document base by default", - "rdfs:comment": "Compact IRI attempts to compact document-relative IRIs", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/r001-context.jsonld" + "@id": "_:b2692", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b11279", + "@id": "_:b2693", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "result": { - "@id": "_:b24081", + "@id": "_:b10534", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11277", + "@id": "_:b2699", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21261", + "@id": "_:b26263", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11276", + "@id": "_:b2697", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b883", + "@id": "_:b25851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11275", + "@id": "_:b2690", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26405", + "@id": "_:b2691", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11273", + "@id": "_:b2700", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "result": { - "@id": "_:b24407", + "@id": "_:b25423", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11272", + "@id": "_:b2698", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9712", + "@id": "_:b23085", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11274", + "@id": "_:b2701", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25859", + "@id": "_:b15132", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11269", + "@id": "_:b2696", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", + "mode": "earl:automatic", "result": { - "@id": "_:b11270", + "@id": "_:b25005", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11271", + "@id": "_:b2695", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "result": { - "@id": "_:b16203", + "@id": "_:b24101", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11278", + "@id": "_:b2694", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", "result": { - "@id": "_:b16315", + "@id": "_:b19440", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "@nest MUST NOT have a value object value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en04-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18176", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#compactToRelative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/r002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/r002-out.jsonld", - "title": "Expands and does not compact to document base with compactToRelative false", - "rdfs:comment": "With compactToRelative option set to false, IRIs which could be made relative to the document base are not made relative.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/r002-context.jsonld" + "@id": "_:b3011", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b18181", + "@id": "_:b3013", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "result": { - "@id": "_:b20872", + "@id": "_:b19620", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18184", + "@id": "_:b3015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20874", + "@id": "_:b23001", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18178", + "@id": "_:b3019", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20869", + "@id": "_:b26815", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18179", + "@id": "_:b3012", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20870", + "@id": "_:b18042", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18182", + "@id": "_:b3017", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "result": { - "@id": "_:b18718", + "@id": "_:b24732", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18177", + "@id": "_:b3016", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20868", + "@id": "_:b24064", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18174", + "@id": "_:b3010", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18175", + "@id": "_:b2094", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18183", + "@id": "_:b3018", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", + "mode": "earl:automatic", "result": { - "@id": "_:b20873", + "@id": "_:b24095", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18180", + "@id": "_:b3014", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "result": { - "@id": "_:b20871", + "@id": "_:b21748", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18185", + "@id": "_:b3020", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", "result": { - "@id": "_:b15990", + "@id": "_:b16233", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "does not allow a keyword other than @nest for the value of @nest", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en05-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b641", + "@id": "_:b8144", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/s001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/s001-out.jsonld", - "title": "@context with single array values", - "rdfs:comment": "@context values may be in an array", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/s001-context.jsonld" - }, "assertions": [ { - "@id": "_:b645", + "@id": "_:b8150", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "result": { - "@id": "_:b655", + "@id": "_:b13510", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b650", + "@id": "_:b8153", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b660", + "@id": "_:b13513", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b642", + "@id": "_:b8152", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b652", + "@id": "_:b13512", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b647", + "@id": "_:b8151", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b657", + "@id": "_:b13511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b643", + "@id": "_:b8146", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "result": { - "@id": "_:b653", + "@id": "_:b13506", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b644", + "@id": "_:b8149", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b654", + "@id": "_:b13509", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b649", + "@id": "_:b8154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b659", + "@id": "_:b3776", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b648", + "@id": "_:b8148", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", + "mode": "earl:automatic", "result": { - "@id": "_:b658", + "@id": "_:b13508", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b646", + "@id": "_:b8145", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "result": { - "@id": "_:b656", + "@id": "_:b12863", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b651", + "@id": "_:b8147", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", "result": { - "@id": "_:b661", + "@id": "_:b13507", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property", + "title": "does not allow @nest with @reverse", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en06-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3622", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/s002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/s002-out.jsonld", - "title": "@context with array including @set uses array values", - "rdfs:comment": "@context values may include @set along with another compatible value", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/s002-context.jsonld" + "@id": "_:b2230", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, "assertions": [ { - "@id": "_:b3631", + "@id": "_:b2228", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "result": { - "@id": "_:b15235", + "@id": "_:b2229", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3624", + "@id": "_:b2235", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11194", + "@id": "_:b24215", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3625", + "@id": "_:b2236", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22802", + "@id": "_:b23924", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3629", + "@id": "_:b2239", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26388", + "@id": "_:b23103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3620", + "@id": "_:b2233", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "result": { - "@id": "_:b3621", + "@id": "_:b23521", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3627", + "@id": "_:b2237", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21370", + "@id": "_:b24216", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3623", + "@id": "_:b2234", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19343", + "@id": "_:b24214", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3626", + "@id": "_:b2238", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", + "mode": "earl:automatic", "result": { - "@id": "_:b26324", + "@id": "_:b24217", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3630", + "@id": "_:b2231", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "result": { - "@id": "_:b8518", + "@id": "_:b17293", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3628", + "@id": "_:b2232", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", "result": { - "@id": "_:b26288", + "@id": "_:b21105", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "processing mode conflict", + "title": "processingMode json-ld-1.0 conflicts with @version: 1.1", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/ep02-in.jsonld", + "rdfs:comment": "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7929", + "@id": "_:b3454", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/tn01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/tn01-out.jsonld", - "title": "@type: @none does not compact values", - "rdfs:comment": "@type: @none does not compact values.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/tn01-context.jsonld" - }, "assertions": [ { - "@id": "_:b7936", + "@id": "_:b3460", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "result": { - "@id": "_:b26443", + "@id": "_:b23184", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7930", + "@id": "_:b3456", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8967", + "@id": "_:b15471", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7931", + "@id": "_:b3463", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12164", + "@id": "_:b18669", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7932", + "@id": "_:b3462", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18511", + "@id": "_:b23186", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7934", + "@id": "_:b3461", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "result": { - "@id": "_:b8349", + "@id": "_:b23185", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7927", + "@id": "_:b3457", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7928", + "@id": "_:b18344", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7933", + "@id": "_:b3458", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24650", + "@id": "_:b21773", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7937", + "@id": "_:b3455", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", + "mode": "earl:automatic", "result": { - "@id": "_:b26080", + "@id": "_:b5609", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7935", + "@id": "_:b3459", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "result": { - "@id": "_:b18667", + "@id": "_:b20614", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7938", + "@id": "_:b3452", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", "result": { - "@id": "_:b21862", + "@id": "_:b3453", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @version value", + "title": "@version must be 1.1", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/ep03-in.jsonld", + "rdfs:comment": "If @version is specified, it must be 1.1" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1431", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/tn02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/tn02-out.jsonld", - "title": "@type: @none does not use arrays by default", - "rdfs:comment": "@type: @none honors @container.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/tn02-context.jsonld" - }, "assertions": [ { - "@id": "_:b1429", + "@id": "_:b1447", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "result": { - "@id": "_:b1430", + "@id": "_:b11638", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1432", + "@id": "_:b1444", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20195", + "@id": "_:b19669", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1433", + "@id": "_:b1448", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16572", + "@id": "_:b19784", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1435", + "@id": "_:b1441", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19287", + "@id": "_:b18666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1439", + "@id": "_:b1446", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "result": { - "@id": "_:b23316", + "@id": "_:b25976", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1437", + "@id": "_:b1442", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25701", + "@id": "_:b19286", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1436", + "@id": "_:b1445", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25700", + "@id": "_:b24163", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1434", + "@id": "_:b1443", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", + "mode": "earl:automatic", "result": { - "@id": "_:b24702", + "@id": "_:b20135", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { "@id": "_:b1440", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "result": { - "@id": "_:b24953", + "@id": "_:b10521", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { "@id": "_:b1438", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", "result": { - "@id": "_:b11063", + "@id": "_:b1439", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "keyword redefinition", + "title": "Keywords cannot be aliased to other keywords", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er01-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5292", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/compact/tn03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/compact/tn03-out.jsonld", - "title": "@type: @none uses arrays with @container: @set", - "rdfs:comment": "@type: @none honors @container.", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/compact/tn03-context.jsonld" - }, "assertions": [ { - "@id": "_:b5290", + "@id": "_:b1366", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "result": { - "@id": "_:b5291", + "@id": "_:b4442", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5300", + "@id": "_:b1364", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13666", + "@id": "_:b4440", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5298", + "@id": "_:b1362", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20090", + "@id": "_:b1363", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5301", + "@id": "_:b1370", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4617", + "@id": "_:b4446", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5295", + "@id": "_:b1367", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "result": { - "@id": "_:b18059", + "@id": "_:b4443", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5294", + "@id": "_:b1368", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14578", + "@id": "_:b4444", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5296", + "@id": "_:b1372", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19335", + "@id": "_:b4448", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5293", + "@id": "_:b1369", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", + "mode": "earl:automatic", "result": { - "@id": "_:b8861", + "@id": "_:b4445", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5299", + "@id": "_:b1365", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "result": { - "@id": "_:b16399", + "@id": "_:b4441", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5297", + "@id": "_:b1371", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", "result": { - "@id": "_:b23718", + "@id": "_:b4447", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - } - ], - "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", - "title": "Compaction", - "rdfs:comment": "These tests implement the requirements for the JSON-LD [Compaction Algorithm](https://www.w3.org/TR/json-ld11-api/#compaction-algorithm)." - }, - { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest", - "@type": [ - "mf:Manifest", - "Report" - ], - "entries": [ + ], + "mf:result": "loading remote context failed", + "title": "Error dereferencing a remote context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er04-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context dereference results in an error" + }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0001-out.jsonld", - "title": "drop free-floating nodes", - "rdfs:comment": "Flattening drops unreferenced nodes having only @id", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3167", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12224", + "@id": "_:b3171", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "result": { - "@id": "_:b21645", + "@id": "_:b22824", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12221", + "@id": "_:b3170", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21642", + "@id": "_:b22823", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12219", + "@id": "_:b3175", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21640", + "@id": "_:b22827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12226", + "@id": "_:b3168", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21647", + "@id": "_:b12221", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12218", + "@id": "_:b3169", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "result": { - "@id": "_:b21639", + "@id": "_:b17084", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12223", + "@id": "_:b3174", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21644", + "@id": "_:b22826", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12220", + "@id": "_:b3176", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21641", + "@id": "_:b20647", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12216", + "@id": "_:b3165", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", + "mode": "earl:automatic", "result": { - "@id": "_:b12217", + "@id": "_:b3166", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12222", + "@id": "_:b3172", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "result": { - "@id": "_:b21643", + "@id": "_:b22825", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12225", + "@id": "_:b3173", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", "result": { - "@id": "_:b21646", + "@id": "_:b9864", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid remote context", + "title": "Invalid remote context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er05-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a remote context is not an object containing @context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0002-out.jsonld", - "title": "basic", - "rdfs:comment": "Flattening terms with different types of values", "assertions": [ { - "@id": "_:b739", + "@id": "_:b20948", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "result": { - "@id": "_:b25609", + "@id": "_:b20957", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b734", + "@id": "_:b20950", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16825", + "@id": "_:b20958", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b736", + "@id": "_:b20945", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14838", + "@id": "_:b20955", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b742", + "@id": "_:b20949", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25999", + "@id": "_:b17657", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b740", + "@id": "_:b20951", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "result": { - "@id": "_:b25998", + "@id": "_:b12698", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b737", + "@id": "_:b20947", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22211", + "@id": "_:b12526", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b735", + "@id": "_:b20952", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20422", + "@id": "_:b20959", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b738", + "@id": "_:b20944", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", + "mode": "earl:automatic", "result": { - "@id": "_:b24876", + "@id": "_:b20954", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b741", + "@id": "_:b20946", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "result": { - "@id": "_:b23041", + "@id": "_:b20956", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b743", + "@id": "_:b20943", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", "result": { - "@id": "_:b23757", + "@id": "_:b20953", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid local context", + "title": "Invalid local context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er06-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context is not a string or object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0003-out.jsonld", - "title": "drop null and unmapped properties", - "rdfs:comment": "Verifies that null values and unmapped properties are removed from expanded output", "assertions": [ { - "@id": "_:b19810", + "@id": "_:b9128", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "result": { - "@id": "_:b19459", + "@id": "_:b19012", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19806", + "@id": "_:b9126", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5188", + "@id": "_:b18581", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19804", + "@id": "_:b9122", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25265", + "@id": "_:b9123", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19800", + "@id": "_:b9129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19801", + "@id": "_:b19013", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19809", + "@id": "_:b9124", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "result": { - "@id": "_:b22981", + "@id": "_:b15995", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19802", + "@id": "_:b9130", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22213", + "@id": "_:b19014", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19805", + "@id": "_:b9132", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25827", + "@id": "_:b19016", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19803", + "@id": "_:b9125", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", + "mode": "earl:automatic", "result": { - "@id": "_:b22982", + "@id": "_:b19010", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19807", + "@id": "_:b9131", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "result": { - "@id": "_:b26208", + "@id": "_:b19015", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19808", + "@id": "_:b9127", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", "result": { - "@id": "_:b13721", + "@id": "_:b19011", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid base IRI", + "title": "Invalid base IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er07-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @base" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0004-out.jsonld", - "title": "optimize @set, keep empty arrays", - "rdfs:comment": "Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained", "assertions": [ { - "@id": "_:b2596", + "@id": "_:b4067", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "result": { - "@id": "_:b22438", + "@id": "_:b25479", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2598", + "@id": "_:b4064", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24825", + "@id": "_:b22382", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2603", + "@id": "_:b4069", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26963", + "@id": "_:b4202", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2599", + "@id": "_:b4061", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26076", + "@id": "_:b8198", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2597", + "@id": "_:b4066", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "result": { - "@id": "_:b23214", + "@id": "_:b18360", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2600", + "@id": "_:b4065", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26920", + "@id": "_:b23312", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2602", + "@id": "_:b4068", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22337", + "@id": "_:b26561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2595", + "@id": "_:b4062", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", + "mode": "earl:automatic", "result": { - "@id": "_:b16459", + "@id": "_:b13821", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2601", + "@id": "_:b4059", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "result": { - "@id": "_:b26785", + "@id": "_:b4060", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2593", + "@id": "_:b4063", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", "result": { - "@id": "_:b2594", + "@id": "_:b19095", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid vocab mapping", + "title": "Invalid vocab mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er08-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0005-out.jsonld", - "title": "do not expand aliased @id/@type", - "rdfs:comment": "If a keyword is aliased, it is not used when flattening", "assertions": [ { - "@id": "_:b15742", + "@id": "_:b3218", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "result": { - "@id": "_:b15743", + "@id": "_:b3219", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15751", + "@id": "_:b3222", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24767", + "@id": "_:b24498", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15749", + "@id": "_:b3224", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24766", + "@id": "_:b26140", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15744", + "@id": "_:b3225", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4176", + "@id": "_:b18140", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15748", + "@id": "_:b3223", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "result": { - "@id": "_:b16701", + "@id": "_:b22862", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15752", + "@id": "_:b3221", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24768", + "@id": "_:b25141", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15747", + "@id": "_:b3227", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24765", + "@id": "_:b22142", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15750", + "@id": "_:b3226", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", + "mode": "earl:automatic", "result": { - "@id": "_:b19571", + "@id": "_:b24097", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15746", + "@id": "_:b3220", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "result": { - "@id": "_:b16857", + "@id": "_:b17139", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15745", + "@id": "_:b3228", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", "result": { - "@id": "_:b23675", + "@id": "_:b10679", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid default language", + "title": "Invalid default language", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er09-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0006-out.jsonld", - "title": "alias keywords", - "rdfs:comment": "Aliased keywords expand in resulting document", "assertions": [ { - "@id": "_:b1100", + "@id": "_:b21481", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "result": { - "@id": "_:b9292", + "@id": "_:b23453", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1095", + "@id": "_:b21479", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9287", + "@id": "_:b26331", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1099", + "@id": "_:b21474", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9291", + "@id": "_:b22602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1103", + "@id": "_:b21477", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7601", + "@id": "_:b26465", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1102", + "@id": "_:b21478", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "result": { - "@id": "_:b9294", + "@id": "_:b26466", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1101", + "@id": "_:b21475", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9293", + "@id": "_:b24961", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1093", + "@id": "_:b21480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1094", + "@id": "_:b25686", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1097", + "@id": "_:b21473", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", + "mode": "earl:automatic", "result": { - "@id": "_:b9289", + "@id": "_:b22120", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1096", + "@id": "_:b21476", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "result": { - "@id": "_:b9288", + "@id": "_:b26464", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1098", + "@id": "_:b21471", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", "result": { - "@id": "_:b9290", + "@id": "_:b21472", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "cyclic IRI mapping", + "title": "Cyclic IRI mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er10-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a cyclic IRI mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0007-out.jsonld", - "title": "date type-coercion", - "rdfs:comment": "Expand strings to expanded value with @type: xsd:dateTime", "assertions": [ { - "@id": "_:b19993", + "@id": "_:b14569", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "result": { - "@id": "_:b20441", + "@id": "_:b25102", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19992", + "@id": "_:b14573", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20582", + "@id": "_:b26635", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19989", + "@id": "_:b14575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17742", + "@id": "_:b25471", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19988", + "@id": "_:b14571", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21874", + "@id": "_:b26395", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19990", + "@id": "_:b14572", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "result": { - "@id": "_:b16599", + "@id": "_:b26607", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19991", + "@id": "_:b14567", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21875", + "@id": "_:b22864", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19994", + "@id": "_:b14565", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16705", + "@id": "_:b14566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19986", + "@id": "_:b14568", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", + "mode": "earl:automatic", "result": { - "@id": "_:b15116", + "@id": "_:b22624", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19984", + "@id": "_:b14574", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "result": { - "@id": "_:b19985", + "@id": "_:b27028", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19987", + "@id": "_:b14570", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", "result": { - "@id": "_:b21873", + "@id": "_:b21083", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "Invalid term definition", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er11-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid term definition is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0008-out.jsonld", - "title": "@value with @language", - "rdfs:comment": "Keep expanded values with @language, drop non-conforming value objects containing just @language", "assertions": [ { - "@id": "_:b9337", + "@id": "_:b13742", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "result": { - "@id": "_:b9346", + "@id": "_:b19578", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9332", + "@id": "_:b13741", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9342", + "@id": "_:b19577", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9333", + "@id": "_:b13737", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9343", + "@id": "_:b14607", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9331", + "@id": "_:b13743", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9341", + "@id": "_:b11775", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9338", + "@id": "_:b13745", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "result": { - "@id": "_:b9347", + "@id": "_:b19580", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9334", + "@id": "_:b13744", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9344", + "@id": "_:b19579", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9340", + "@id": "_:b13739", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9349", + "@id": "_:b17060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9335", + "@id": "_:b13738", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", + "mode": "earl:automatic", "result": { - "@id": "_:b8479", + "@id": "_:b19575", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9339", + "@id": "_:b13735", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "result": { - "@id": "_:b9348", + "@id": "_:b13736", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9336", + "@id": "_:b13740", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", "result": { - "@id": "_:b9345", + "@id": "_:b19576", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "Invalid type mapping (not a string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er12-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0009-out.jsonld", - "title": "@graph with terms", - "rdfs:comment": "Use of @graph to contain multiple nodes within array", "assertions": [ { - "@id": "_:b1254", + "@id": "_:b17144", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "result": { - "@id": "_:b24652", + "@id": "_:b21165", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1250", + "@id": "_:b17147", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20070", + "@id": "_:b22926", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1249", + "@id": "_:b17145", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12516", + "@id": "_:b22924", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1256", + "@id": "_:b17151", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20306", + "@id": "_:b9085", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1247", + "@id": "_:b17150", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "result": { - "@id": "_:b1248", + "@id": "_:b22927", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1253", + "@id": "_:b17148", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26084", + "@id": "_:b20288", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1255", + "@id": "_:b17149", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25084", + "@id": "_:b20812", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1251", + "@id": "_:b17141", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", + "mode": "earl:automatic", "result": { - "@id": "_:b4093", + "@id": "_:b17142", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1252", + "@id": "_:b17143", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "result": { - "@id": "_:b24034", + "@id": "_:b20351", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1257", + "@id": "_:b17146", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", "result": { - "@id": "_:b21823", + "@id": "_:b22925", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "Invalid type mapping (not absolute IRI)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er13-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0010-out.jsonld", - "title": "native types", - "rdfs:comment": "Flattening native scalar retains native scalar within expanded value", "assertions": [ { - "@id": "_:b12991", + "@id": "_:b18002", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "result": { - "@id": "_:b13579", + "@id": "_:b25560", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12990", + "@id": "_:b18005", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19811", + "@id": "_:b25221", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12993", + "@id": "_:b18008", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26202", + "@id": "_:b25171", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12996", + "@id": "_:b18000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14883", + "@id": "_:b14117", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12986", + "@id": "_:b18001", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "result": { - "@id": "_:b12987", + "@id": "_:b19281", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12989", + "@id": "_:b17999", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17730", + "@id": "_:b13827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12988", + "@id": "_:b18007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16626", + "@id": "_:b25401", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12995", + "@id": "_:b18006", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", + "mode": "earl:automatic", "result": { - "@id": "_:b11267", + "@id": "_:b27007", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12994", + "@id": "_:b18003", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "result": { - "@id": "_:b2801", + "@id": "_:b22037", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12992", + "@id": "_:b18004", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", "result": { - "@id": "_:b22565", + "@id": "_:b26674", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property", + "title": "Invalid reverse property (contains @id)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er14-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid reverse property is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0011-out.jsonld", - "title": "coerced @id", - "rdfs:comment": "A value of a property with @type: @id coercion expands to a node reference", "assertions": [ { - "@id": "_:b14595", + "@id": "_:b12335", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "result": { - "@id": "_:b20372", + "@id": "_:b17452", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14599", + "@id": "_:b12329", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23992", + "@id": "_:b17448", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14594", + "@id": "_:b12333", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1871", + "@id": "_:b6552", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14596", + "@id": "_:b12336", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3297", + "@id": "_:b17453", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14597", + "@id": "_:b12331", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "result": { - "@id": "_:b23394", + "@id": "_:b17450", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14600", + "@id": "_:b12332", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24476", + "@id": "_:b17451", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14602", + "@id": "_:b12330", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15712", + "@id": "_:b17449", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14598", + "@id": "_:b12334", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", + "mode": "earl:automatic", "result": { - "@id": "_:b24771", + "@id": "_:b10066", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14592", + "@id": "_:b12337", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "result": { - "@id": "_:b14593", + "@id": "_:b17454", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14601", + "@id": "_:b12327", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", "result": { - "@id": "_:b24772", + "@id": "_:b12328", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid IRI mapping (@reverse not a string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er15-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0012-out.jsonld", - "title": "@graph with embed", - "rdfs:comment": "Flattening objects containing chained objects flattens all objects", "assertions": [ { - "@id": "_:b22189", + "@id": "_:b19209", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "result": { - "@id": "_:b23910", + "@id": "_:b18433", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22187", + "@id": "_:b19206", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20775", + "@id": "_:b26393", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22183", + "@id": "_:b19203", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23906", + "@id": "_:b15404", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22182", + "@id": "_:b19207", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23905", + "@id": "_:b8888", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22186", + "@id": "_:b19200", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "result": { - "@id": "_:b3397", + "@id": "_:b19201", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22190", + "@id": "_:b19205", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23911", + "@id": "_:b25254", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22185", + "@id": "_:b19204", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23908", + "@id": "_:b24704", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22184", + "@id": "_:b19202", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", + "mode": "earl:automatic", "result": { - "@id": "_:b23907", + "@id": "_:b20098", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b22188", + "@id": "_:b19208", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "result": { - "@id": "_:b23909", + "@id": "_:b8963", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22180", + "@id": "_:b19210", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", "result": { - "@id": "_:b22181", + "@id": "_:b16659", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property", + "title": "Invalid reverse property (invalid @container)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er17-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid reverse property is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0013-out.jsonld", - "title": "flatten already expanded", - "rdfs:comment": "Flattening an expanded/flattened document maintains input document", "assertions": [ { - "@id": "_:b10690", + "@id": "_:b1176", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "result": { - "@id": "_:b24268", + "@id": "_:b26341", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10689", + "@id": "_:b1179", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23341", + "@id": "_:b26808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10693", + "@id": "_:b1175", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21023", + "@id": "_:b22892", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10691", + "@id": "_:b1174", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24269", + "@id": "_:b22724", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10686", + "@id": "_:b1181", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "result": { - "@id": "_:b10687", + "@id": "_:b25327", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10688", + "@id": "_:b1177", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19845", + "@id": "_:b26800", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10696", + "@id": "_:b1171", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24270", + "@id": "_:b1172", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10692", + "@id": "_:b1173", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", + "mode": "earl:automatic", "result": { - "@id": "_:b11653", + "@id": "_:b19140", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10695", + "@id": "_:b1178", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "result": { - "@id": "_:b23312", + "@id": "_:b21553", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10694", + "@id": "_:b1180", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", "result": { - "@id": "_:b5943", + "@id": "_:b19305", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid IRI mapping (@id not a string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er18-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0015-out.jsonld", - "title": "collapse set of sets, keep empty lists", - "rdfs:comment": "An array of multiple @set nodes are collapsed into a single array", "assertions": [ { - "@id": "_:b21144", + "@id": "_:b8928", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "result": { - "@id": "_:b26938", + "@id": "_:b8929", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21138", + "@id": "_:b8932", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22009", + "@id": "_:b21435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21143", + "@id": "_:b8930", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25554", + "@id": "_:b17059", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21137", + "@id": "_:b8935", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8651", + "@id": "_:b25730", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21146", + "@id": "_:b8936", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "result": { - "@id": "_:b26390", + "@id": "_:b16824", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21142", + "@id": "_:b8937", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26353", + "@id": "_:b24932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21141", + "@id": "_:b8938", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24321", + "@id": "_:b2354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21140", + "@id": "_:b8931", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", + "mode": "earl:automatic", "result": { - "@id": "_:b26226", + "@id": "_:b22183", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b21145", + "@id": "_:b8933", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "result": { - "@id": "_:b26107", + "@id": "_:b16912", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21139", + "@id": "_:b8934", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", "result": { - "@id": "_:b14391", + "@id": "_:b15208", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid keyword alias", + "title": "Invalid keyword alias (@context)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er19-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid keyword alias is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0016-out.jsonld", - "title": "context reset", - "rdfs:comment": "Setting @context to null within an embedded object resets back to initial context state", "assertions": [ { - "@id": "_:b8325", + "@id": "_:b19811", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "result": { - "@id": "_:b21427", + "@id": "_:b25407", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8322", + "@id": "_:b19814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24665", + "@id": "_:b26214", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8316", + "@id": "_:b19812", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8317", + "@id": "_:b17123", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8320", + "@id": "_:b19808", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22973", + "@id": "_:b20493", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8319", + "@id": "_:b19815", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "result": { - "@id": "_:b18719", + "@id": "_:b23630", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8321", + "@id": "_:b19806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24664", + "@id": "_:b19807", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8326", + "@id": "_:b19810", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19649", + "@id": "_:b24492", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8318", + "@id": "_:b19813", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", + "mode": "earl:automatic", "result": { - "@id": "_:b17259", + "@id": "_:b15147", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8323", + "@id": "_:b19809", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "result": { - "@id": "_:b21792", + "@id": "_:b21627", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8324", + "@id": "_:b19816", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", "result": { - "@id": "_:b15985", + "@id": "_:b22197", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid IRI mapping (no vocab mapping)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er20-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0017-out.jsonld", - "title": "@graph and @id aliased", - "rdfs:comment": "Flattening with @graph and @id aliases", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b18828", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b5084", + "@id": "_:b18832", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "result": { - "@id": "_:b26715", + "@id": "_:b24727", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5075", + "@id": "_:b18835", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5076", + "@id": "_:b21593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5082", + "@id": "_:b18834", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26364", + "@id": "_:b25920", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5083", + "@id": "_:b18830", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15855", + "@id": "_:b21419", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5080", + "@id": "_:b18837", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "result": { - "@id": "_:b16402", + "@id": "_:b25921", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5077", + "@id": "_:b18833", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11697", + "@id": "_:b25919", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5078", + "@id": "_:b18826", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21019", + "@id": "_:b18827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5081", + "@id": "_:b18836", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", + "mode": "earl:automatic", "result": { - "@id": "_:b25876", + "@id": "_:b15971", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5079", + "@id": "_:b18829", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "result": { - "@id": "_:b14654", + "@id": "_:b18934", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5085", + "@id": "_:b18831", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", "result": { - "@id": "_:b26805", + "@id": "_:b25696", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "title": "Invalid container mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er21-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0018-out.jsonld", - "title": "override default @language", - "rdfs:comment": "override default @language in terms; only language-tag strings", "assertions": [ { - "@id": "_:b2317", + "@id": "_:b16532", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "result": { - "@id": "_:b15167", + "@id": "_:b26597", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2321", + "@id": "_:b16525", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22925", + "@id": "_:b24719", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2322", + "@id": "_:b16522", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22926", + "@id": "_:b16523", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2315", + "@id": "_:b16531", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2316", + "@id": "_:b26596", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2324", + "@id": "_:b16528", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "result": { - "@id": "_:b22928", + "@id": "_:b26575", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2320", + "@id": "_:b16527", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22924", + "@id": "_:b22027", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2319", + "@id": "_:b16530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22923", + "@id": "_:b26476", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2323", + "@id": "_:b16524", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", + "mode": "earl:automatic", "result": { - "@id": "_:b22927", + "@id": "_:b23503", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2325", + "@id": "_:b16529", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "result": { - "@id": "_:b22929", + "@id": "_:b25691", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2318", + "@id": "_:b16526", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", "result": { - "@id": "_:b20349", + "@id": "_:b25308", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid language mapping", + "title": "Invalid language mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er22-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid language mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0019-out.jsonld", - "title": "remove @value = null", - "rdfs:comment": "Flattening a value of null removes the value", "assertions": [ { - "@id": "_:b6990", + "@id": "_:b12591", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "result": { - "@id": "_:b23741", + "@id": "_:b7622", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6986", + "@id": "_:b12588", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6987", + "@id": "_:b23060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6994", + "@id": "_:b12586", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21805", + "@id": "_:b17504", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6993", + "@id": "_:b12589", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21081", + "@id": "_:b25415", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6992", + "@id": "_:b12587", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "result": { - "@id": "_:b25418", + "@id": "_:b21193", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6991", + "@id": "_:b12593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24981", + "@id": "_:b25568", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6996", + "@id": "_:b12592", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15939", + "@id": "_:b26901", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6989", + "@id": "_:b12594", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", + "mode": "earl:automatic", "result": { - "@id": "_:b21665", + "@id": "_:b4238", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6988", + "@id": "_:b12590", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "result": { - "@id": "_:b16858", + "@id": "_:b25896", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6995", + "@id": "_:b12595", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", "result": { - "@id": "_:b26284", + "@id": "_:b22786", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "Invalid IRI mapping (relative IRI in @type)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er23-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0020-out.jsonld", - "title": "do not remove @graph if not at top-level", - "rdfs:comment": "@graph used under a node is retained", "assertions": [ { - "@id": "_:b17633", + "@id": "_:b18776", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "result": { - "@id": "_:b17643", + "@id": "_:b26705", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17634", + "@id": "_:b18770", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17644", + "@id": "_:b19389", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17632", + "@id": "_:b18771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17642", + "@id": "_:b16723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17639", + "@id": "_:b18768", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17649", + "@id": "_:b18769", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17630", + "@id": "_:b18772", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "result": { - "@id": "_:b17640", + "@id": "_:b23459", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17631", + "@id": "_:b18777", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17641", + "@id": "_:b26968", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17637", + "@id": "_:b18778", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17647", + "@id": "_:b8511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17636", + "@id": "_:b18775", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", + "mode": "earl:automatic", "result": { - "@id": "_:b17646", + "@id": "_:b26929", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17638", + "@id": "_:b18774", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "result": { - "@id": "_:b17648", + "@id": "_:b26698", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17635", + "@id": "_:b18773", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", "result": { - "@id": "_:b17645", + "@id": "_:b25658", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property map", + "title": "Invalid reverse property map", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er25-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when a invalid reverse property map is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0021-out.jsonld", - "title": "do not remove @graph at top-level if not only property", - "rdfs:comment": "@graph used at the top level is retained if there are other properties", "assertions": [ { - "@id": "_:b4443", + "@id": "_:b8550", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "result": { - "@id": "_:b20977", + "@id": "_:b8551", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4436", + "@id": "_:b8556", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22120", + "@id": "_:b18098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4442", + "@id": "_:b8557", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26186", + "@id": "_:b26173", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4440", + "@id": "_:b8560", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26784", + "@id": "_:b15704", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4433", + "@id": "_:b8559", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "result": { - "@id": "_:b4434", + "@id": "_:b26174", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4438", + "@id": "_:b8552", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10615", + "@id": "_:b13380", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4439", + "@id": "_:b8554", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25804", + "@id": "_:b22195", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4435", + "@id": "_:b8558", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", + "mode": "earl:automatic", "result": { - "@id": "_:b16471", + "@id": "_:b25840", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4437", + "@id": "_:b8553", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "result": { - "@id": "_:b23130", + "@id": "_:b21392", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4441", + "@id": "_:b8555", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", "result": { - "@id": "_:b26757", + "@id": "_:b25756", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "colliding keywords", + "title": "Colliding keywords", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er26-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when colliding keywords are found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0022-out.jsonld", - "title": "flatten value with default language", - "rdfs:comment": "Flattening with a default language applies that language to string values", "assertions": [ { - "@id": "_:b1800", + "@id": "_:b6243", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "result": { - "@id": "_:b1801", + "@id": "_:b13781", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1803", + "@id": "_:b6247", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21573", + "@id": "_:b5119", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1805", + "@id": "_:b6249", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24871", + "@id": "_:b25002", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1806", + "@id": "_:b6248", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5316", + "@id": "_:b19148", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1809", + "@id": "_:b6250", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "result": { - "@id": "_:b16347", + "@id": "_:b11988", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1807", + "@id": "_:b6246", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26567", + "@id": "_:b25001", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1810", + "@id": "_:b6245", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26485", + "@id": "_:b25000", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1802", + "@id": "_:b6244", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", + "mode": "earl:automatic", "result": { - "@id": "_:b10360", + "@id": "_:b18437", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1804", + "@id": "_:b6242", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "result": { - "@id": "_:b24229", + "@id": "_:b2608", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1808", + "@id": "_:b6240", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", "result": { - "@id": "_:b24627", + "@id": "_:b6241", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @id value", + "title": "Invalid @id value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er27-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @id value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0023-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0023-out.jsonld", - "title": "Flattening list/set with coercion", - "rdfs:comment": "Flattening lists and sets with properties having coercion coerces list/set values", "assertions": [ { - "@id": "_:b3652", + "@id": "_:b9483", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "result": { - "@id": "_:b25943", + "@id": "_:b21109", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3651", + "@id": "_:b9479", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14836", + "@id": "_:b24790", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3649", + "@id": "_:b9478", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25942", + "@id": "_:b25938", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3654", + "@id": "_:b9482", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22855", + "@id": "_:b12249", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3646", + "@id": "_:b9477", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "result": { - "@id": "_:b17486", + "@id": "_:b25454", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3648", + "@id": "_:b9480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19726", + "@id": "_:b25135", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3650", + "@id": "_:b9473", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23520", + "@id": "_:b9474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3644", + "@id": "_:b9475", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", + "mode": "earl:automatic", "result": { - "@id": "_:b3645", + "@id": "_:b23292", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3653", + "@id": "_:b9481", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "result": { - "@id": "_:b25092", + "@id": "_:b26619", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3647", + "@id": "_:b9476", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", "result": { - "@id": "_:b20494", + "@id": "_:b24458", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type value", + "title": "Invalid type value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er28-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid type value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0024-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0024-out.jsonld", - "title": "Multiple contexts", - "rdfs:comment": "Tests that contexts in an array are merged", "assertions": [ { - "@id": "_:b15771", + "@id": "_:b6990", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "result": { - "@id": "_:b20835", + "@id": "_:b17283", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15769", + "@id": "_:b6991", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18047", + "@id": "_:b23984", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15776", + "@id": "_:b6987", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20838", + "@id": "_:b6988", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15773", + "@id": "_:b6996", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20836", + "@id": "_:b15377", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15768", + "@id": "_:b6989", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "result": { - "@id": "_:b9751", + "@id": "_:b19727", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15772", + "@id": "_:b6993", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4727", + "@id": "_:b8836", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15775", + "@id": "_:b6992", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20837", + "@id": "_:b5396", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15770", + "@id": "_:b6995", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", + "mode": "earl:automatic", "result": { - "@id": "_:b20834", + "@id": "_:b11438", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15777", + "@id": "_:b6994", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "result": { - "@id": "_:b20839", + "@id": "_:b25959", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15774", + "@id": "_:b6997", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", "result": { - "@id": "_:b15374", + "@id": "_:b23825", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object value", + "title": "Invalid value object value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er29-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0025-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0025-out.jsonld", - "title": "Problematic IRI flattening tests", - "rdfs:comment": "Flattening different kinds of terms and Compact IRIs", "assertions": [ { - "@id": "_:b6418", + "@id": "_:b3307", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "result": { - "@id": "_:b8471", + "@id": "_:b16895", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6419", + "@id": "_:b3308", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8472", + "@id": "_:b18872", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6421", + "@id": "_:b3310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8474", + "@id": "_:b23014", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6423", + "@id": "_:b3314", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8476", + "@id": "_:b24398", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6425", + "@id": "_:b3311", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "result": { - "@id": "_:b8478", + "@id": "_:b24396", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6424", + "@id": "_:b3312", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8477", + "@id": "_:b24397", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6417", + "@id": "_:b3306", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8470", + "@id": "_:b14483", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6422", + "@id": "_:b3304", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", + "mode": "earl:automatic", "result": { - "@id": "_:b8475", + "@id": "_:b3305", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6420", + "@id": "_:b3309", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "result": { - "@id": "_:b8473", + "@id": "_:b14061", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6415", + "@id": "_:b3313", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", "result": { - "@id": "_:b6416", + "@id": "_:b22727", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid language-tagged string", + "title": "Invalid language-tagged string", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er30-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0027-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0027-out.jsonld", - "title": "Duplicate values in @list and @set", - "rdfs:comment": "Duplicate values in @list and @set are not merged", "assertions": [ { - "@id": "_:b11963", + "@id": "_:b12598", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "result": { - "@id": "_:b19782", + "@id": "_:b15973", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11955", + "@id": "_:b12601", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11956", + "@id": "_:b15975", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11957", + "@id": "_:b12604", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19777", + "@id": "_:b15978", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11962", + "@id": "_:b12603", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17705", + "@id": "_:b15977", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11965", + "@id": "_:b12596", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "result": { - "@id": "_:b19783", + "@id": "_:b12597", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11959", + "@id": "_:b12605", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19779", + "@id": "_:b15979", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11960", + "@id": "_:b12599", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19780", + "@id": "_:b7206", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11961", + "@id": "_:b12606", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", + "mode": "earl:automatic", "result": { - "@id": "_:b19781", + "@id": "_:b15980", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11964", + "@id": "_:b12602", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "result": { - "@id": "_:b8378", + "@id": "_:b15976", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11958", + "@id": "_:b12600", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", "result": { - "@id": "_:b19778", + "@id": "_:b15974", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @index value", + "title": "Invalid @index value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er31-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @index value value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0028-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0028-out.jsonld", - "title": "Use @vocab in properties and @type but not in @id", - "rdfs:comment": "@vocab is used to compact properties and @type, but is not used for @id", "assertions": [ { - "@id": "_:b13607", + "@id": "_:b10186", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "result": { - "@id": "_:b18193", + "@id": "_:b10196", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13608", + "@id": "_:b10183", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7655", + "@id": "_:b10193", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13606", + "@id": "_:b10190", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18192", + "@id": "_:b10199", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13609", + "@id": "_:b10191", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10818", + "@id": "_:b10200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13610", + "@id": "_:b10192", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "result": { - "@id": "_:b18194", + "@id": "_:b1030", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13603", + "@id": "_:b10188", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18189", + "@id": "_:b10198", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13602", + "@id": "_:b10184", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16613", + "@id": "_:b10194", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13604", + "@id": "_:b10185", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", + "mode": "earl:automatic", "result": { - "@id": "_:b18190", + "@id": "_:b10195", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13605", + "@id": "_:b10187", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "result": { - "@id": "_:b18191", + "@id": "_:b10197", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13600", + "@id": "_:b10189", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", "result": { - "@id": "_:b13601", + "@id": "_:b8472", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @reverse value", + "title": "Invalid @reverse value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er33-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @reverse value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0030-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0030-out.jsonld", - "title": "Language maps", - "rdfs:comment": "Language Maps expand values to include @language", "assertions": [ { - "@id": "_:b2877", + "@id": "_:b8539", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "result": { - "@id": "_:b2878", + "@id": "_:b8540", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2882", + "@id": "_:b8544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22774", + "@id": "_:b18025", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2880", + "@id": "_:b8547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22773", + "@id": "_:b18028", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2887", + "@id": "_:b8549", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22776", + "@id": "_:b18030", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2886", + "@id": "_:b8546", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "result": { - "@id": "_:b16507", + "@id": "_:b18027", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2883", + "@id": "_:b8541", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19108", + "@id": "_:b13314", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2884", + "@id": "_:b8542", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22775", + "@id": "_:b2902", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2879", + "@id": "_:b8548", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", + "mode": "earl:automatic", "result": { - "@id": "_:b16085", + "@id": "_:b18029", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2885", + "@id": "_:b8543", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "result": { - "@id": "_:b21651", + "@id": "_:b5591", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2881", + "@id": "_:b8545", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", "result": { - "@id": "_:b19243", + "@id": "_:b18026", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property value", + "title": "Invalid reverse property value (in @reverse)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er34-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0031-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0031-out.jsonld", - "title": "type-coercion of native types", - "rdfs:comment": "Flattening native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation", "assertions": [ { - "@id": "_:b15256", + "@id": "_:b10990", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "result": { - "@id": "_:b18236", + "@id": "_:b7203", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15257", + "@id": "_:b10986", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18237", + "@id": "_:b11972", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15260", + "@id": "_:b10988", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18240", + "@id": "_:b11974", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15255", + "@id": "_:b10995", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18235", + "@id": "_:b11980", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15258", + "@id": "_:b10987", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "result": { - "@id": "_:b18238", + "@id": "_:b11973", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15259", + "@id": "_:b10993", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18239", + "@id": "_:b11978", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15254", + "@id": "_:b10992", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18234", + "@id": "_:b11977", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15253", + "@id": "_:b10991", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", + "mode": "earl:automatic", "result": { - "@id": "_:b18233", + "@id": "_:b11976", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15252", + "@id": "_:b10994", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "result": { - "@id": "_:b18232", + "@id": "_:b11979", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15250", + "@id": "_:b10989", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", "result": { - "@id": "_:b15251", + "@id": "_:b11975", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid language map value", + "title": "Invalid language map value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er35-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language map value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0032-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0032-out.jsonld", - "title": "Null term and @vocab", - "rdfs:comment": "Mapping a term to null decouples it from @vocab", "assertions": [ { - "@id": "_:b10076", + "@id": "_:b14275", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "result": { - "@id": "_:b10086", + "@id": "_:b26187", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10074", + "@id": "_:b14278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10084", + "@id": "_:b24566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10081", + "@id": "_:b14273", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10091", + "@id": "_:b20422", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10078", + "@id": "_:b14270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10088", + "@id": "_:b14271", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10079", + "@id": "_:b14277", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "result": { - "@id": "_:b10089", + "@id": "_:b26693", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10075", + "@id": "_:b14280", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10085", + "@id": "_:b23601", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10072", + "@id": "_:b14279", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10082", + "@id": "_:b26876", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10073", + "@id": "_:b14272", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", + "mode": "earl:automatic", "result": { - "@id": "_:b10083", + "@id": "_:b16933", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10080", + "@id": "_:b14276", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "result": { - "@id": "_:b10090", + "@id": "_:b26149", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10077", + "@id": "_:b14274", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", "result": { - "@id": "_:b10087", + "@id": "_:b17333", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property value", + "title": "Invalid reverse property value (through coercion)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er36-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0033-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0033-out.jsonld", - "title": "Using @vocab with with type-coercion", - "rdfs:comment": "Verifies that terms can be defined using @vocab", "assertions": [ { - "@id": "_:b5673", + "@id": "_:b3735", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "result": { - "@id": "_:b12397", + "@id": "_:b20179", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5666", + "@id": "_:b3737", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11156", + "@id": "_:b23721", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5665", + "@id": "_:b3738", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7604", + "@id": "_:b23722", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5670", + "@id": "_:b3731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12394", + "@id": "_:b3732", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5668", + "@id": "_:b3740", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "result": { - "@id": "_:b12392", + "@id": "_:b17056", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5669", + "@id": "_:b3733", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12393", + "@id": "_:b15944", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5671", + "@id": "_:b3741", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12395", + "@id": "_:b22977", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5672", + "@id": "_:b3734", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", + "mode": "earl:automatic", "result": { - "@id": "_:b12396", + "@id": "_:b18850", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5667", + "@id": "_:b3739", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "result": { - "@id": "_:b12391", + "@id": "_:b8427", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5674", + "@id": "_:b3736", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", "result": { - "@id": "_:b12398", + "@id": "_:b23720", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object", + "title": "Invalid value object (unexpected keyword)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er37-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0034-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0034-out.jsonld", - "title": "Multiple properties expanding to the same IRI", - "rdfs:comment": "Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms", "assertions": [ { - "@id": "_:b832", + "@id": "_:b11409", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "result": { - "@id": "_:b842", + "@id": "_:b11410", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b837", + "@id": "_:b11417", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b847", + "@id": "_:b25575", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b834", + "@id": "_:b11415", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b844", + "@id": "_:b26577", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b830", + "@id": "_:b11414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b840", + "@id": "_:b22980", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b833", + "@id": "_:b11413", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "result": { - "@id": "_:b843", + "@id": "_:b22149", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b838", + "@id": "_:b11411", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b848", + "@id": "_:b20406", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b831", + "@id": "_:b11419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b841", + "@id": "_:b25572", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b835", + "@id": "_:b11416", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", + "mode": "earl:automatic", "result": { - "@id": "_:b845", + "@id": "_:b11561", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b836", + "@id": "_:b11418", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "result": { - "@id": "_:b846", + "@id": "_:b26578", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b839", + "@id": "_:b11412", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", "result": { - "@id": "_:b849", + "@id": "_:b21788", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object", + "title": "Invalid value object (@type and @language)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er38-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0035-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0035-out.jsonld", - "title": "Language maps with @vocab, default language, and colliding property", - "rdfs:comment": "Pathological tests of language maps", "assertions": [ { - "@id": "_:b9538", + "@id": "_:b1556", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "result": { - "@id": "_:b23084", + "@id": "_:b16601", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9539", + "@id": "_:b1552", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25238", + "@id": "_:b1553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9535", + "@id": "_:b1558", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16866", + "@id": "_:b20557", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9531", + "@id": "_:b1561", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9532", + "@id": "_:b18048", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9540", + "@id": "_:b1557", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "result": { - "@id": "_:b1872", + "@id": "_:b20556", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9537", + "@id": "_:b1560", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17972", + "@id": "_:b20559", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9536", + "@id": "_:b1555", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17864", + "@id": "_:b20555", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9534", + "@id": "_:b1559", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", + "mode": "earl:automatic", "result": { - "@id": "_:b13681", + "@id": "_:b20558", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9541", + "@id": "_:b1562", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "result": { - "@id": "_:b15194", + "@id": "_:b20560", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9533", + "@id": "_:b1554", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", "result": { - "@id": "_:b11486", + "@id": "_:b11404", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid language-tagged value", + "title": "Invalid language-tagged value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er39-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language-tagged value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0036-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0036-out.jsonld", - "title": "Flattening @index", - "rdfs:comment": "Flattening index maps for terms defined with @container: @index", "assertions": [ { - "@id": "_:b9171", + "@id": "_:b21134", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "result": { - "@id": "_:b15214", + "@id": "_:b19402", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9168", + "@id": "_:b21133", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25855", + "@id": "_:b22738", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9170", + "@id": "_:b21132", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20487", + "@id": "_:b24189", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9167", + "@id": "_:b21129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9239", + "@id": "_:b16550", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9172", + "@id": "_:b21136", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "result": { - "@id": "_:b26994", + "@id": "_:b26283", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9166", + "@id": "_:b21131", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8063", + "@id": "_:b24950", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9174", + "@id": "_:b21135", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9933", + "@id": "_:b26282", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9164", + "@id": "_:b21130", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", + "mode": "earl:automatic", "result": { - "@id": "_:b9165", + "@id": "_:b7249", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9169", + "@id": "_:b21127", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "result": { - "@id": "_:b26346", + "@id": "_:b21128", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9173", + "@id": "_:b21137", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", "result": { - "@id": "_:b26892", + "@id": "_:b26284", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid typed value", + "title": "Invalid typed value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er40-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid typed value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0037-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0037-out.jsonld", - "title": "Flattening reverse properties", - "rdfs:comment": "Flattening @reverse keeps @reverse", "assertions": [ { - "@id": "_:b8042", + "@id": "_:b10227", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "result": { - "@id": "_:b23129", + "@id": "_:b26778", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8041", + "@id": "_:b10220", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23128", + "@id": "_:b18231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8036", + "@id": "_:b10218", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12533", + "@id": "_:b10219", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8037", + "@id": "_:b10228", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13769", + "@id": "_:b26519", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8044", + "@id": "_:b10225", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "result": { - "@id": "_:b10813", + "@id": "_:b25941", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8038", + "@id": "_:b10226", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21039", + "@id": "_:b26544", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8040", + "@id": "_:b10222", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22784", + "@id": "_:b20251", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8034", + "@id": "_:b10223", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", + "mode": "earl:automatic", "result": { - "@id": "_:b8035", + "@id": "_:b17028", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8043", + "@id": "_:b10221", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "result": { - "@id": "_:b10577", + "@id": "_:b19867", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8039", + "@id": "_:b10224", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", "result": { - "@id": "_:b22517", + "@id": "_:b12165", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid set or list object", + "title": "Invalid set or list object", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er41-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid set or list object is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0039-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0039-out.jsonld", - "title": "Using terms in a reverse-maps", - "rdfs:comment": "Terms within @reverse are expanded", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8035", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b10210", + "@id": "_:b8042", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "result": { - "@id": "_:b3964", + "@id": "_:b26850", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10208", + "@id": "_:b8039", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21881", + "@id": "_:b22639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10202", + "@id": "_:b8041", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11676", + "@id": "_:b25589", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10206", + "@id": "_:b8037", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15852", + "@id": "_:b16702", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10205", + "@id": "_:b8038", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "result": { - "@id": "_:b21879", + "@id": "_:b24662", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10204", + "@id": "_:b8044", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21878", + "@id": "_:b25982", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10203", + "@id": "_:b8036", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18068", + "@id": "_:b22189", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10207", + "@id": "_:b8033", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", + "mode": "earl:automatic", "result": { - "@id": "_:b21880", + "@id": "_:b8034", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10209", + "@id": "_:b8040", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "result": { - "@id": "_:b21882", + "@id": "_:b26532", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10200", + "@id": "_:b8043", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", "result": { - "@id": "_:b10201", + "@id": "_:b8586", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "keyword redefinition", + "title": "Keywords may not be redefined in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er42-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0040-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0040-out.jsonld", - "title": "language and index expansion on non-objects", - "rdfs:comment": "Only invoke language and index map expansion if the value is a JSON object", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12342", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11776", + "@id": "_:b12349", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "result": { - "@id": "_:b26412", + "@id": "_:b25356", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11769", + "@id": "_:b12351", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11770", + "@id": "_:b24306", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11773", + "@id": "_:b12343", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24491", + "@id": "_:b14519", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11772", + "@id": "_:b12346", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19574", + "@id": "_:b21161", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11774", + "@id": "_:b12348", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "result": { - "@id": "_:b25353", + "@id": "_:b24998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11775", + "@id": "_:b12340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23596", + "@id": "_:b12341", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11777", + "@id": "_:b12347", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26413", + "@id": "_:b25355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11779", + "@id": "_:b12344", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", + "mode": "earl:automatic", "result": { - "@id": "_:b26414", + "@id": "_:b20861", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11778", + "@id": "_:b12345", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "result": { - "@id": "_:b12439", + "@id": "_:b23346", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11771", + "@id": "_:b12350", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", "result": { - "@id": "_:b16129", + "@id": "_:b25357", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Term definition with @id: @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er43-in.jsonld", + "rdfs:comment": "Expanding term mapping to @type uses @type syntax now illegal" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0041-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0041-out.jsonld", - "title": "Free-floating sets and lists", - "rdfs:comment": "Free-floating values in sets are removed, free-floating lists are removed completely", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b15440", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b20281", + "@id": "_:b15442", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "result": { - "@id": "_:b20282", + "@id": "_:b20360", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20289", + "@id": "_:b15438", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26062", + "@id": "_:b15439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20291", + "@id": "_:b15449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23366", + "@id": "_:b23040", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20283", + "@id": "_:b15444", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21796", + "@id": "_:b23036", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20290", + "@id": "_:b15445", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "result": { - "@id": "_:b12714", + "@id": "_:b23037", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20287", + "@id": "_:b15447", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22216", + "@id": "_:b23038", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20286", + "@id": "_:b15448", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24065", + "@id": "_:b23039", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20285", + "@id": "_:b15441", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", + "mode": "earl:automatic", "result": { - "@id": "_:b21565", + "@id": "_:b16727", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20284", + "@id": "_:b15446", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "result": { - "@id": "_:b17799", + "@id": "_:b3774", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20288", + "@id": "_:b15443", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", "result": { - "@id": "_:b6913", + "@id": "_:b22635", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Redefine terms looking like compact IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er44-in.jsonld", + "rdfs:comment": "Term definitions may look like compact IRIs, but must be consistent." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0042-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0042-out.jsonld", - "title": "List objects not equivalent", - "rdfs:comment": "Lists objects are implicit unlabeled blank nodes and thus never equivalent", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7879", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7371", + "@id": "_:b7888", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "result": { - "@id": "_:b25458", + "@id": "_:b7898", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7370", + "@id": "_:b7883", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26006", + "@id": "_:b7893", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7376", + "@id": "_:b7884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4344", + "@id": "_:b7894", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7373", + "@id": "_:b7881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26870", + "@id": "_:b7891", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7368", + "@id": "_:b7882", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "result": { - "@id": "_:b10830", + "@id": "_:b7892", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7369", + "@id": "_:b7885", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25875", + "@id": "_:b7895", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7375", + "@id": "_:b7889", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19376", + "@id": "_:b7899", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7372", + "@id": "_:b7880", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", + "mode": "earl:automatic", "result": { - "@id": "_:b25243", + "@id": "_:b7890", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7366", + "@id": "_:b7886", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "result": { - "@id": "_:b7367", + "@id": "_:b7896", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7374", + "@id": "_:b7887", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", "result": { - "@id": "_:b19242", + "@id": "_:b7897", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - }, - { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid term as relative IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er48-in.jsonld", + "rdfs:comment": "Verifies that a relative IRI cannot be used as a term." + }, + { + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0043-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0043-out.jsonld", - "title": "Sample test manifest extract", - "rdfs:comment": "Flatten a test manifest", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14968", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7689", + "@id": "_:b14969", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "result": { - "@id": "_:b7690", + "@id": "_:b21989", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7698", + "@id": "_:b14976", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19937", + "@id": "_:b21144", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7694", + "@id": "_:b14973", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19934", + "@id": "_:b26311", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7696", + "@id": "_:b14970", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19935", + "@id": "_:b24726", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7691", + "@id": "_:b14977", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "result": { - "@id": "_:b19931", + "@id": "_:b25009", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7695", + "@id": "_:b14974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16309", + "@id": "_:b23319", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7697", + "@id": "_:b14971", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19936", + "@id": "_:b25761", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7692", + "@id": "_:b14975", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", + "mode": "earl:automatic", "result": { - "@id": "_:b19932", + "@id": "_:b26859", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7699", + "@id": "_:b14966", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "result": { - "@id": "_:b19938", + "@id": "_:b14967", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7693", + "@id": "_:b14972", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", "result": { - "@id": "_:b19933", + "@id": "_:b18688", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "A relative IRI cannot be used as a prefix", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er49-in.jsonld", + "rdfs:comment": "Verifies that a relative IRI cannot be used as a term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1474", - "https://w3c.github.io/json-ld-api/tests/vocab#compactArrays": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0044-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0044-out.jsonld", - "title": "compactArrays option", - "rdfs:comment": "Setting compactArrays to false causes single element arrays to be retained", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten/0044-context.jsonld" - }, "assertions": [ { - "@id": "_:b1475", + "@id": "_:b2276", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "result": { - "@id": "_:b19214", + "@id": "_:b16821", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1480", + "@id": "_:b2279", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25812", + "@id": "_:b24541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1476", + "@id": "_:b2281", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24244", + "@id": "_:b18711", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1481", + "@id": "_:b2278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12024", + "@id": "_:b22838", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1483", + "@id": "_:b2282", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "result": { - "@id": "_:b3335", + "@id": "_:b25417", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1479", + "@id": "_:b2275", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26691", + "@id": "_:b13376", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1477", + "@id": "_:b2273", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24433", + "@id": "_:b2274", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1478", + "@id": "_:b2280", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", + "mode": "earl:automatic", "result": { - "@id": "_:b19039", + "@id": "_:b25472", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1472", + "@id": "_:b2283", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "result": { - "@id": "_:b1473", + "@id": "_:b14284", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1482", + "@id": "_:b2277", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", "result": { - "@id": "_:b24026", + "@id": "_:b21905", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid reverse id", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er50-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0045-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0045-out.jsonld", - "title": "Blank nodes with reverse properties", - "rdfs:comment": "Proper (re-)labeling of blank nodes if used with reverse properties.", "assertions": [ { - "@id": "_:b12648", + "@id": "_:b18642", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "result": { - "@id": "_:b18074", + "@id": "_:b18643", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12646", + "@id": "_:b18644", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18072", + "@id": "_:b21975", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12642", + "@id": "_:b18646", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12643", + "@id": "_:b5215", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12652", + "@id": "_:b18650", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18078", + "@id": "_:b23752", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12647", + "@id": "_:b18651", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "result": { - "@id": "_:b18073", + "@id": "_:b19693", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12649", + "@id": "_:b18647", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18075", + "@id": "_:b23749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12651", + "@id": "_:b18649", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18077", + "@id": "_:b23751", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12645", + "@id": "_:b18648", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", + "mode": "earl:automatic", "result": { - "@id": "_:b18071", + "@id": "_:b23750", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12644", + "@id": "_:b18645", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "result": { - "@id": "_:b17144", + "@id": "_:b23020", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12650", + "@id": "_:b18652", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", "result": { - "@id": "_:b18076", + "@id": "_:b19879", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object value", + "title": "Invalid value object value using a value alias", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er51-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0046-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0046-out.jsonld", - "title": "Empty string as identifier", - "rdfs:comment": "Usage of empty strings in identifiers needs special care when constructing the node map.", "assertions": [ { - "@id": "_:b4445", + "@id": "_:b8837", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "result": { - "@id": "_:b4446", + "@id": "_:b8838", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4449", + "@id": "_:b8840", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17555", + "@id": "_:b21342", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4448", + "@id": "_:b8846", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17517", + "@id": "_:b23904", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4450", + "@id": "_:b8842", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17556", + "@id": "_:b23902", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4455", + "@id": "_:b8844", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "result": { - "@id": "_:b17561", + "@id": "_:b18588", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4447", + "@id": "_:b8839", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17554", + "@id": "_:b18114", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4454", + "@id": "_:b8847", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17560", + "@id": "_:b21164", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4452", + "@id": "_:b8843", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", + "mode": "earl:automatic", "result": { - "@id": "_:b17558", + "@id": "_:b23903", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4451", + "@id": "_:b8841", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "result": { - "@id": "_:b17557", + "@id": "_:b18667", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4453", + "@id": "_:b8845", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", "result": { - "@id": "_:b17559", + "@id": "_:b19127", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "Definition for the empty term", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er52-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains a definition for the empty term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20754", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example.org/" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0047-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0047-out.jsonld", - "title": "Flatten using relative fragment identifier properly joins to base", - "rdfs:comment": "Compacting a relative round-trips", "assertions": [ { - "@id": "_:b20758", + "@id": "_:b20940", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "result": { - "@id": "_:b23951", + "@id": "_:b24877", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20759", + "@id": "_:b20942", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20631", + "@id": "_:b24878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20762", + "@id": "_:b20939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25920", + "@id": "_:b13185", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20761", + "@id": "_:b20941", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26655", + "@id": "_:b23597", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20755", + "@id": "_:b20938", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "result": { - "@id": "_:b22695", + "@id": "_:b14604", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20760", + "@id": "_:b20934", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12147", + "@id": "_:b22885", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20763", + "@id": "_:b20936", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25338", + "@id": "_:b22914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20752", + "@id": "_:b20937", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", + "mode": "earl:automatic", "result": { - "@id": "_:b20753", + "@id": "_:b3563", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20757", + "@id": "_:b20935", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "result": { - "@id": "_:b24610", + "@id": "_:b21507", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20756", + "@id": "_:b20933", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", "result": { - "@id": "_:b24121", + "@id": "_:b22350", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @prefix value", + "title": "Invalid prefix value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er53-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @prefix value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0048-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0048-out.jsonld", - "title": "@list with embedded object", - "rdfs:comment": "Node definitions contained within lists are flattend to top level.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b15801", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b15068", + "@id": "_:b17092", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "result": { - "@id": "_:b15078", + "@id": "_:b16595", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15062", + "@id": "_:b17093", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15072", + "@id": "_:b21243", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15066", + "@id": "_:b17098", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15076", + "@id": "_:b26084", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15059", + "@id": "_:b17100", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15069", + "@id": "_:b17374", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15065", + "@id": "_:b17101", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "result": { - "@id": "_:b15075", + "@id": "_:b20357", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15061", + "@id": "_:b17099", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15071", + "@id": "_:b25011", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15067", + "@id": "_:b17094", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15077", + "@id": "_:b24178", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15063", + "@id": "_:b17095", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", + "mode": "earl:automatic", "result": { - "@id": "_:b15073", + "@id": "_:b24389", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15064", + "@id": "_:b17097", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "result": { - "@id": "_:b15074", + "@id": "_:b26210", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15060", + "@id": "_:b17096", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", "result": { - "@id": "_:b15070", + "@id": "_:b23216", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in01-out.nq", + "title": "Basic Included array", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in01-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0049-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0049-out.jsonld", - "title": "context with JavaScript Object property names", - "rdfs:comment": "Flatten with context including JavaScript Object property names", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6345", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b13298", + "@id": "_:b6348", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "result": { - "@id": "_:b26159", + "@id": "_:b21189", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13296", + "@id": "_:b6351", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23301", + "@id": "_:b25424", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13297", + "@id": "_:b6354", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26158", + "@id": "_:b26897", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13291", + "@id": "_:b6352", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13292", + "@id": "_:b24063", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13299", + "@id": "_:b6353", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "result": { - "@id": "_:b9107", + "@id": "_:b26251", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13301", + "@id": "_:b6347", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16936", + "@id": "_:b19658", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13300", + "@id": "_:b6349", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26160", + "@id": "_:b21681", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13295", + "@id": "_:b6346", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", + "mode": "earl:automatic", "result": { - "@id": "_:b22508", + "@id": "_:b18358", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13294", + "@id": "_:b6350", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "result": { - "@id": "_:b8586", + "@id": "_:b24663", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13293", + "@id": "_:b6355", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", "result": { - "@id": "_:b19974", + "@id": "_:b21288", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in02-out.nq", + "title": "Basic Included object", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in02-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7182", + "@id": "_:b1540", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/e001-in.jsonld", - "mf:result": "conflicting indexes", - "title": "Conflicting indexes", - "rdfs:comment": "Verifies that an exception is raised in Flattening when conflicting indexes are found", "assertions": [ { - "@id": "_:b7184", + "@id": "_:b1548", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "result": { - "@id": "_:b20830", + "@id": "_:b18982", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7189", + "@id": "_:b1547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25760", + "@id": "_:b18981", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7191", + "@id": "_:b1538", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19795", + "@id": "_:b1539", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7190", + "@id": "_:b1542", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24119", + "@id": "_:b11737", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7180", + "@id": "_:b1543", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "result": { - "@id": "_:b7181", + "@id": "_:b18977", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7188", + "@id": "_:b1541", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1896", + "@id": "_:b9674", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7183", + "@id": "_:b1544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18657", + "@id": "_:b18978", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7186", + "@id": "_:b1546", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", + "mode": "earl:automatic", "result": { - "@id": "_:b17707", + "@id": "_:b18980", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7187", + "@id": "_:b1545", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "result": { - "@id": "_:b25435", + "@id": "_:b18979", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7185", + "@id": "_:b1549", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", "result": { - "@id": "_:b22984", + "@id": "_:b18983", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in03-out.nq", + "title": "Multiple properties mapping to @included are folded together", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in03-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1685", + "@id": "_:b14258", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in01-out.jsonld", - "title": "Basic Included array", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b1686", + "@id": "_:b14265", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "result": { - "@id": "_:b20149", + "@id": "_:b24884", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1689", + "@id": "_:b14263", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10528", + "@id": "_:b24883", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1691", + "@id": "_:b14262", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22372", + "@id": "_:b24882", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1688", + "@id": "_:b14256", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7362", + "@id": "_:b14257", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1692", + "@id": "_:b14267", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "result": { - "@id": "_:b22373", + "@id": "_:b24885", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1690", + "@id": "_:b14261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22371", + "@id": "_:b24543", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1693", + "@id": "_:b14266", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20356", + "@id": "_:b7480", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1687", + "@id": "_:b14260", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", + "mode": "earl:automatic", "result": { - "@id": "_:b22370", + "@id": "_:b24119", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1683", + "@id": "_:b14264", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "result": { - "@id": "_:b1684", + "@id": "_:b21772", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1694", + "@id": "_:b14259", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", "result": { - "@id": "_:b16628", + "@id": "_:b18334", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in04-out.nq", + "title": "Included containing @included", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in04-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b22087", + "@id": "_:b5679", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in02-out.jsonld", - "title": "Basic Included object", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b22088", + "@id": "_:b5688", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "result": { - "@id": "_:b21042", + "@id": "_:b15048", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22091", + "@id": "_:b5686", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10473", + "@id": "_:b22421", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22092", + "@id": "_:b5680", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26622", + "@id": "_:b914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22089", + "@id": "_:b5685", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26531", + "@id": "_:b21586", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22085", + "@id": "_:b5684", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "result": { - "@id": "_:b22086", + "@id": "_:b22420", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22093", + "@id": "_:b5677", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26960", + "@id": "_:b5678", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22096", + "@id": "_:b5683", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16181", + "@id": "_:b22419", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22094", + "@id": "_:b5682", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", + "mode": "earl:automatic", "result": { - "@id": "_:b26966", + "@id": "_:b22418", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b22090", + "@id": "_:b5681", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "result": { - "@id": "_:b10898", + "@id": "_:b14903", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22095", + "@id": "_:b5687", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", "result": { - "@id": "_:b4260", + "@id": "_:b22422", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in05-out.nq", + "title": "Property value with @included", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in05-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17694", + "@id": "_:b11705", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in03-out.jsonld", - "title": "Multiple properties mapping to @included are folded together", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b17698", + "@id": "_:b12448", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "result": { - "@id": "_:b26760", + "@id": "_:b17621", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17700", + "@id": "_:b12446", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b27022", + "@id": "_:b12447", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17696", + "@id": "_:b12449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25137", + "@id": "_:b12182", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17703", + "@id": "_:b12451", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26736", + "@id": "_:b23500", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17699", + "@id": "_:b12455", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "result": { - "@id": "_:b26890", + "@id": "_:b23502", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17695", + "@id": "_:b12450", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23590", + "@id": "_:b5758", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17701", + "@id": "_:b12454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16861", + "@id": "_:b22343", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17697", + "@id": "_:b12452", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", + "mode": "earl:automatic", "result": { - "@id": "_:b16405", + "@id": "_:b23134", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17702", + "@id": "_:b12453", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "result": { - "@id": "_:b25160", + "@id": "_:b23501", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17692", + "@id": "_:b12456", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", "result": { - "@id": "_:b17693", + "@id": "_:b7210", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in06-out.nq", + "title": "json.api example", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in06-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3236", + "@id": "_:b5256", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in04-out.jsonld", - "title": "Included containing @included", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b3239", + "@id": "_:b5264", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "result": { - "@id": "_:b19723", + "@id": "_:b21546", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3243", + "@id": "_:b5260", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26928", + "@id": "_:b24595", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3238", + "@id": "_:b5261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16147", + "@id": "_:b24596", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3244", + "@id": "_:b5257", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25183", + "@id": "_:b14648", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3245", + "@id": "_:b5259", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "result": { - "@id": "_:b13599", + "@id": "_:b22932", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3234", + "@id": "_:b5254", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3235", + "@id": "_:b5255", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3241", + "@id": "_:b5262", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7099", + "@id": "_:b8299", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3242", + "@id": "_:b5258", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", + "mode": "earl:automatic", "result": { - "@id": "_:b4783", + "@id": "_:b21966", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3237", + "@id": "_:b5263", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "result": { - "@id": "_:b15482", + "@id": "_:b24597", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3240", + "@id": "_:b5265", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", "result": { - "@id": "_:b19345", + "@id": "_:b24208", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @included value", + "title": "Error if @included value is a string", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in07-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3672", + "@id": "_:b4858", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in05-out.jsonld", - "title": "Property value with @included", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b3674", + "@id": "_:b4859", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "result": { - "@id": "_:b15900", + "@id": "_:b10079", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3670", + "@id": "_:b4856", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3671", + "@id": "_:b4857", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3673", + "@id": "_:b4860", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10814", + "@id": "_:b12649", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3677", + "@id": "_:b4863", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26589", + "@id": "_:b5443", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3680", + "@id": "_:b4867", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "result": { - "@id": "_:b11142", + "@id": "_:b13179", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3678", + "@id": "_:b4866", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22920", + "@id": "_:b5816", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3679", + "@id": "_:b4864", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26590", + "@id": "_:b25569", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3675", + "@id": "_:b4861", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", + "mode": "earl:automatic", "result": { - "@id": "_:b19238", + "@id": "_:b22314", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3676", + "@id": "_:b4865", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "result": { - "@id": "_:b14452", + "@id": "_:b25422", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3681", + "@id": "_:b4862", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", "result": { - "@id": "_:b19458", + "@id": "_:b24769", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @included value", + "title": "Error if @included value is a value object", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in08-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11426", + "@id": "_:b4122", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in06-out.jsonld", - "title": "json.api example", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b11432", + "@id": "_:b4127", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "result": { - "@id": "_:b24258", + "@id": "_:b4137", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11435", + "@id": "_:b4131", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26251", + "@id": "_:b4141", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11424", + "@id": "_:b4126", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11425", + "@id": "_:b4136", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11428", + "@id": "_:b4128", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20767", + "@id": "_:b4138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11431", + "@id": "_:b4124", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "result": { - "@id": "_:b25996", + "@id": "_:b4134", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11427", + "@id": "_:b4123", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11558", + "@id": "_:b4133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11429", + "@id": "_:b4132", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21803", + "@id": "_:b4142", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11434", + "@id": "_:b4129", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", + "mode": "earl:automatic", "result": { - "@id": "_:b26250", + "@id": "_:b4139", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11433", + "@id": "_:b4125", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "result": { - "@id": "_:b25462", + "@id": "_:b4135", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11430", + "@id": "_:b4130", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", "result": { - "@id": "_:b23912", + "@id": "_:b4140", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @included value", + "title": "Error if @included value is a list object", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in09-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2157", + "@id": "_:b14712", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/li01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/li01-out.jsonld", - "title": "@list containing an deep list", - "rdfs:comment": "Lists of lists", "assertions": [ { - "@id": "_:b2159", + "@id": "_:b14721", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "result": { - "@id": "_:b21432", + "@id": "_:b25980", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2160", + "@id": "_:b14719", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24241", + "@id": "_:b26038", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2161", + "@id": "_:b14715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25916", + "@id": "_:b20013", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2164", + "@id": "_:b14716", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23407", + "@id": "_:b20198", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2155", + "@id": "_:b14713", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "result": { - "@id": "_:b2156", + "@id": "_:b14965", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2158", + "@id": "_:b14714", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12847", + "@id": "_:b18662", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2165", + "@id": "_:b14720", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25188", + "@id": "_:b12888", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2163", + "@id": "_:b14717", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", + "mode": "earl:automatic", "result": { - "@id": "_:b23766", + "@id": "_:b23118", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2162", + "@id": "_:b14718", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "result": { - "@id": "_:b26218", + "@id": "_:b26908", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2166", + "@id": "_:b14722", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", "result": { - "@id": "_:b9429", + "@id": "_:b23668", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js01-out.nq", + "title": "Transform JSON literal (boolean true)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js01-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (boolean true)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b491", + "@id": "_:b10666", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/li02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/li02-out.jsonld", - "title": "@list containing empty @list", - "rdfs:comment": "Lists of lists", "assertions": [ { - "@id": "_:b497", + "@id": "_:b10675", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "result": { - "@id": "_:b507", + "@id": "_:b10828", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b495", + "@id": "_:b10673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b505", + "@id": "_:b7920", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b500", + "@id": "_:b10672", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b510", + "@id": "_:b23780", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b492", + "@id": "_:b10671", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b502", + "@id": "_:b20494", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b501", + "@id": "_:b10669", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "result": { - "@id": "_:b511", + "@id": "_:b19692", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b494", + "@id": "_:b10674", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b504", + "@id": "_:b26846", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b499", + "@id": "_:b10667", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b509", + "@id": "_:b17167", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b493", + "@id": "_:b10664", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", + "mode": "earl:automatic", "result": { - "@id": "_:b503", + "@id": "_:b10665", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b498", + "@id": "_:b10670", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "result": { - "@id": "_:b508", + "@id": "_:b24449", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b496", + "@id": "_:b10668", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", "result": { - "@id": "_:b506", + "@id": "_:b21097", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js02-out.nq", + "title": "Transform JSON literal (boolean false)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js02-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (boolean false)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4308", + "@id": "_:b17671", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/li03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/li03-out.jsonld", - "title": "@list containing mixed list values", - "rdfs:comment": "Lists of lists", "assertions": [ { - "@id": "_:b4310", + "@id": "_:b17674", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "result": { - "@id": "_:b21889", + "@id": "_:b17683", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4316", + "@id": "_:b17679", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23285", + "@id": "_:b17686", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4313", + "@id": "_:b17678", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23282", + "@id": "_:b16894", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4312", + "@id": "_:b17677", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23281", + "@id": "_:b17685", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4314", + "@id": "_:b17680", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "result": { - "@id": "_:b23283", + "@id": "_:b17687", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4309", + "@id": "_:b17675", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8987", + "@id": "_:b16597", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4315", + "@id": "_:b17681", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23284", + "@id": "_:b17688", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4311", + "@id": "_:b17673", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", + "mode": "earl:automatic", "result": { - "@id": "_:b23280", + "@id": "_:b17682", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4306", + "@id": "_:b17672", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "result": { - "@id": "_:b4307", + "@id": "_:b5120", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4317", + "@id": "_:b17676", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", "result": { - "@id": "_:b23286", + "@id": "_:b17684", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - } - ], - "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", - "title": "Flattening", - "rdfs:comment": "These tests implement the requirements for the JSON-LD [Flattening Algorithm](https://www.w3.org/TR/json-ld11-api/#flattening-algorithm)." - }, - { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest", - "@type": [ - "mf:Manifest", - "Report" - ], - "entries": [ + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js03-out.nq", + "title": "Transform JSON literal (double)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js03-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (double)." + }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld", - "title": "load JSON-LD document", - "rdfs:comment": "Document loader loads a JSON-LD document.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5820", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b18404", + "@id": "_:b5826", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "result": { - "@id": "_:b18405", + "@id": "_:b19216", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18408", + "@id": "_:b5823", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21677", + "@id": "_:b19213", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18409", + "@id": "_:b5822", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21678", + "@id": "_:b19212", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18411", + "@id": "_:b5818", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21679", + "@id": "_:b5819", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18407", + "@id": "_:b5824", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "result": { - "@id": "_:b21676", + "@id": "_:b19214", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18406", + "@id": "_:b5828", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21675", + "@id": "_:b19218", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18413", + "@id": "_:b5825", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14667", + "@id": "_:b19215", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18414", + "@id": "_:b5829", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", + "mode": "earl:automatic", "result": { - "@id": "_:b8220", + "@id": "_:b19219", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18412", + "@id": "_:b5821", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "result": { - "@id": "_:b6272", + "@id": "_:b18341", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18410", + "@id": "_:b5827", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", "result": { - "@id": "_:b2482", + "@id": "_:b19217", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js04-out.nq", + "title": "Transform JSON literal (double-zero)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js04-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (double-zero)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0002-in.json", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0002-out.jsonld", - "title": "load JSON document", - "rdfs:comment": "Document loader loads a JSON document.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5806", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7416", + "@id": "_:b5815", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "result": { - "@id": "_:b2727", + "@id": "_:b21903", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7412", + "@id": "_:b5808", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7413", + "@id": "_:b21326", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7418", + "@id": "_:b5807", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25193", + "@id": "_:b16484", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7421", + "@id": "_:b5810", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24348", + "@id": "_:b21900", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7422", + "@id": "_:b5813", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "result": { - "@id": "_:b905", + "@id": "_:b18306", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7417", + "@id": "_:b5809", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24461", + "@id": "_:b21899", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7415", + "@id": "_:b5811", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8822", + "@id": "_:b21901", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7420", + "@id": "_:b5814", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", + "mode": "earl:automatic", "result": { - "@id": "_:b5203", + "@id": "_:b21902", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7414", + "@id": "_:b5812", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "result": { - "@id": "_:b11499", + "@id": "_:b21192", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7419", + "@id": "_:b5804", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", "result": { - "@id": "_:b12782", + "@id": "_:b5805", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js05-out.nq", + "title": "Transform JSON literal (integer)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js05-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (integer)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6428", - "https://w3c.github.io/json-ld-api/tests/vocab#contentType": { - "@value": "application/jldTest+json", + "@id": "_:b3578", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0003-in.jldt", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0003-out.jsonld", - "title": "load JSON document with extension-type", - "rdfs:comment": "Document loader loads a JSON document having an extension mime-subtype.", "assertions": [ { - "@id": "_:b6426", + "@id": "_:b8568", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "result": { - "@id": "_:b6427", + "@id": "_:b20081", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6432", + "@id": "_:b8563", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23416", + "@id": "_:b8564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6436", + "@id": "_:b8565", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24922", + "@id": "_:b20078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6435", + "@id": "_:b8570", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23743", + "@id": "_:b20083", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6430", + "@id": "_:b8573", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "result": { - "@id": "_:b18720", + "@id": "_:b20086", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6434", + "@id": "_:b8566", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24609", + "@id": "_:b20079", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6433", + "@id": "_:b8569", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24103", + "@id": "_:b20082", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6429", + "@id": "_:b8571", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", + "mode": "earl:automatic", "result": { - "@id": "_:b17070", + "@id": "_:b20084", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6431", + "@id": "_:b8567", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "result": { - "@id": "_:b21148", + "@id": "_:b20080", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6437", + "@id": "_:b8572", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", "result": { - "@id": "_:b9485", + "@id": "_:b20085", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js06-out.nq", + "title": "Transform JSON literal (object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js06-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (object)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4676", - "https://w3c.github.io/json-ld-api/tests/vocab#contentType": { - "@value": "application/jldTest", + "@id": "_:b17363", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0004-in.jldte", - "mf:result": "loading document failed", - "title": "loading an unknown type raises loading document failed", - "rdfs:comment": "Loading a document with a non-JSON mime type raises loading document failed", "assertions": [ { - "@id": "_:b4679", + "@id": "_:b17372", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "result": { - "@id": "_:b10815", + "@id": "_:b22821", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4678", + "@id": "_:b17369", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14538", + "@id": "_:b22072", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4681", + "@id": "_:b17361", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10745", + "@id": "_:b17362", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4685", + "@id": "_:b17368", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7134", + "@id": "_:b17271", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4677", + "@id": "_:b17367", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "result": { - "@id": "_:b10302", + "@id": "_:b16599", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4682", + "@id": "_:b17371", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15262", + "@id": "_:b22820", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4674", + "@id": "_:b17364", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4675", + "@id": "_:b21113", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4680", + "@id": "_:b17370", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", + "mode": "earl:automatic", "result": { - "@id": "_:b15261", + "@id": "_:b14512", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4684", + "@id": "_:b17365", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "result": { - "@id": "_:b15263", + "@id": "_:b22819", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4683", + "@id": "_:b17366", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", "result": { - "@id": "_:b10560", + "@id": "_:b19873", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js07-out.nq", + "title": "Transform JSON literal (array)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js07-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (array)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3100", - "https://w3c.github.io/json-ld-api/tests/vocab#httpStatus": { - "@value": "301", - "@type": "http://www.w3.org/2001/XMLSchema#integer" + "@id": "_:b7495", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" }, - "https://w3c.github.io/json-ld-api/tests/vocab#redirectTo": { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld" - } + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld", - "title": "Load JSON-LD through 301 redirect", - "rdfs:comment": "Loading a document with a redirect should use the redirected URL as document base", "assertions": [ { - "@id": "_:b3104", + "@id": "_:b7502", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "result": { - "@id": "_:b17765", + "@id": "_:b25985", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3103", + "@id": "_:b7493", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18829", + "@id": "_:b7494", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3108", + "@id": "_:b7496", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25365", + "@id": "_:b15029", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3105", + "@id": "_:b7500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22863", + "@id": "_:b13999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3101", + "@id": "_:b7497", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "result": { - "@id": "_:b6345", + "@id": "_:b17966", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3106", + "@id": "_:b7499", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25339", + "@id": "_:b25617", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3102", + "@id": "_:b7503", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12494", + "@id": "_:b11991", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3107", + "@id": "_:b7498", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", + "mode": "earl:automatic", "result": { - "@id": "_:b26469", + "@id": "_:b24560", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3098", + "@id": "_:b7501", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "result": { - "@id": "_:b3099", + "@id": "_:b26853", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3109", + "@id": "_:b7504", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", "result": { - "@id": "_:b15000", + "@id": "_:b21535", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js08-out.nq", + "title": "Transform JSON literal with array canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js08-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal with array canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5803", - "https://w3c.github.io/json-ld-api/tests/vocab#httpStatus": { - "@value": "303", - "@type": "http://www.w3.org/2001/XMLSchema#integer" + "@id": "_:b8629", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" }, - "https://w3c.github.io/json-ld-api/tests/vocab#redirectTo": { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld" - } + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld", - "title": "Load JSON-LD through 303 redirect", - "rdfs:comment": "Loading a document with a redirect should use the redirected URL as document base", "assertions": [ { - "@id": "_:b15323", + "@id": "_:b8636", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "result": { - "@id": "_:b3965", + "@id": "_:b11778", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15320", + "@id": "_:b8630", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15321", + "@id": "_:b19004", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15326", + "@id": "_:b8633", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26401", + "@id": "_:b19006", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15328", + "@id": "_:b8631", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22083", + "@id": "_:b19005", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15325", + "@id": "_:b8632", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "result": { - "@id": "_:b26867", + "@id": "_:b18078", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15322", + "@id": "_:b8634", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25177", + "@id": "_:b19007", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15327", + "@id": "_:b8638", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25625", + "@id": "_:b19009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15329", + "@id": "_:b8637", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", + "mode": "earl:automatic", "result": { - "@id": "_:b25124", + "@id": "_:b19008", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15324", + "@id": "_:b8627", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "result": { - "@id": "_:b25612", + "@id": "_:b8628", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15330", + "@id": "_:b8635", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", "result": { - "@id": "_:b25635", + "@id": "_:b9880", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js09-out.nq", + "title": "Transform JSON literal with string canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js09-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal with string canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1886", - "https://w3c.github.io/json-ld-api/tests/vocab#httpStatus": { - "@value": "307", - "@type": "http://www.w3.org/2001/XMLSchema#integer" + "@id": "_:b7012", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" }, - "https://w3c.github.io/json-ld-api/tests/vocab#redirectTo": { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld" - } + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld", - "title": "Load JSON-LD through 307 redirect", - "rdfs:comment": "Loading a document with a redirect should use the redirected URL as document base", "assertions": [ { - "@id": "_:b1888", + "@id": "_:b7019", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "result": { - "@id": "_:b22301", + "@id": "_:b12443", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1889", + "@id": "_:b7017", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12264", + "@id": "_:b12442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1891", + "@id": "_:b7011", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22302", + "@id": "_:b5595", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1890", + "@id": "_:b7015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15972", + "@id": "_:b12440", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1887", + "@id": "_:b7020", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "result": { - "@id": "_:b22300", + "@id": "_:b12444", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1895", + "@id": "_:b7016", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22306", + "@id": "_:b12441", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1892", + "@id": "_:b7014", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22303", + "@id": "_:b12439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1894", + "@id": "_:b7021", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", + "mode": "earl:automatic", "result": { - "@id": "_:b22305", + "@id": "_:b9460", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1893", + "@id": "_:b7018", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "result": { - "@id": "_:b22304", + "@id": "_:b11944", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1884", + "@id": "_:b7013", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", "result": { - "@id": "_:b1885", + "@id": "_:b12438", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js10-out.nq", + "title": "Transform JSON literal with structural canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js10-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal with structural canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/missing-in.jsonld", - "mf:result": "loading document failed", - "title": "Non-existant file (404)", - "rdfs:comment": "Loading a non-existant file raises loading document failed error", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5446", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11024", + "@id": "_:b5448", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "result": { - "@id": "_:b25332", + "@id": "_:b17569", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11021", + "@id": "_:b5450", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25331", + "@id": "_:b21046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11015", + "@id": "_:b5455", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11016", + "@id": "_:b21049", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11018", + "@id": "_:b5454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24339", + "@id": "_:b7683", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11023", + "@id": "_:b5447", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "result": { - "@id": "_:b14145", + "@id": "_:b4791", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11017", + "@id": "_:b5444", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11064", + "@id": "_:b5445", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11020", + "@id": "_:b5453", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25330", + "@id": "_:b20304", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11025", + "@id": "_:b5449", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", + "mode": "earl:automatic", "result": { - "@id": "_:b22707", + "@id": "_:b21045", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11022", + "@id": "_:b5452", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "result": { - "@id": "_:b19037", + "@id": "_:b21048", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11019", + "@id": "_:b5451", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", "result": { - "@id": "_:b25134", + "@id": "_:b21047", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js11-out.nq", + "title": "Transform JSON literal with unicode canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js11-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal with unicode canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8200", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "<0009-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" + "@id": "_:b11526", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0009-out.jsonld", - "title": "load JSON-LD document with link", - "rdfs:comment": "If a context is specified in a link header, it is not used for JSON-LD.", "assertions": [ { - "@id": "_:b8207", + "@id": "_:b11531", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "result": { - "@id": "_:b22815", + "@id": "_:b18228", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8199", + "@id": "_:b11533", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3373", + "@id": "_:b9328", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8204", + "@id": "_:b11524", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20705", + "@id": "_:b11525", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8202", + "@id": "_:b11530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24367", + "@id": "_:b18227", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8209", + "@id": "_:b11535", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "result": { - "@id": "_:b26360", + "@id": "_:b5572", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8205", + "@id": "_:b11532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8094", + "@id": "_:b18229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8206", + "@id": "_:b11534", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20423", + "@id": "_:b7083", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8203", + "@id": "_:b11527", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", + "mode": "earl:automatic", "result": { - "@id": "_:b25132", + "@id": "_:b18224", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8201", + "@id": "_:b11528", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "result": { - "@id": "_:b13902", + "@id": "_:b18225", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8208", + "@id": "_:b11529", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", "result": { - "@id": "_:b26359", + "@id": "_:b18226", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js12-out.nq", + "title": "Transform JSON literal with value canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js12-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal with value canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12071", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "<0010-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" + "@id": "_:b5218", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0010-in.json", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0010-out.jsonld", - "title": "load JSON document with link", - "rdfs:comment": "If a context is specified in a link header, it is used for JSON.", "assertions": [ { - "@id": "_:b12079", + "@id": "_:b5219", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "result": { - "@id": "_:b21368", + "@id": "_:b12097", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12069", + "@id": "_:b5221", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12070", + "@id": "_:b21443", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12075", + "@id": "_:b5223", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22699", + "@id": "_:b2205", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12074", + "@id": "_:b5224", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26347", + "@id": "_:b24130", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12077", + "@id": "_:b5227", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "result": { - "@id": "_:b26697", + "@id": "_:b22152", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12078", + "@id": "_:b5216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25569", + "@id": "_:b5217", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12080", + "@id": "_:b5225", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25102", + "@id": "_:b26718", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12072", + "@id": "_:b5220", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", + "mode": "earl:automatic", "result": { - "@id": "_:b21614", + "@id": "_:b17875", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12076", + "@id": "_:b5222", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "result": { - "@id": "_:b15372", + "@id": "_:b22806", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12073", + "@id": "_:b5226", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", "result": { - "@id": "_:b24721", + "@id": "_:b4725", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js13-out.nq", + "title": "Transform JSON literal with wierd canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js13-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal with wierd canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12563", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "<0011-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"", - "https://w3c.github.io/json-ld-api/tests/vocab#contentType": { - "@value": "application/jldTest+json", + "@id": "_:b17102", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0011-in.jldt", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0011-out.jsonld", - "title": "load JSON document with extension-type with link", - "rdfs:comment": "If a context is specified in a link header, it is used for a JSON extension type.", "assertions": [ { - "@id": "_:b12571", + "@id": "_:b17105", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "result": { - "@id": "_:b25075", + "@id": "_:b7979", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12565", + "@id": "_:b17103", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21403", + "@id": "_:b4637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12562", + "@id": "_:b17108", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8197", + "@id": "_:b26953", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12569", + "@id": "_:b17109", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18008", + "@id": "_:b27019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12572", + "@id": "_:b17111", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "result": { - "@id": "_:b22747", + "@id": "_:b22225", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12566", + "@id": "_:b17106", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25072", + "@id": "_:b25945", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12568", + "@id": "_:b17112", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25074", + "@id": "_:b22993", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12570", + "@id": "_:b17110", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", + "mode": "earl:automatic", "result": { - "@id": "_:b24382", + "@id": "_:b18377", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12567", + "@id": "_:b17107", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "result": { - "@id": "_:b25073", + "@id": "_:b26280", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12564", + "@id": "_:b17104", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", "result": { - "@id": "_:b22801", + "@id": "_:b22344", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js14-out.nq", + "title": "Transform JSON literal without expanding contents", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js14-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal does not expand terms inside json." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2841", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": [ - "<0012-context1.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"", - "<0012-context2.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" - ] + "@id": "_:b20231", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0012-in.json", - "mf:result": "multiple context link headers", - "title": "Multiple context link headers", - "rdfs:comment": "Loading a file when multiple link headers are returned is an error", "assertions": [ { - "@id": "_:b2845", + "@id": "_:b20236", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "result": { - "@id": "_:b5699", + "@id": "_:b20246", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2843", + "@id": "_:b20233", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5697", + "@id": "_:b20243", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2839", + "@id": "_:b20232", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2840", + "@id": "_:b20242", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2844", + "@id": "_:b20240", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5698", + "@id": "_:b20249", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2846", + "@id": "_:b20237", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "result": { - "@id": "_:b2240", + "@id": "_:b10855", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2848", + "@id": "_:b20238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5701", + "@id": "_:b20247", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2847", + "@id": "_:b20239", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5700", + "@id": "_:b20248", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2849", + "@id": "_:b20234", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", + "mode": "earl:automatic", "result": { - "@id": "_:b5289", + "@id": "_:b20244", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2850", + "@id": "_:b20235", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "result": { - "@id": "_:b5702", + "@id": "_:b20245", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2842", + "@id": "_:b20241", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", "result": { - "@id": "_:b5696", + "@id": "_:b20250", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js15-out.nq", + "title": "Transform JSON literal aleady in expanded form", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js15-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal in expanded form." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7716", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "<0013-context.html>; rel=\"http://www.w3.org/ns/json-ld#context\"" + "@id": "_:b10732", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0013-in.json", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0013-out.jsonld", - "title": "load JSON document with link to HTML document", - "rdfs:comment": "If a context is specified in a link header, it is used for JSON, extracting from HTML.", "assertions": [ { - "@id": "_:b7723", + "@id": "_:b10739", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", "result": { - "@id": "_:b18019", + "@id": "_:b26646", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7718", + "@id": "_:b10740", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22740", + "@id": "_:b16992", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7719", + "@id": "_:b10735", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", + "mode": "earl:automatic", "result": { - "@id": "_:b25947", + "@id": "_:b23519", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7725", + "@id": "_:b10734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13396", + "@id": "_:b20827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7714", + "@id": "_:b10737", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", "result": { - "@id": "_:b7715", + "@id": "_:b25496", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7721", + "@id": "_:b10736", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25763", + "@id": "_:b26123", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7722", + "@id": "_:b10730", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25948", + "@id": "_:b10731", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7724", + "@id": "_:b10738", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", + "mode": "earl:automatic", "result": { - "@id": "_:b25949", + "@id": "_:b24098", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7717", + "@id": "_:b10733", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", "result": { - "@id": "_:b11242", + "@id": "_:b19150", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7720", + "@id": "_:b10741", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", "result": { - "@id": "_:b20292", + "@id": "_:b20601", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js16-out.nq", + "title": "Transform JSON literal aleady in expanded form with aliased keys", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js16-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal in expanded form with aliased keys in value object." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8989", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/ld+json\"" + "@id": "_:b3374", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la01-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la01-out.jsonld", - "title": "Redirects if type is text/html", - "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate.", "assertions": [ { - "@id": "_:b15869", + "@id": "_:b3376", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "result": { - "@id": "_:b24918", + "@id": "_:b8008", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15874", + "@id": "_:b3378", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22307", + "@id": "_:b8010", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15871", + "@id": "_:b3379", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11834", + "@id": "_:b8011", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15875", + "@id": "_:b3375", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15226", + "@id": "_:b8007", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15873", + "@id": "_:b3380", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "result": { - "@id": "_:b26601", + "@id": "_:b8012", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15872", + "@id": "_:b3372", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15195", + "@id": "_:b3373", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15870", + "@id": "_:b3377", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26053", + "@id": "_:b8009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15867", + "@id": "_:b3382", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", + "mode": "earl:automatic", "result": { - "@id": "_:b17140", + "@id": "_:b8014", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15865", + "@id": "_:b3383", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "result": { - "@id": "_:b15866", + "@id": "_:b8015", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15868", + "@id": "_:b3381", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", "result": { - "@id": "_:b20599", + "@id": "_:b8013", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js17-out.nq", + "title": "Transform JSON literal (string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js17-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (string)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17059", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/ld+json\"", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b8997", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la02-out.jsonld", - "title": "Does not redirect if type is application/ld+json", - "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate.", "assertions": [ { - "@id": "_:b17062", + "@id": "_:b9004", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "result": { - "@id": "_:b18543", + "@id": "_:b24334", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17063", + "@id": "_:b8995", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25879", + "@id": "_:b8996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17057", + "@id": "_:b8998", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17058", + "@id": "_:b22452", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17060", + "@id": "_:b9000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22026", + "@id": "_:b24331", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17064", + "@id": "_:b9001", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "result": { - "@id": "_:b24074", + "@id": "_:b23407", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17061", + "@id": "_:b9003", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7318", + "@id": "_:b24333", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17066", + "@id": "_:b9006", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21031", + "@id": "_:b9019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17065", + "@id": "_:b9002", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", + "mode": "earl:automatic", "result": { - "@id": "_:b24797", + "@id": "_:b24332", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17068", + "@id": "_:b8999", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "result": { - "@id": "_:b25880", + "@id": "_:b22644", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17067", + "@id": "_:b9005", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", "result": { - "@id": "_:b15164", + "@id": "_:b24335", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js18-out.nq", + "title": "Transform JSON literal (null)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js18-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (null)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9387", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/json\"" + "@id": "_:b5629", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la03-in.json", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la03-out.jsonld", - "title": "Does not redirect if link type is not application/ld+json", - "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate.", "assertions": [ { - "@id": "_:b9391", + "@id": "_:b7510", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "result": { - "@id": "_:b9401", + "@id": "_:b4374", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9395", + "@id": "_:b7511", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9405", + "@id": "_:b20192", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9392", + "@id": "_:b7512", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9402", + "@id": "_:b21384", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9389", + "@id": "_:b7514", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9399", + "@id": "_:b22731", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9397", + "@id": "_:b7515", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "result": { - "@id": "_:b9407", + "@id": "_:b22732", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9388", + "@id": "_:b7508", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9398", + "@id": "_:b20355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9396", + "@id": "_:b7505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9406", + "@id": "_:b7506", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9390", + "@id": "_:b7509", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", + "mode": "earl:automatic", "result": { - "@id": "_:b9400", + "@id": "_:b22730", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9394", + "@id": "_:b7507", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "result": { - "@id": "_:b9404", + "@id": "_:b14848", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9393", + "@id": "_:b7513", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", "result": { - "@id": "_:b9403", + "@id": "_:b22311", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js19-out.nq", + "title": "Transform JSON literal with aliased @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js19-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal with aliased @type." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20024", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/ld+json\"" + "@id": "_:b5924", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la04-in.json", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la04-out.jsonld", - "title": "Does not redirect if type is application/json", - "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate.", "assertions": [ { - "@id": "_:b20032", + "@id": "_:b14779", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "result": { - "@id": "_:b19050", + "@id": "_:b26420", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20030", + "@id": "_:b14776", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25429", + "@id": "_:b24081", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20029", + "@id": "_:b14780", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25428", + "@id": "_:b26156", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20027", + "@id": "_:b14775", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24964", + "@id": "_:b25541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20025", + "@id": "_:b14773", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "result": { - "@id": "_:b20832", + "@id": "_:b17950", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20031", + "@id": "_:b14777", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8572", + "@id": "_:b24460", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20022", + "@id": "_:b14771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20023", + "@id": "_:b14772", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20033", + "@id": "_:b14778", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", + "mode": "earl:automatic", "result": { - "@id": "_:b25430", + "@id": "_:b26439", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20028", + "@id": "_:b14774", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "result": { - "@id": "_:b25427", + "@id": "_:b19561", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20026", + "@id": "_:b14781", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", "result": { - "@id": "_:b24414", + "@id": "_:b25412", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js20-out.nq", + "title": "Transform JSON literal with aliased @value", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js20-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal with aliased @value." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1550", - "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/ld+json\"", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b1046", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la05-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la05-out.jsonld", - "title": "Base is that of the alternate URL", - "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate.", "assertions": [ { - "@id": "_:b1553", + "@id": "_:b1055", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "result": { - "@id": "_:b21033", + "@id": "_:b24422", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1552", + "@id": "_:b1050", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20848", + "@id": "_:b19288", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1557", + "@id": "_:b1047", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21036", + "@id": "_:b6197", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1554", + "@id": "_:b1054", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14840", + "@id": "_:b19553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1551", + "@id": "_:b1044", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "result": { - "@id": "_:b17518", + "@id": "_:b1045", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1555", + "@id": "_:b1048", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21034", + "@id": "_:b20212", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1559", + "@id": "_:b1053", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21038", + "@id": "_:b17246", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1548", + "@id": "_:b1049", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", + "mode": "earl:automatic", "result": { - "@id": "_:b1549", + "@id": "_:b22805", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1556", + "@id": "_:b1051", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "result": { - "@id": "_:b21035", + "@id": "_:b24421", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1558", + "@id": "_:b1052", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", "result": { - "@id": "_:b21037", + "@id": "_:b21633", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - } - ], - "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", - "title": "Remote document", - "rdfs:comment": "These tests implement the requirements for JSON-LD [Remote Document and Context Retrieval](https://www.w3.org/TR/json-ld11-api/#remote-document-and-context-retrieval)." - }, - { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest", - "@type": [ - "mf:Manifest", - "Report" - ], - "entries": [ + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js21-out.nq", + "title": "Transform JSON literal with @context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js21-in.jsonld", + "rdfs:comment": "Tests transforming JSON literal with a @context." + }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0001-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0001-out.jsonld", - "title": "Object Lists", - "rdfs:comment": "Tests generation using different types of objects.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6489", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b978", + "@id": "_:b6490", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "result": { - "@id": "_:b13963", + "@id": "_:b13554", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b974", + "@id": "_:b6491", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14453", + "@id": "_:b13555", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b971", + "@id": "_:b6492", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b972", + "@id": "_:b13556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b982", + "@id": "_:b6498", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25490", + "@id": "_:b13561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b979", + "@id": "_:b6497", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "result": { - "@id": "_:b16643", + "@id": "_:b13560", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b977", + "@id": "_:b6493", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24334", + "@id": "_:b13557", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b980", + "@id": "_:b6496", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25488", + "@id": "_:b8735", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b981", + "@id": "_:b6495", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", + "mode": "earl:automatic", "result": { - "@id": "_:b25489", + "@id": "_:b13559", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b976", + "@id": "_:b6494", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "result": { - "@id": "_:b21896", + "@id": "_:b13558", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b975", + "@id": "_:b6487", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", "result": { - "@id": "_:b18089", + "@id": "_:b6488", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js22-out.nq", + "title": "Transform JSON literal (null) aleady in expanded form.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js22-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (null)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0002-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0002-out.jsonld", - "title": "Native Types", - "rdfs:comment": "Do not use native datatypes for xsd:boolean, xsd:integer, and xsd:double by default.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4312", + "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b3570", + "@id": "_:b4313", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "result": { - "@id": "_:b22515", + "@id": "_:b11100", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3566", + "@id": "_:b4318", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21147", + "@id": "_:b24533", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3560", + "@id": "_:b4310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3561", + "@id": "_:b4311", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3564", + "@id": "_:b4321", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22673", + "@id": "_:b24536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3562", + "@id": "_:b4319", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "result": { - "@id": "_:b15864", + "@id": "_:b24534", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b3567", + "@id": "_:b4315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26874", + "@id": "_:b23365", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3565", + "@id": "_:b4316", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15178", + "@id": "_:b24531", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3568", + "@id": "_:b4317", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", + "mode": "earl:automatic", "result": { - "@id": "_:b26046", + "@id": "_:b24532", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3569", + "@id": "_:b4314", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "result": { - "@id": "_:b23955", + "@id": "_:b13563", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b3563", + "@id": "_:b4320", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", "result": { - "@id": "_:b20106", + "@id": "_:b24535", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js23-out.nq", + "title": "Transform JSON literal (empty array).", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js23-in.jsonld", + "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (empty array)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0003-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0003-out.jsonld", - "title": "BNodes and references", - "rdfs:comment": "BNode name generation and references between resources.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b18146", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6495", + "@id": "_:b18150", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "result": { - "@id": "_:b24742", + "@id": "_:b24762", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6493", + "@id": "_:b18148", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22821", + "@id": "_:b6333", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6498", + "@id": "_:b18152", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23087", + "@id": "_:b26873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6494", + "@id": "_:b18149", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17710", + "@id": "_:b23950", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6499", + "@id": "_:b18156", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "result": { - "@id": "_:b24744", + "@id": "_:b7949", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b6496", + "@id": "_:b18147", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24743", + "@id": "_:b22684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6491", + "@id": "_:b18155", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8647", + "@id": "_:b23018", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6489", + "@id": "_:b18154", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", + "mode": "earl:automatic", "result": { - "@id": "_:b6490", + "@id": "_:b25667", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6497", + "@id": "_:b18151", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "result": { - "@id": "_:b8990", + "@id": "_:b26399", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b6492", + "@id": "_:b18153", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", "result": { - "@id": "_:b3746", + "@id": "_:b26819", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li01-out.nq", + "title": "@list containing @list", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li01-in.jsonld", + "rdfs:comment": "List of lists." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0004-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0004-out.jsonld", - "title": "Lists", - "rdfs:comment": "Multiple lists with different types of element.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b19988", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b3972", + "@id": "_:b19994", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "result": { - "@id": "_:b8391", + "@id": "_:b21806", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3973", + "@id": "_:b19992", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20042", + "@id": "_:b22855", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3974", + "@id": "_:b19991", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20043", + "@id": "_:b22854", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3977", + "@id": "_:b19995", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20046", + "@id": "_:b22857", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3976", + "@id": "_:b19993", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "result": { - "@id": "_:b20045", + "@id": "_:b22856", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b3979", + "@id": "_:b19990", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20047", + "@id": "_:b22853", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3975", + "@id": "_:b19986", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20044", + "@id": "_:b19987", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3978", + "@id": "_:b19989", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", + "mode": "earl:automatic", "result": { - "@id": "_:b19695", + "@id": "_:b17178", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3970", + "@id": "_:b19996", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "result": { - "@id": "_:b3971", + "@id": "_:b22858", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b3980", + "@id": "_:b19997", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", "result": { - "@id": "_:b9559", + "@id": "_:b22859", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li02-out.nq", + "title": "@list containing empty @list", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li02-in.jsonld", + "rdfs:comment": "List of lists." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0005-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0005-out.jsonld", - "title": "Document with list", - "rdfs:comment": "Uses a named graph containing a list.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8287", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b18168", + "@id": "_:b8296", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "result": { - "@id": "_:b23290", + "@id": "_:b16692", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18172", + "@id": "_:b8293", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23293", + "@id": "_:b20804", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18171", + "@id": "_:b8295", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1709", + "@id": "_:b20806", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18166", + "@id": "_:b8289", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10533", + "@id": "_:b13824", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18167", + "@id": "_:b8285", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "result": { - "@id": "_:b15045", + "@id": "_:b8286", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b18169", + "@id": "_:b8290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23291", + "@id": "_:b15934", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18163", + "@id": "_:b8292", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18164", + "@id": "_:b20803", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18170", + "@id": "_:b8288", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", + "mode": "earl:automatic", "result": { - "@id": "_:b23292", + "@id": "_:b8574", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18165", + "@id": "_:b8294", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "result": { - "@id": "_:b23289", + "@id": "_:b20805", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b18173", + "@id": "_:b8291", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", "result": { - "@id": "_:b23294", + "@id": "_:b20802", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li03-out.nq", + "title": "@list containing @list (with coercion)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li03-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0006-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0006-out.jsonld", - "title": "Two graphs having same subject but different values", - "rdfs:comment": "Ensure that properties and list elements aren't confused between graphs.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14955", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b16766", + "@id": "_:b14961", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "result": { - "@id": "_:b18897", + "@id": "_:b10562", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16767", + "@id": "_:b14959", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18898", + "@id": "_:b19638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16762", + "@id": "_:b14960", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18894", + "@id": "_:b19639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16764", + "@id": "_:b14962", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16098", + "@id": "_:b19640", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16769", + "@id": "_:b14957", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "result": { - "@id": "_:b18900", + "@id": "_:b19636", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b16761", + "@id": "_:b14956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18893", + "@id": "_:b19635", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16763", + "@id": "_:b14964", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18895", + "@id": "_:b19642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16765", + "@id": "_:b14953", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", + "mode": "earl:automatic", "result": { - "@id": "_:b18896", + "@id": "_:b14954", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16768", + "@id": "_:b14963", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "result": { - "@id": "_:b18899", + "@id": "_:b19641", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b16760", + "@id": "_:b14958", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", "result": { - "@id": "_:b12867", + "@id": "_:b19637", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li04-out.nq", + "title": "@list containing empty @list (with coercion)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li04-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0007-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0007-out.jsonld", - "title": "Graph with multiple named graphs", - "rdfs:comment": "Testing @graph recursion.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4428", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2747", + "@id": "_:b4434", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "result": { - "@id": "_:b13179", + "@id": "_:b10179", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2743", + "@id": "_:b4433", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13176", + "@id": "_:b10178", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2740", + "@id": "_:b4432", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2741", + "@id": "_:b10177", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2742", + "@id": "_:b4436", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13175", + "@id": "_:b10181", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2749", + "@id": "_:b4429", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "result": { - "@id": "_:b12618", + "@id": "_:b10174", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b2745", + "@id": "_:b4430", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13178", + "@id": "_:b10175", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2744", + "@id": "_:b4437", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13177", + "@id": "_:b10182", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2748", + "@id": "_:b4431", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", + "mode": "earl:automatic", "result": { - "@id": "_:b13180", + "@id": "_:b10176", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2746", + "@id": "_:b4426", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "result": { - "@id": "_:b8576", + "@id": "_:b4427", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b2750", + "@id": "_:b4435", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", "result": { - "@id": "_:b10730", + "@id": "_:b10180", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li05-out.nq", + "title": "coerced @list containing an array", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li05-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0009-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0009-out.jsonld", - "title": "List conversion with IRI nodes", - "rdfs:comment": "Preserve IRI list nodes (i.e., not blank nodes) when converting to @list", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1489", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7632", + "@id": "_:b1498", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "result": { - "@id": "_:b12687", + "@id": "_:b24734", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7634", + "@id": "_:b1493", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25147", + "@id": "_:b22139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7636", + "@id": "_:b1496", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22990", + "@id": "_:b24733", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7640", + "@id": "_:b1497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25783", + "@id": "_:b15788", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7635", + "@id": "_:b1492", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "result": { - "@id": "_:b25013", + "@id": "_:b18615", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b7630", + "@id": "_:b1491", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7631", + "@id": "_:b16022", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7639", + "@id": "_:b1487", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26905", + "@id": "_:b1488", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7638", + "@id": "_:b1494", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", + "mode": "earl:automatic", "result": { - "@id": "_:b26217", + "@id": "_:b14100", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7637", + "@id": "_:b1490", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "result": { - "@id": "_:b17542", + "@id": "_:b11508", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b7633", + "@id": "_:b1495", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", "result": { - "@id": "_:b13464", + "@id": "_:b15598", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li06-out.nq", + "title": "coerced @list containing an empty array", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li06-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0010-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0010-out.jsonld", - "title": "List pattern without rdf:nil", - "rdfs:comment": "Do not convert lists that are not terminated by rdf:nil to @list.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b17018", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11908", + "@id": "_:b17021", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "result": { - "@id": "_:b14778", + "@id": "_:b22540", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11910", + "@id": "_:b17026", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14780", + "@id": "_:b22544", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11902", + "@id": "_:b17020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14772", + "@id": "_:b21606", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11904", + "@id": "_:b17025", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14774", + "@id": "_:b22543", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11906", + "@id": "_:b17016", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "result": { - "@id": "_:b14776", + "@id": "_:b17017", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b11903", + "@id": "_:b17023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14773", + "@id": "_:b22083", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11900", + "@id": "_:b17022", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11901", + "@id": "_:b22541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11905", + "@id": "_:b17024", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", + "mode": "earl:automatic", "result": { - "@id": "_:b14775", + "@id": "_:b22542", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11907", + "@id": "_:b17019", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "result": { - "@id": "_:b14777", + "@id": "_:b18589", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b11909", + "@id": "_:b17027", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", "result": { - "@id": "_:b14779", + "@id": "_:b22545", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li07-out.nq", + "title": "coerced @list containing deep arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li07-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0011-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0011-out.jsonld", - "title": "List pattern with extra properties", - "rdfs:comment": "If additional properties are associated to a list node, the list is only partially converted to @list.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5870", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7345", + "@id": "_:b14401", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "result": { - "@id": "_:b18536", + "@id": "_:b23911", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7342", + "@id": "_:b14395", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18533", + "@id": "_:b17297", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7340", + "@id": "_:b14400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18531", + "@id": "_:b23910", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7343", + "@id": "_:b14392", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18534", + "@id": "_:b14393", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7336", + "@id": "_:b14397", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "result": { - "@id": "_:b7337", + "@id": "_:b23907", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b7339", + "@id": "_:b14399", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16577", + "@id": "_:b23909", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7346", + "@id": "_:b14398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18537", + "@id": "_:b23908", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7341", + "@id": "_:b14394", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", + "mode": "earl:automatic", "result": { - "@id": "_:b18532", + "@id": "_:b13269", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7344", + "@id": "_:b14402", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "result": { - "@id": "_:b18535", + "@id": "_:b23912", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b7338", + "@id": "_:b14396", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", "result": { - "@id": "_:b18046", + "@id": "_:b23906", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li08-out.nq", + "title": "coerced @list containing deep empty arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li08-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0012-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0012-out.jsonld", - "title": "List pattern with cycles", - "rdfs:comment": "Detect lists containing cycles and do not convert them to @list.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6726", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b19943", + "@id": "_:b6728", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "result": { - "@id": "_:b23891", + "@id": "_:b16911", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19944", + "@id": "_:b6733", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19629", + "@id": "_:b26760", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19945", + "@id": "_:b6724", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26216", + "@id": "_:b6725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19939", + "@id": "_:b6731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19940", + "@id": "_:b22652", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19949", + "@id": "_:b6732", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "result": { - "@id": "_:b24636", + "@id": "_:b23395", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b19946", + "@id": "_:b6727", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26678", + "@id": "_:b10756", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19948", + "@id": "_:b6729", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21563", + "@id": "_:b19198", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19941", + "@id": "_:b6730", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", + "mode": "earl:automatic", "result": { - "@id": "_:b20168", + "@id": "_:b20866", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19942", + "@id": "_:b6735", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "result": { - "@id": "_:b16128", + "@id": "_:b11911", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b19947", + "@id": "_:b6734", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", "result": { - "@id": "_:b26679", + "@id": "_:b8482", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li09-out.nq", + "title": "coerced @list containing multiple lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li09-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0013-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0013-out.jsonld", - "title": "List pattern with multiple values of rdf:first", - "rdfs:comment": "Do not convert list nodes to @list if nodes contain more than one value for rdf:first.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6086", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12426", + "@id": "_:b6091", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", "result": { - "@id": "_:b11698", + "@id": "_:b6101", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12425", + "@id": "_:b6090", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20704", + "@id": "_:b6100", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12424", + "@id": "_:b6088", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22841", + "@id": "_:b6098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12428", + "@id": "_:b6087", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23037", + "@id": "_:b6097", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12423", + "@id": "_:b6096", "@type": "Assertion", - "mode": "earl:automatic", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", + "result": { + "@id": "_:b6106", + "@type": "TestResult", + "outcome": "earl:untested" + }, "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "assertedBy": null + }, + { + "@id": "_:b6093", + "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", + "mode": "earl:automatic", "result": { - "@id": "_:b21481", + "@id": "_:b6103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12420", + "@id": "_:b6095", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12421", + "@id": "_:b6105", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12430", + "@id": "_:b6094", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26400", + "@id": "_:b6104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12429", + "@id": "_:b6092", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", "result": { - "@id": "_:b24944", + "@id": "_:b6102", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12427", + "@id": "_:b6089", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", "result": { - "@id": "_:b12451", - "@type": "TestResult", - "outcome": "earl:failed" - }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013" - }, - { - "@id": "_:b12422", - "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "result": { - "@id": "_:b19224", + "@id": "_:b6099", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li10-out.nq", + "title": "coerced @list containing mixed list values", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li10-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0014-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0014-out.jsonld", - "title": "List pattern with multiple values of rdf:rest", - "rdfs:comment": "Do not convert list nodes to @list if nodes contain more than one value for rdf:rest.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b15831", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7202", + "@id": "_:b15832", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "result": { - "@id": "_:b11354", + "@id": "_:b16694", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7199", + "@id": "_:b15835", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11352", + "@id": "_:b16697", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7197", + "@id": "_:b15840", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11351", + "@id": "_:b16701", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7194", + "@id": "_:b15838", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7195", + "@id": "_:b7023", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7204", + "@id": "_:b15837", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "result": { - "@id": "_:b11356", + "@id": "_:b16699", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b7203", + "@id": "_:b15839", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11355", + "@id": "_:b16700", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7200", + "@id": "_:b15836", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11353", + "@id": "_:b16698", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7201", + "@id": "_:b15841", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", + "mode": "earl:automatic", "result": { - "@id": "_:b9467", + "@id": "_:b12780", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7198", + "@id": "_:b15833", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "result": { - "@id": "_:b3296", + "@id": "_:b16695", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b7196", + "@id": "_:b15834", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", "result": { - "@id": "_:b11350", + "@id": "_:b16696", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m001-out.nq", + "title": "Adds @id to object not having an @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m001-in.jsonld", + "rdfs:comment": "Expansion using @container: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0015-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0015-out.jsonld", - "title": "List pattern with IRI rdf:rest", - "rdfs:comment": "Do not convert lists to @list if a list node's rdf:rest is an IRI.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7719", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10412", + "@id": "_:b7725", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "result": { - "@id": "_:b26998", + "@id": "_:b11497", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10410", + "@id": "_:b7723", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19236", + "@id": "_:b11495", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10407", + "@id": "_:b7727", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26222", + "@id": "_:b11499", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10413", + "@id": "_:b7722", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b27003", + "@id": "_:b11494", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10403", + "@id": "_:b7728", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "result": { - "@id": "_:b10404", + "@id": "_:b11500", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b10405", + "@id": "_:b7726", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24622", + "@id": "_:b11498", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10408", + "@id": "_:b7720", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26609", + "@id": "_:b11492", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10411", + "@id": "_:b7724", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", + "mode": "earl:automatic", "result": { - "@id": "_:b23398", + "@id": "_:b11496", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10406", + "@id": "_:b7721", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "result": { - "@id": "_:b25117", + "@id": "_:b11493", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b10409", + "@id": "_:b7729", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", "result": { - "@id": "_:b17142", + "@id": "_:b11501", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m002-out.nq", + "title": "Retains @id in object already having an @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m002-in.jsonld", + "rdfs:comment": "Expansion using @container: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0016-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0016-out.jsonld", - "title": "List pattern with type rdf:List", - "rdfs:comment": "List nodes may have a rdf:type rdf:List.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b521", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8514", + "@id": "_:b528", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "result": { - "@id": "_:b21464", + "@id": "_:b22310", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8516", + "@id": "_:b525", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22886", + "@id": "_:b25783", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8511", + "@id": "_:b527", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22790", + "@id": "_:b26925", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8513", + "@id": "_:b529", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14879", + "@id": "_:b27004", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8507", + "@id": "_:b526", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "result": { - "@id": "_:b8508", + "@id": "_:b26687", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b8515", + "@id": "_:b530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22121", + "@id": "_:b26919", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8510", + "@id": "_:b524", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21301", + "@id": "_:b830", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8509", + "@id": "_:b522", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", + "mode": "earl:automatic", "result": { - "@id": "_:b6954", + "@id": "_:b18824", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8517", + "@id": "_:b523", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "result": { - "@id": "_:b26156", + "@id": "_:b22356", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b8512", + "@id": "_:b531", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", "result": { - "@id": "_:b24611", + "@id": "_:b18542", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m003-out.nq", + "title": "Adds @type to object not having an @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m003-in.jsonld", + "rdfs:comment": "Expansion using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0017-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0017-out.jsonld", - "title": "Remove duplicate triples", - "rdfs:comment": "Equivalent triples are used only once", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5926", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b14525", + "@id": "_:b5935", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "result": { - "@id": "_:b22389", + "@id": "_:b24194", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14527", + "@id": "_:b5933", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24644", + "@id": "_:b24192", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14532", + "@id": "_:b5928", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26368", + "@id": "_:b17169", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14524", + "@id": "_:b5931", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16381", + "@id": "_:b8029", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14526", + "@id": "_:b5929", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "result": { - "@id": "_:b21486", + "@id": "_:b21255", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b14530", + "@id": "_:b5934", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14219", + "@id": "_:b24193", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14531", + "@id": "_:b5932", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20507", + "@id": "_:b24191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14528", + "@id": "_:b5930", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", + "mode": "earl:automatic", "result": { - "@id": "_:b25449", + "@id": "_:b24190", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14522", + "@id": "_:b5936", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "result": { - "@id": "_:b14523", + "@id": "_:b24195", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b14529", + "@id": "_:b5927", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", "result": { - "@id": "_:b6474", + "@id": "_:b10694", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m004-out.nq", + "title": "Prepends @type in object already having an @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m004-in.jsonld", + "rdfs:comment": "Expansion using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18501", - "https://w3c.github.io/json-ld-api/tests/vocab#useNativeTypes": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b13411", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example.org/" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0018-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0018-out.jsonld", - "title": "use native types flag set to true", - "rdfs:comment": "Literals with datatype xsd:boolean, xsd:integer, and xsd:double are serialized using native scalar values", "assertions": [ { - "@id": "_:b18510", + "@id": "_:b13421", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "result": { - "@id": "_:b20015", + "@id": "_:b26727", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18505", + "@id": "_:b13419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26091", + "@id": "_:b19259", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18509", + "@id": "_:b13418", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20719", + "@id": "_:b26725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18504", + "@id": "_:b13413", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23950", + "@id": "_:b11227", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18507", + "@id": "_:b13420", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "result": { - "@id": "_:b26696", + "@id": "_:b26726", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b18508", + "@id": "_:b13415", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26798", + "@id": "_:b21500", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18506", + "@id": "_:b13412", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14389", + "@id": "_:b18884", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18503", + "@id": "_:b13414", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", + "mode": "earl:automatic", "result": { - "@id": "_:b23627", + "@id": "_:b20683", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18502", + "@id": "_:b13416", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "result": { - "@id": "_:b19638", + "@id": "_:b22041", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b18499", + "@id": "_:b13417", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", "result": { - "@id": "_:b18500", + "@id": "_:b25824", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m005-out.nq", + "title": "Adds expanded @id to object", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m005-in.jsonld", + "rdfs:comment": "Expansion using @container: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4652", - "https://w3c.github.io/json-ld-api/tests/vocab#useRdfType": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b25077", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0019-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0019-out.jsonld", - "title": "use rdf:type flag set to false", - "rdfs:comment": "Setting useRdfType to true causes an rdf:type predicate to be treated like a normal property, not @type", "assertions": [ { - "@id": "_:b4660", + "@id": "_:b25080", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "result": { - "@id": "_:b4670", + "@id": "_:b19098", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4657", + "@id": "_:b25083", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4667", + "@id": "_:b23486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4661", + "@id": "_:b25081", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4671", + "@id": "_:b25396", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4662", + "@id": "_:b25084", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4672", + "@id": "_:b24007", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4654", + "@id": "_:b25085", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "result": { - "@id": "_:b4664", + "@id": "_:b17843", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b4656", + "@id": "_:b25078", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4666", + "@id": "_:b17614", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4658", + "@id": "_:b25079", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4668", + "@id": "_:b25395", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4655", + "@id": "_:b25082", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", + "mode": "earl:automatic", "result": { - "@id": "_:b4665", + "@id": "_:b25397", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4653", + "@id": "_:b25075", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "result": { - "@id": "_:b4663", + "@id": "_:b25076", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b4659", + "@id": "_:b25086", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", "result": { - "@id": "_:b4669", + "@id": "_:b25398", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m006-out.nq", + "title": "Adds vocabulary expanded @type to object", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m006-in.jsonld", + "rdfs:comment": "Expansion using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0020-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0020-out.jsonld", - "title": "list with node shared across graphs", - "rdfs:comment": "An otherwise conformant list with a node shared across different lists does not serialize using @list", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b15477", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12351", + "@id": "_:b15475", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "result": { - "@id": "_:b14711", + "@id": "_:b15476", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12355", + "@id": "_:b15478", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15378", + "@id": "_:b15723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12352", + "@id": "_:b15479", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15375", + "@id": "_:b18322", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12354", + "@id": "_:b15485", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15377", + "@id": "_:b18327", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12359", + "@id": "_:b15486", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "result": { - "@id": "_:b15381", + "@id": "_:b18328", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b12353", + "@id": "_:b15480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15376", + "@id": "_:b18323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12358", + "@id": "_:b15482", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1681", + "@id": "_:b2819", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12357", + "@id": "_:b15484", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", + "mode": "earl:automatic", "result": { - "@id": "_:b15380", + "@id": "_:b18326", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12349", + "@id": "_:b15481", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "result": { - "@id": "_:b12350", + "@id": "_:b18324", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b12356", + "@id": "_:b15483", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", "result": { - "@id": "_:b15379", + "@id": "_:b18325", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m007-out.nq", + "title": "Adds document expanded @type to object", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m007-in.jsonld", + "rdfs:comment": "Expansion using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0021-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0021-out.jsonld", - "title": "list with node shared across graphs (same triple in different graphs)", - "rdfs:comment": "If a list node is used in different graphs, it isn't removed and converted to @list", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6134", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11401", + "@id": "_:b6135", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "result": { - "@id": "_:b25298", + "@id": "_:b19942", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11404", + "@id": "_:b6139", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26891", + "@id": "_:b25943", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11396", + "@id": "_:b6142", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19219", + "@id": "_:b26233", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11399", + "@id": "_:b6138", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19628", + "@id": "_:b16350", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11402", + "@id": "_:b6137", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "result": { - "@id": "_:b25504", + "@id": "_:b26719", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b11398", + "@id": "_:b6132", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14308", + "@id": "_:b6133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11405", + "@id": "_:b6136", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17596", + "@id": "_:b20137", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11397", + "@id": "_:b6140", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", + "mode": "earl:automatic", "result": { - "@id": "_:b20860", + "@id": "_:b26738", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11403", + "@id": "_:b6141", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "result": { - "@id": "_:b22047", + "@id": "_:b4389", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b11400", + "@id": "_:b6143", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", "result": { - "@id": "_:b20017", + "@id": "_:b26793", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m008-out.nq", + "title": "When type is in a type map", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m008-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0022-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0022-out.jsonld", - "title": "list from duplicate triples", - "rdfs:comment": "Duplicate triples for a list node will not prevent @list from being properly generated", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5318", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12293", + "@id": "_:b5323", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "result": { - "@id": "_:b12294", + "@id": "_:b25527", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12295", + "@id": "_:b5326", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15007", + "@id": "_:b26553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12302", + "@id": "_:b5316", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19453", + "@id": "_:b5317", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12297", + "@id": "_:b5322", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19451", + "@id": "_:b19976", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12303", + "@id": "_:b5321", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "result": { - "@id": "_:b19454", + "@id": "_:b18516", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b12301", + "@id": "_:b5327", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10869", + "@id": "_:b26764", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12299", + "@id": "_:b5319", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3968", + "@id": "_:b7818", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12296", + "@id": "_:b5324", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", + "mode": "earl:automatic", "result": { - "@id": "_:b19043", + "@id": "_:b25741", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12298", + "@id": "_:b5325", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "result": { - "@id": "_:b11806", + "@id": "_:b8445", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b12300", + "@id": "_:b5320", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", "result": { - "@id": "_:b19452", + "@id": "_:b17393", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m009-out.nq", + "title": "language map with @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m009-in.jsonld", + "rdfs:comment": "index on @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0023-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0023-out.jsonld", - "title": "triple with RDF nil subject", - "rdfs:comment": "Test triple with RDF nil subject", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2931", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11588", + "@id": "_:b2936", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "result": { - "@id": "_:b21813", + "@id": "_:b24984", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11590", + "@id": "_:b2929", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24811", + "@id": "_:b2930", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11591", + "@id": "_:b2938", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26869", + "@id": "_:b22029", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11586", + "@id": "_:b2934", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15150", + "@id": "_:b24436", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11584", + "@id": "_:b2940", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "result": { - "@id": "_:b11585", + "@id": "_:b23026", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b11587", + "@id": "_:b2933", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20375", + "@id": "_:b21716", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11594", + "@id": "_:b2935", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13826", + "@id": "_:b23089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11592", + "@id": "_:b2932", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", + "mode": "earl:automatic", "result": { - "@id": "_:b22487", + "@id": "_:b10433", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11589", + "@id": "_:b2939", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "result": { - "@id": "_:b23923", + "@id": "_:b12499", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b11593", + "@id": "_:b2937", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", "result": { - "@id": "_:b8899", + "@id": "_:b20459", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m010-out.nq", + "title": "language map with alias of @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m010-in.jsonld", + "rdfs:comment": "index on @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0024-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0024-out.jsonld", - "title": "multiple languages for same subject+property+value", - "rdfs:comment": "Uniqness of triples should include the value language", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8213", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8538", + "@id": "_:b8218", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "result": { - "@id": "_:b12496", + "@id": "_:b14908", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8535", + "@id": "_:b8214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15313", + "@id": "_:b13032", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8543", + "@id": "_:b8215", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17506", + "@id": "_:b19039", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8542", + "@id": "_:b8211", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17505", + "@id": "_:b8212", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8533", + "@id": "_:b8222", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "result": { - "@id": "_:b8534", + "@id": "_:b24609", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b8539", + "@id": "_:b8217", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12756", + "@id": "_:b24607", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8540", + "@id": "_:b8216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5462", + "@id": "_:b19320", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8541", + "@id": "_:b8219", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", + "mode": "earl:automatic", "result": { - "@id": "_:b17504", + "@id": "_:b23142", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8536", + "@id": "_:b8220", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "result": { - "@id": "_:b17502", + "@id": "_:b24608", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b8537", + "@id": "_:b8221", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", "result": { - "@id": "_:b17503", + "@id": "_:b19508", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m011-out.nq", + "title": "id map with @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m011-in.jsonld", + "rdfs:comment": "index on @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0025-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0025-out.jsonld", - "title": "multiple types for same subject+property+value", - "rdfs:comment": "Uniqness of triples should include the value type", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10654", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b15641", + "@id": "_:b10662", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "result": { - "@id": "_:b23251", + "@id": "_:b22438", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15640", + "@id": "_:b10658", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23250", + "@id": "_:b25994", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15644", + "@id": "_:b10652", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23253", + "@id": "_:b10653", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15639", + "@id": "_:b10660", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18150", + "@id": "_:b16593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15643", + "@id": "_:b10661", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "result": { - "@id": "_:b23252", + "@id": "_:b23288", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b15642", + "@id": "_:b10659", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13765", + "@id": "_:b26438", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15637", + "@id": "_:b10655", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15638", + "@id": "_:b21601", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15645", + "@id": "_:b10657", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", + "mode": "earl:automatic", "result": { - "@id": "_:b23254", + "@id": "_:b24302", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15647", + "@id": "_:b10656", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "result": { - "@id": "_:b23256", + "@id": "_:b23539", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b15646", + "@id": "_:b10663", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", "result": { - "@id": "_:b23255", + "@id": "_:b26315", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m012-out.nq", + "title": "type map with alias of @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m012-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0026-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0026-out.jsonld", - "title": "triple with rdf:first property and rdf:nil value", - "rdfs:comment": "Check list generation with rdf:first property and rdf:nil value.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1135", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b13549", + "@id": "_:b1144", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "result": { - "@id": "_:b20972", + "@id": "_:b21873", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13544", + "@id": "_:b1141", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22413", + "@id": "_:b21870", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13543", + "@id": "_:b1142", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20359", + "@id": "_:b21871", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13548", + "@id": "_:b1143", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24165", + "@id": "_:b21872", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13542", + "@id": "_:b1136", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "result": { - "@id": "_:b17746", + "@id": "_:b18318", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b13547", + "@id": "_:b1137", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24510", + "@id": "_:b18203", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13550", + "@id": "_:b1138", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24511", + "@id": "_:b20723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13540", + "@id": "_:b1139", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", + "mode": "earl:automatic", "result": { - "@id": "_:b13541", + "@id": "_:b21868", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13545", + "@id": "_:b1133", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "result": { - "@id": "_:b24508", + "@id": "_:b1134", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b13546", + "@id": "_:b1140", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", "result": { - "@id": "_:b24509", + "@id": "_:b21869", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m013-out.nq", + "title": "graph index map with @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m013-in.jsonld", + "rdfs:comment": "index on @graph and @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2985", + "@id": "_:b7610", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di01-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di01-out.jsonld", - "title": "rdfDirection: null with i18n literal with direction and no language", - "rdfs:comment": "Does not parse i18n datatype without proper option.", "assertions": [ { - "@id": "_:b2987", + "@id": "_:b7613", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "result": { - "@id": "_:b10125", + "@id": "_:b8854", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2994", + "@id": "_:b7614", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10132", + "@id": "_:b8855", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2989", + "@id": "_:b7617", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10127", + "@id": "_:b8858", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2988", + "@id": "_:b7616", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10126", + "@id": "_:b8857", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2990", + "@id": "_:b7611", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "result": { - "@id": "_:b10128", + "@id": "_:b8852", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b2992", + "@id": "_:b7608", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10130", + "@id": "_:b7609", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2986", + "@id": "_:b7615", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10124", + "@id": "_:b8856", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2993", + "@id": "_:b7618", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", + "mode": "earl:automatic", "result": { - "@id": "_:b10131", + "@id": "_:b8859", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2991", + "@id": "_:b7612", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "result": { - "@id": "_:b10129", + "@id": "_:b8853", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b2983", + "@id": "_:b7619", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", "result": { - "@id": "_:b2984", + "@id": "_:b8860", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m014-out.nq", + "title": "graph index map with alias @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m014-in.jsonld", + "rdfs:comment": "index on @graph and @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b818", + "@id": "_:b4754", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di02-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di02-out.jsonld", - "title": "rdfDirection: null with i18n literal with direction and language", - "rdfs:comment": "Does not parse i18n datatype without proper option.", "assertions": [ { - "@id": "_:b828", + "@id": "_:b4762", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "result": { - "@id": "_:b1927", + "@id": "_:b16569", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b825", + "@id": "_:b4755", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1924", + "@id": "_:b11116", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b822", + "@id": "_:b4758", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1921", + "@id": "_:b16565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b827", + "@id": "_:b4759", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1926", + "@id": "_:b16566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b824", + "@id": "_:b4752", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "result": { - "@id": "_:b1923", + "@id": "_:b4753", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b823", + "@id": "_:b4756", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1922", + "@id": "_:b15280", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b820", + "@id": "_:b4757", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1919", + "@id": "_:b16564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b819", + "@id": "_:b4760", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", + "mode": "earl:automatic", "result": { - "@id": "_:b1918", + "@id": "_:b16567", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b826", + "@id": "_:b4763", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "result": { - "@id": "_:b1925", + "@id": "_:b16570", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b821", + "@id": "_:b4761", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", "result": { - "@id": "_:b1920", + "@id": "_:b16568", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m015-out.nq", + "title": "graph id index map with aliased @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m015-in.jsonld", + "rdfs:comment": "index on @graph and @id with @none" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14190", + "@id": "_:b4614", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di03-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di03-out.jsonld", - "title": "rdfDirection: null with compound literal with direction and no language", - "rdfs:comment": "Does not parse compound literal without proper option.", "assertions": [ { - "@id": "_:b14197", + "@id": "_:b4622", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "result": { - "@id": "_:b26692", + "@id": "_:b20426", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14193", + "@id": "_:b4620", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25478", + "@id": "_:b24115", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14199", + "@id": "_:b4617", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25098", + "@id": "_:b20662", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14196", + "@id": "_:b4623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26946", + "@id": "_:b23322", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14195", + "@id": "_:b4618", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "result": { - "@id": "_:b26478", + "@id": "_:b23641", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b14192", + "@id": "_:b4621", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24067", + "@id": "_:b26565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14198", + "@id": "_:b4616", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14256", + "@id": "_:b12380", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14191", + "@id": "_:b4612", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", + "mode": "earl:automatic", "result": { - "@id": "_:b14603", + "@id": "_:b4613", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14188", + "@id": "_:b4619", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "result": { - "@id": "_:b14189", + "@id": "_:b23490", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b14194", + "@id": "_:b4615", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", "result": { - "@id": "_:b23986", + "@id": "_:b8342", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m016-out.nq", + "title": "graph id index map with aliased @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m016-in.jsonld", + "rdfs:comment": "index on @graph and @id with @none" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16287", + "@id": "_:b19371", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di04-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di04-out.jsonld", - "title": "rdfDirection: null with compound literal with direction and language", - "rdfs:comment": "Does not parse compound literal without proper option.", "assertions": [ { - "@id": "_:b16296", + "@id": "_:b19372", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "result": { - "@id": "_:b24703", + "@id": "_:b20457", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16290", + "@id": "_:b19374", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26043", + "@id": "_:b25566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16288", + "@id": "_:b19379", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23558", + "@id": "_:b26292", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16285", + "@id": "_:b19376", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16286", + "@id": "_:b5419", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16295", + "@id": "_:b19375", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "result": { - "@id": "_:b19329", + "@id": "_:b20821", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b16291", + "@id": "_:b19377", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26095", + "@id": "_:b18932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16294", + "@id": "_:b19369", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19179", + "@id": "_:b19370", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16289", + "@id": "_:b19378", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", + "mode": "earl:automatic", "result": { - "@id": "_:b24310", + "@id": "_:b26291", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16293", + "@id": "_:b19380", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "result": { - "@id": "_:b26096", + "@id": "_:b20715", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b16292", + "@id": "_:b19373", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", "result": { - "@id": "_:b25955", + "@id": "_:b23884", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m017-out.nq", + "title": "string value of type map expands to node reference", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m017-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4576", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b9276", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di05-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di05-out.jsonld", - "title": "rdfDirection: i18n-datatype with i18n literal with direction and no language", - "rdfs:comment": "Parses i18n datatype with proper option.", "assertions": [ { - "@id": "_:b4579", + "@id": "_:b9284", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "result": { - "@id": "_:b22683", + "@id": "_:b23631", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4578", + "@id": "_:b9282", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12963", + "@id": "_:b24258", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4582", + "@id": "_:b9277", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25867", + "@id": "_:b19418", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4583", + "@id": "_:b9278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26013", + "@id": "_:b20169", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4581", + "@id": "_:b9283", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "result": { - "@id": "_:b22785", + "@id": "_:b9729", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b4580", + "@id": "_:b9281", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21638", + "@id": "_:b24257", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4585", + "@id": "_:b9274", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22365", + "@id": "_:b9275", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4577", + "@id": "_:b9279", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", + "mode": "earl:automatic", "result": { - "@id": "_:b7489", + "@id": "_:b22406", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4574", + "@id": "_:b9285", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "result": { - "@id": "_:b4575", + "@id": "_:b24259", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b4584", + "@id": "_:b9280", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", "result": { - "@id": "_:b26811", + "@id": "_:b24256", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m018-out.nq", + "title": "string value of type map expands to node reference with @type: @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m018-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12728", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b17689", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di06-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di06-out.jsonld", - "title": "rdfDirection: i18n-datatype with i18n literal with direction and language", - "rdfs:comment": "Parses i18n datatype with proper option.", "assertions": [ { - "@id": "_:b12736", + "@id": "_:b17698", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "result": { - "@id": "_:b9237", + "@id": "_:b17705", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12735", + "@id": "_:b17694", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18070", + "@id": "_:b9863", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12733", + "@id": "_:b17697", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23789", + "@id": "_:b17704", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12731", + "@id": "_:b17691", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23842", + "@id": "_:b1001", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12737", + "@id": "_:b17699", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "result": { - "@id": "_:b21569", + "@id": "_:b17706", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b12730", + "@id": "_:b17692", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23152", + "@id": "_:b17701", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12738", + "@id": "_:b17693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26296", + "@id": "_:b17702", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12732", + "@id": "_:b17695", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", + "mode": "earl:automatic", "result": { - "@id": "_:b21414", + "@id": "_:b9946", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12734", + "@id": "_:b17696", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "result": { - "@id": "_:b17624", + "@id": "_:b17703", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b12729", + "@id": "_:b17690", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", "result": { - "@id": "_:b21326", + "@id": "_:b17700", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m019-out.nq", + "title": "string value of type map expands to node reference with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m019-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4060", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b7407", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di07-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di07-out.jsonld", - "title": "rdfDirection: i18n-datatype with compound literal with direction and no language", - "rdfs:comment": "Does not parse compound literal without proper option.", "assertions": [ { - "@id": "_:b4062", + "@id": "_:b7415", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "result": { - "@id": "_:b11596", + "@id": "_:b19300", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4066", + "@id": "_:b7414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20258", + "@id": "_:b26746", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4061", + "@id": "_:b7413", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9175", + "@id": "_:b23617", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4069", + "@id": "_:b7411", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9204", + "@id": "_:b22429", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4067", + "@id": "_:b7405", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "result": { - "@id": "_:b6125", + "@id": "_:b7406", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b4065", + "@id": "_:b7410", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20257", + "@id": "_:b7353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4063", + "@id": "_:b7416", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11074", + "@id": "_:b24284", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4068", + "@id": "_:b7412", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", + "mode": "earl:automatic", "result": { - "@id": "_:b7098", + "@id": "_:b26509", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4058", + "@id": "_:b7408", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "result": { - "@id": "_:b4059", + "@id": "_:b17665", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b4064", + "@id": "_:b7409", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", "result": { - "@id": "_:b20256", + "@id": "_:b20170", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "string value of type map must not be a literal", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m020-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1082", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b18742", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di08-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di08-out.jsonld", - "title": "rdfDirection: i18n-datatype with compound literal with direction and language", - "rdfs:comment": "Does not parse compound literal without proper option.", "assertions": [ { - "@id": "_:b1091", + "@id": "_:b18749", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "result": { - "@id": "_:b17029", + "@id": "_:b24742", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1083", + "@id": "_:b18747", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15970", + "@id": "_:b18617", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1086", + "@id": "_:b18751", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21085", + "@id": "_:b24744", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1090", + "@id": "_:b18746", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16167", + "@id": "_:b24584", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1087", + "@id": "_:b18740", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "result": { - "@id": "_:b21086", + "@id": "_:b18741", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b1080", + "@id": "_:b18748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1081", + "@id": "_:b24741", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1088", + "@id": "_:b18745", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15793", + "@id": "_:b23269", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1089", + "@id": "_:b18750", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", + "mode": "earl:automatic", "result": { - "@id": "_:b8327", + "@id": "_:b24743", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1084", + "@id": "_:b18744", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "result": { - "@id": "_:b20083", + "@id": "_:b22828", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b1085", + "@id": "_:b18743", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", "result": { - "@id": "_:b21084", + "@id": "_:b18081", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n001-out.nq", + "title": "Expands input using @nest", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n001-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2364", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b17042", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di09-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di09-out.jsonld", - "title": "rdfDirection: compound-literal with i18n literal with direction and no language", - "rdfs:comment": "Does not parse i18n datatype without proper option.", "assertions": [ { - "@id": "_:b2362", + "@id": "_:b17047", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "result": { - "@id": "_:b2363", + "@id": "_:b24073", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2372", + "@id": "_:b17040", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26263", + "@id": "_:b17041", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2366", + "@id": "_:b17045", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11673", + "@id": "_:b23653", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2373", + "@id": "_:b17049", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10227", + "@id": "_:b2284", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2365", + "@id": "_:b17048", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "result": { - "@id": "_:b6537", + "@id": "_:b22061", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b2367", + "@id": "_:b17044", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22415", + "@id": "_:b20552", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2371", + "@id": "_:b17043", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25342", + "@id": "_:b18183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2369", + "@id": "_:b17046", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", + "mode": "earl:automatic", "result": { - "@id": "_:b13412", + "@id": "_:b26343", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2368", + "@id": "_:b17050", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "result": { - "@id": "_:b23603", + "@id": "_:b19892", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b2370", + "@id": "_:b17051", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", "result": { - "@id": "_:b26262", + "@id": "_:b26689", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n002-out.nq", + "title": "Expands input using aliased @nest", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n002-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5752", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b20588", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di10-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di10-out.jsonld", - "title": "rdfDirection: compound-literal with i18n literal with direction and language", - "rdfs:comment": "Does not parse i18n datatype without proper option.", "assertions": [ { - "@id": "_:b5754", + "@id": "_:b20592", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "result": { - "@id": "_:b14218", + "@id": "_:b25506", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5755", + "@id": "_:b20586", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12305", + "@id": "_:b20587", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5758", + "@id": "_:b20593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12022", + "@id": "_:b25507", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5762", + "@id": "_:b20597", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25963", + "@id": "_:b24049", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5756", + "@id": "_:b20596", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "result": { - "@id": "_:b12713", + "@id": "_:b25508", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b5759", + "@id": "_:b20591", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26888", + "@id": "_:b22931", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5761", + "@id": "_:b20595", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10832", + "@id": "_:b23429", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5760", + "@id": "_:b20589", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", + "mode": "earl:automatic", "result": { - "@id": "_:b26915", + "@id": "_:b22066", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5757", + "@id": "_:b20590", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "result": { - "@id": "_:b26243", + "@id": "_:b23883", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b5753", + "@id": "_:b20594", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", "result": { - "@id": "_:b12065", + "@id": "_:b25206", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n003-out.nq", + "title": "Appends nested values when property at base and nested", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n003-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9139", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b16388", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di11-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di11-out.jsonld", - "title": "rdfDirection: compound-literal with compound literal with direction and no language", - "rdfs:comment": "Parses compound literal with proper option.", "assertions": [ { - "@id": "_:b9140", + "@id": "_:b16756", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", "result": { - "@id": "_:b12141", + "@id": "_:b24440", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9143", + "@id": "_:b16750", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18303", + "@id": "_:b18136", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9141", + "@id": "_:b16754", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", + "mode": "earl:automatic", "result": { - "@id": "_:b15135", + "@id": "_:b25802", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9148", + "@id": "_:b16752", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", + "mode": "earl:automatic", + "result": { + "@id": "_:b22233", + "@type": "TestResult", + "outcome": "earl:passed" + }, "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" + }, + { + "@id": "_:b16749", + "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", "result": { - "@id": "_:b13077", + "@id": "_:b19157", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9144", + "@id": "_:b16751", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", "result": { - "@id": "_:b15686", + "@id": "_:b15505", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9137", + "@id": "_:b16757", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9138", + "@id": "_:b26475", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9146", + "@id": "_:b16755", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18305", + "@id": "_:b26474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9147", + "@id": "_:b16747", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", "result": { - "@id": "_:b15857", + "@id": "_:b16748", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", - "assertedBy": null - }, - { - "@id": "_:b9145", - "@type": "Assertion", - "mode": "earl:automatic", "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", - "result": { - "@id": "_:b18304", - "@type": "TestResult", - "outcome": "earl:failed" - }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11" + "assertedBy": null }, { - "@id": "_:b9142", + "@id": "_:b16753", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", "result": { - "@id": "_:b18302", + "@id": "_:b24376", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n004-out.nq", + "title": "Appends nested values from all @nest aliases in term order", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n004-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20619", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b7997", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di12-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di12-out.jsonld", - "title": "rdfDirection: compound-literal with compound literal with direction and language", - "rdfs:comment": "Parses compound literal with proper option.", "assertions": [ { - "@id": "_:b20626", + "@id": "_:b7998", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", "result": { - "@id": "_:b24607", + "@id": "_:b12766", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20621", + "@id": "_:b8005", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22986", + "@id": "_:b26984", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20620", + "@id": "_:b8004", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", + "mode": "earl:automatic", "result": { - "@id": "_:b22392", + "@id": "_:b26806", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20627", + "@id": "_:b8001", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", + "mode": "earl:automatic", + "result": { + "@id": "_:b23628", + "@type": "TestResult", + "outcome": "earl:passed" + }, "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" + }, + { + "@id": "_:b8006", + "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", "result": { - "@id": "_:b18824", + "@id": "_:b20290", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20617", + "@id": "_:b8003", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", "result": { - "@id": "_:b20618", + "@id": "_:b22817", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20622", + "@id": "_:b8000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23438", + "@id": "_:b21692", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20628", + "@id": "_:b7995", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22878", + "@id": "_:b7996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20623", + "@id": "_:b8002", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", "result": { - "@id": "_:b24112", + "@id": "_:b24503", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", - "assertedBy": null - }, - { - "@id": "_:b20624", - "@type": "Assertion", - "mode": "earl:automatic", "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", - "result": { - "@id": "_:b24732", - "@type": "TestResult", - "outcome": "earl:failed" - }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12" + "assertedBy": null }, { - "@id": "_:b20625", + "@id": "_:b7999", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", "result": { - "@id": "_:b25601", + "@id": "_:b18024", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n005-out.nq", + "title": "Nested nested containers", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n005-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20566", + "@id": "_:b9831", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js01-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js01-out.jsonld", - "title": "JSON literal (boolean true)", - "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean true).", "assertions": [ { - "@id": "_:b20571", + "@id": "_:b9839", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "result": { - "@id": "_:b23543", + "@id": "_:b8512", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20567", + "@id": "_:b9836", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22941", + "@id": "_:b24995", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20564", + "@id": "_:b9837", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20565", + "@id": "_:b24996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20568", + "@id": "_:b9838", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23541", + "@id": "_:b24179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20572", + "@id": "_:b9840", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "result": { - "@id": "_:b23544", + "@id": "_:b24997", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b20574", + "@id": "_:b9832", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23546", + "@id": "_:b13588", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20569", + "@id": "_:b9829", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23542", + "@id": "_:b9830", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20573", + "@id": "_:b9834", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", + "mode": "earl:automatic", "result": { - "@id": "_:b23545", + "@id": "_:b8176", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20570", + "@id": "_:b9835", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "result": { - "@id": "_:b4022", + "@id": "_:b24485", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b20575", + "@id": "_:b9833", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", "result": { - "@id": "_:b23547", + "@id": "_:b21096", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n006-out.nq", + "title": "Arrays of nested values", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n006-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4200", + "@id": "_:b8435", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js02-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js02-out.jsonld", - "title": "JSON literal (boolean false)", - "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean false).", "assertions": [ { - "@id": "_:b4209", + "@id": "_:b8443", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "result": { - "@id": "_:b5315", + "@id": "_:b22484", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4205", + "@id": "_:b8436", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8492", + "@id": "_:b11162", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4208", + "@id": "_:b8439", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24012", + "@id": "_:b24447", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4204", + "@id": "_:b8433", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26681", + "@id": "_:b8434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4203", + "@id": "_:b8442", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "result": { - "@id": "_:b25720", + "@id": "_:b15107", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b4206", + "@id": "_:b8438", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26865", + "@id": "_:b24096", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4201", + "@id": "_:b8437", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19954", + "@id": "_:b17196", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4198", + "@id": "_:b8441", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", + "mode": "earl:automatic", "result": { - "@id": "_:b4199", + "@id": "_:b21533", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4202", + "@id": "_:b8444", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "result": { - "@id": "_:b4305", + "@id": "_:b24640", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b4207", + "@id": "_:b8440", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", "result": { - "@id": "_:b20089", + "@id": "_:b15748", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n007-out.nq", + "title": "A nest of arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n007-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5929", + "@id": "_:b3341", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js03-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js03-out.jsonld", - "title": "JSON literal (double)", - "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (double).", "assertions": [ { - "@id": "_:b7040", + "@id": "_:b3347", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "result": { - "@id": "_:b18542", + "@id": "_:b21820", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7045", + "@id": "_:b3342", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24602", + "@id": "_:b17601", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7038", + "@id": "_:b3339", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7039", + "@id": "_:b3340", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7044", + "@id": "_:b3343", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26039", + "@id": "_:b18661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7043", + "@id": "_:b3349", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "result": { - "@id": "_:b25486", + "@id": "_:b21822", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b7041", + "@id": "_:b3345", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19858", + "@id": "_:b21818", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7047", + "@id": "_:b3350", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23331", + "@id": "_:b17764", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7048", + "@id": "_:b3346", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", + "mode": "earl:automatic", "result": { - "@id": "_:b15514", + "@id": "_:b21819", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7046", + "@id": "_:b3348", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "result": { - "@id": "_:b26040", + "@id": "_:b21821", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b7042", + "@id": "_:b3344", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", "result": { - "@id": "_:b25285", + "@id": "_:b15542", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n008-out.nq", + "title": "Multiple keys may mapping to @type when nesting", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n008-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8673", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js04-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js04-out.jsonld", - "title": "JSON literal (double-zero)", - "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (double-zero).", "assertions": [ { - "@id": "_:b8681", + "@id": "_:b17467", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "result": { - "@id": "_:b19110", + "@id": "_:b25490", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8674", + "@id": "_:b17464", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17145", + "@id": "_:b20624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8679", + "@id": "_:b17465", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19339", + "@id": "_:b19136", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8675", + "@id": "_:b17472", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19324", + "@id": "_:b26810", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8680", + "@id": "_:b17462", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "result": { - "@id": "_:b19340", + "@id": "_:b17463", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b8677", + "@id": "_:b17471", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19337", + "@id": "_:b18551", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8671", + "@id": "_:b17466", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8672", + "@id": "_:b15346", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8676", + "@id": "_:b17470", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", + "mode": "earl:automatic", "result": { - "@id": "_:b19336", + "@id": "_:b26160", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8682", + "@id": "_:b17469", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "result": { - "@id": "_:b19341", + "@id": "_:b19398", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b8678", + "@id": "_:b17468", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", "result": { - "@id": "_:b19338", + "@id": "_:b26809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_ascii_boundaries", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt01-in.jsonld", + "rdfs:comment": "literal_ascii_boundaries '\\x00\\x26\\x28...' from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b878", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js05-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js05-out.jsonld", - "title": "JSON literal (integer)", - "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (integer).", "assertions": [ { - "@id": "_:b2695", + "@id": "_:b8833", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "result": { - "@id": "_:b14306", + "@id": "_:b23878", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2692", + "@id": "_:b8823", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2693", + "@id": "_:b8824", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2694", + "@id": "_:b8831", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7598", + "@id": "_:b12932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2699", + "@id": "_:b8829", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25179", + "@id": "_:b26118", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2698", + "@id": "_:b8825", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "result": { - "@id": "_:b2956", + "@id": "_:b12280", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b2696", + "@id": "_:b8827", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17112", + "@id": "_:b25311", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2702", + "@id": "_:b8832", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19044", + "@id": "_:b22352", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2701", + "@id": "_:b8828", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", + "mode": "earl:automatic", "result": { - "@id": "_:b22059", + "@id": "_:b9996", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2697", + "@id": "_:b8826", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "result": { - "@id": "_:b26605", + "@id": "_:b18919", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b2700", + "@id": "_:b8830", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", "result": { - "@id": "_:b22041", + "@id": "_:b19941", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_UTF8_boundaries", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt02-in.jsonld", + "rdfs:comment": "literal_with_UTF8_boundaries '\\x80\\x7ff\\x800\\xfff...' from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9544", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js06-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js06-out.jsonld", - "title": "JSON literal (object)", - "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (object).", "assertions": [ { - "@id": "_:b9549", + "@id": "_:b16979", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "result": { - "@id": "_:b21567", + "@id": "_:b20148", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9550", + "@id": "_:b16981", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21395", + "@id": "_:b20478", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9552", + "@id": "_:b16982", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9750", + "@id": "_:b20479", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9553", + "@id": "_:b16980", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22427", + "@id": "_:b20477", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9546", + "@id": "_:b16977", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "result": { - "@id": "_:b20509", + "@id": "_:b20475", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b9542", + "@id": "_:b16984", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9543", + "@id": "_:b2822", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9545", + "@id": "_:b16983", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17743", + "@id": "_:b20480", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9547", + "@id": "_:b16985", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", + "mode": "earl:automatic", "result": { - "@id": "_:b22943", + "@id": "_:b20481", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9548", + "@id": "_:b16978", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "result": { - "@id": "_:b2889", + "@id": "_:b20476", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b9551", + "@id": "_:b16976", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", "result": { - "@id": "_:b15417", + "@id": "_:b16229", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_all_controls", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt03-in.jsonld", + "rdfs:comment": "literal_all_controls '\\x00\\x01\\x02\\x03\\x04...' from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12691", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js07-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js07-out.jsonld", - "title": "JSON literal (array)", - "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (array).", "assertions": [ { - "@id": "_:b12689", + "@id": "_:b20188", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "result": { - "@id": "_:b12690", + "@id": "_:b21000", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12697", + "@id": "_:b20185", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26717", + "@id": "_:b20997", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12692", + "@id": "_:b20186", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17847", + "@id": "_:b20998", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12700", + "@id": "_:b20180", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19639", + "@id": "_:b20181", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12696", + "@id": "_:b20187", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "result": { - "@id": "_:b26945", + "@id": "_:b20999", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b12695", + "@id": "_:b20183", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26212", + "@id": "_:b20995", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12698", + "@id": "_:b20190", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22418", + "@id": "_:b20598", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12693", + "@id": "_:b20182", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", + "mode": "earl:automatic", "result": { - "@id": "_:b19840", + "@id": "_:b20994", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12699", + "@id": "_:b20184", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "result": { - "@id": "_:b18018", + "@id": "_:b20996", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b12694", + "@id": "_:b20189", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", "result": { - "@id": "_:b15986", + "@id": "_:b21001", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_all_punctuation", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt04-in.jsonld", + "rdfs:comment": "literal_all_punctuation '!\"#$%&()...' from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2546", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js08-in.nq", - "mf:result": "invalid JSON literal", - "title": "Invalid JSON literal (bare-word)", - "rdfs:comment": "Processors must generate an error when deserializing an invalid JSON literal.", "assertions": [ { - "@id": "_:b2549", + "@id": "_:b11147", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "result": { - "@id": "_:b22156", + "@id": "_:b21628", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2555", + "@id": "_:b11146", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26538", + "@id": "_:b8430", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2547", + "@id": "_:b11144", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11873", + "@id": "_:b8779", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2551", + "@id": "_:b11149", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24462", + "@id": "_:b26862", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2552", + "@id": "_:b11152", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "result": { - "@id": "_:b22388", + "@id": "_:b23380", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b2554", + "@id": "_:b11148", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19124", + "@id": "_:b21167", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2550", + "@id": "_:b11150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21439", + "@id": "_:b9753", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2553", + "@id": "_:b11143", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", + "mode": "earl:automatic", "result": { - "@id": "_:b26592", + "@id": "_:b16683", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2548", + "@id": "_:b11145", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "result": { - "@id": "_:b20126", + "@id": "_:b20573", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b2556", + "@id": "_:b11151", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", "result": { - "@id": "_:b26140", + "@id": "_:b21140", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_squote", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt05-in.jsonld", + "rdfs:comment": "literal with squote \"x'y\" from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3325", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js09-in.nq", - "mf:result": "invalid JSON literal", - "title": "Invalid JSON literal (invalid structure)", - "rdfs:comment": "Processors must generate an error when deserializing an invalid JSON literal.", "assertions": [ { - "@id": "_:b3329", + "@id": "_:b4205", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", "result": { - "@id": "_:b14851", + "@id": "_:b20468", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3331", + "@id": "_:b4207", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25620", + "@id": "_:b23679", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3334", + "@id": "_:b4203", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25217", + "@id": "_:b4204", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3330", + "@id": "_:b4209", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17774", + "@id": "_:b25364", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3328", + "@id": "_:b4213", "@type": "Assertion", - "mode": "earl:automatic", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", + "result": { + "@id": "_:b23324", + "@type": "TestResult", + "outcome": "earl:untested" + }, "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "assertedBy": null + }, + { + "@id": "_:b4206", + "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", + "mode": "earl:automatic", "result": { - "@id": "_:b20067", + "@id": "_:b23150", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3333", + "@id": "_:b4208", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26652", + "@id": "_:b24775", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3326", + "@id": "_:b4212", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6635", + "@id": "_:b21469", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3323", + "@id": "_:b4210", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", "result": { - "@id": "_:b3324", + "@id": "_:b25365", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3332", - "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", - "result": { - "@id": "_:b25726", - "@type": "TestResult", - "outcome": "earl:passed" - }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09" - }, - { - "@id": "_:b3327", + "@id": "_:b4211", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", "result": { - "@id": "_:b15518", + "@id": "_:b10859", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_2_squotes", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt06-in.jsonld", + "rdfs:comment": "literal with 2 squotes \"x''y\" from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7728", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js10-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js10-out.jsonld", - "title": "JSON literal (string)", - "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (string).", "assertions": [ { - "@id": "_:b7726", + "@id": "_:b10831", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "result": { - "@id": "_:b7727", + "@id": "_:b19293", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7729", + "@id": "_:b10836", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17771", + "@id": "_:b22833", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7733", + "@id": "_:b10838", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23219", + "@id": "_:b22834", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7735", + "@id": "_:b10835", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23221", + "@id": "_:b22832", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7730", + "@id": "_:b10832", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "result": { - "@id": "_:b23217", + "@id": "_:b22829", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b7734", + "@id": "_:b10833", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23220", + "@id": "_:b22830", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7737", + "@id": "_:b10837", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23222", + "@id": "_:b9046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7731", + "@id": "_:b10839", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", + "mode": "earl:automatic", "result": { - "@id": "_:b23218", + "@id": "_:b17543", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7736", + "@id": "_:b10829", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "result": { - "@id": "_:b22333", + "@id": "_:b10830", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b7732", + "@id": "_:b10834", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", "result": { - "@id": "_:b22716", + "@id": "_:b22831", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_dquote", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt07-in.jsonld", + "rdfs:comment": "literal with dquote \"x\"y\" from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3439", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js11-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js11-out.jsonld", - "title": "JSON literal (null)", - "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (null).", "assertions": [ { - "@id": "_:b3444", + "@id": "_:b7218", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "result": { - "@id": "_:b24166", + "@id": "_:b10439", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3446", + "@id": "_:b7217", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24124", + "@id": "_:b10438", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3440", + "@id": "_:b7214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11689", + "@id": "_:b10435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3441", + "@id": "_:b7220", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13779", + "@id": "_:b10441", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3447", + "@id": "_:b7211", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "result": { - "@id": "_:b24168", + "@id": "_:b7212", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b3445", + "@id": "_:b7215", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24167", + "@id": "_:b10436", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3448", + "@id": "_:b7213", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13361", + "@id": "_:b10434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3442", + "@id": "_:b7216", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", + "mode": "earl:automatic", "result": { - "@id": "_:b17988", + "@id": "_:b10437", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3443", + "@id": "_:b7219", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "result": { - "@id": "_:b20479", + "@id": "_:b10440", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b3437", + "@id": "_:b7221", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", "result": { - "@id": "_:b3438", + "@id": "_:b10442", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_2_dquotes", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt08-in.jsonld", + "rdfs:comment": "literal with 2 dquotes \"\"\"a\"\"b\"\"\" from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1764", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/li01-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/li01-out.jsonld", - "title": "@list containing empty @list", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b1773", + "@id": "_:b6342", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "result": { - "@id": "_:b21369", + "@id": "_:b12106", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1770", + "@id": "_:b6337", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26726", + "@id": "_:b12102", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1765", + "@id": "_:b6339", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8846", + "@id": "_:b12104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1766", + "@id": "_:b6340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14839", + "@id": "_:b1232", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1769", + "@id": "_:b6343", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "result": { - "@id": "_:b24359", + "@id": "_:b12107", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b1771", + "@id": "_:b6338", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24730", + "@id": "_:b12103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1762", + "@id": "_:b6334", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1763", + "@id": "_:b6335", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1768", + "@id": "_:b6336", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", + "mode": "earl:automatic", "result": { - "@id": "_:b21751", + "@id": "_:b7730", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1772", + "@id": "_:b6344", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "result": { - "@id": "_:b25433", + "@id": "_:b12108", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b1767", + "@id": "_:b6341", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", "result": { - "@id": "_:b15708", + "@id": "_:b12105", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_REVERSE_SOLIDUS2", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt09-in.jsonld", + "rdfs:comment": "REVERSE SOLIDUS at end of literal from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9111", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld", - "title": "@list containing multiple lists", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b9118", + "@id": "_:b10697", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "result": { - "@id": "_:b19900", + "@id": "_:b17126", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9116", + "@id": "_:b10698", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19898", + "@id": "_:b17127", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9120", + "@id": "_:b10702", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19901", + "@id": "_:b13940", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9113", + "@id": "_:b10705", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19895", + "@id": "_:b17133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9114", + "@id": "_:b10703", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "result": { - "@id": "_:b19896", + "@id": "_:b17131", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b9117", + "@id": "_:b10700", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19899", + "@id": "_:b17129", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9115", + "@id": "_:b10699", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19897", + "@id": "_:b17128", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9112", + "@id": "_:b10704", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", + "mode": "earl:automatic", "result": { - "@id": "_:b18594", + "@id": "_:b17132", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9109", + "@id": "_:b10695", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "result": { - "@id": "_:b9110", + "@id": "_:b10696", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b9119", + "@id": "_:b10701", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", "result": { - "@id": "_:b9574", + "@id": "_:b17130", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_CHARACTER_TABULATION", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt10-in.jsonld", + "rdfs:comment": "literal with CHARACTER TABULATION from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7677", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq", - "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld", - "title": "t0008 as interpreted for 1.1. ", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b15731", + "@id": "_:b14902", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "result": { - "@id": "_:b15732", + "@id": "_:b18847", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15738", + "@id": "_:b14896", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26597", + "@id": "_:b18842", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15740", + "@id": "_:b14894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26895", + "@id": "_:b18840", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15733", + "@id": "_:b14898", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21685", + "@id": "_:b18844", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15736", + "@id": "_:b14899", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/pchampin/sophia_rs", - "assertedBy": "http://champin.net/#pa", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "result": { - "@id": "_:b24528", + "@id": "_:b18845", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03" + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": null }, { - "@id": "_:b15735", + "@id": "_:b14895", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24615", + "@id": "_:b18841", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15741", + "@id": "_:b14897", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24215", + "@id": "_:b18843", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15734", + "@id": "_:b14901", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", + "mode": "earl:automatic", "result": { - "@id": "_:b6401", + "@id": "_:b2889", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15737", + "@id": "_:b14900", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "result": { - "@id": "_:b25515", + "@id": "_:b18846", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": null }, { - "@id": "_:b15739", + "@id": "_:b14892", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", "result": { - "@id": "_:b16819", + "@id": "_:b14893", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - } - ], - "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", - "title": "Transform RDF to JSON-LD", - "rdfs:comment": "These tests implement the requirements for the JSON-LD [Serialize RDF as JSON-LD Algorithm](https://www.w3.org/TR/json-ld11-api/#serialize-rdf-as-json-ld-algorithm)." - }, - { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest", - "@type": [ - "mf:Manifest", - "Report" - ], - "entries": [ + ], + "title": "literal_with_BACKSPACE", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt11-in.jsonld", + "rdfs:comment": "literal with BACKSPACE from N-Triples" + }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0001-out.nq", - "title": "Plain literal with URIs", - "rdfs:comment": "Tests generation of a triple using full URIs and a plain literal.", "assertions": [ { - "@id": "_:b1608", + "@id": "_:b10580", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "result": { - "@id": "_:b11807", + "@id": "_:b18373", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1611", + "@id": "_:b10579", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24589", + "@id": "_:b15105", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1607", + "@id": "_:b10581", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2905", + "@id": "_:b22614", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1610", + "@id": "_:b10583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23086", + "@id": "_:b23209", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1609", + "@id": "_:b10587", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "result": { - "@id": "_:b3852", + "@id": "_:b12166", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1614", + "@id": "_:b10582", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22705", + "@id": "_:b23208", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1605", + "@id": "_:b10577", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1606", + "@id": "_:b10578", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1612", + "@id": "_:b10586", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b24447", + "@id": "_:b19878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1615", + "@id": "_:b10584", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "result": { - "@id": "_:b24788", + "@id": "_:b7668", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1613", + "@id": "_:b10585", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", "result": { - "@id": "_:b25256", + "@id": "_:b23210", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_LINE_FEED", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt12-in.jsonld", + "rdfs:comment": "literal with LINE FEED from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0002-out.nq", - "title": "Plain literal with CURIE from default context", - "rdfs:comment": "Tests generation of a triple using a CURIE defined in the default context.", "assertions": [ { - "@id": "_:b9964", + "@id": "_:b4327", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "result": { - "@id": "_:b9974", + "@id": "_:b24849", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9963", + "@id": "_:b4331", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9973", + "@id": "_:b22209", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9966", + "@id": "_:b4329", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9976", + "@id": "_:b26141", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9969", + "@id": "_:b4328", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9979", + "@id": "_:b25199", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9965", + "@id": "_:b4324", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "result": { - "@id": "_:b9975", + "@id": "_:b19860", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9962", + "@id": "_:b4325", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9972", + "@id": "_:b20777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9961", + "@id": "_:b4322", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9971", + "@id": "_:b4323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9960", + "@id": "_:b4330", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b9970", + "@id": "_:b26326", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9967", + "@id": "_:b4332", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "result": { - "@id": "_:b9977", + "@id": "_:b25095", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9968", + "@id": "_:b4326", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", "result": { - "@id": "_:b9978", + "@id": "_:b22399", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_CARRIAGE_RETURN", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt13-in.jsonld", + "rdfs:comment": "literal with CARRIAGE RETURN from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0003-out.nq", - "title": "Default subject is BNode", - "rdfs:comment": "Tests that a BNode is created if no explicit subject is set.", "assertions": [ { - "@id": "_:b7889", + "@id": "_:b18411", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "result": { - "@id": "_:b24686", + "@id": "_:b21101", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7883", + "@id": "_:b18414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24681", + "@id": "_:b23176", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7888", + "@id": "_:b18412", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24685", + "@id": "_:b23175", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7886", + "@id": "_:b18413", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24683", + "@id": "_:b21569", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7887", + "@id": "_:b18409", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "result": { - "@id": "_:b24684", + "@id": "_:b18410", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7885", + "@id": "_:b18419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24682", + "@id": "_:b23179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7879", + "@id": "_:b18418", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7880", + "@id": "_:b20488", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7884", + "@id": "_:b18415", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b20000", + "@id": "_:b23177", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7882", + "@id": "_:b18416", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "result": { - "@id": "_:b24079", + "@id": "_:b13162", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7881", + "@id": "_:b18417", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", "result": { - "@id": "_:b10179", + "@id": "_:b23178", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_FORM_FEED", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt14-in.jsonld", + "rdfs:comment": "literal with FORM FEED from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0004-out.nq", - "title": "Literal with language tag", - "rdfs:comment": "Tests that a plain literal is created with a language tag.", "assertions": [ { - "@id": "_:b8125", + "@id": "_:b5357", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "result": { - "@id": "_:b18512", + "@id": "_:b12479", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8127", + "@id": "_:b5361", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18969", + "@id": "_:b12483", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8126", + "@id": "_:b5354", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18968", + "@id": "_:b12476", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8130", + "@id": "_:b5353", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18972", + "@id": "_:b12475", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8131", + "@id": "_:b5359", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "result": { - "@id": "_:b2483", + "@id": "_:b12481", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8123", + "@id": "_:b5351", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8124", + "@id": "_:b5352", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8128", + "@id": "_:b5356", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18970", + "@id": "_:b12478", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8133", + "@id": "_:b5360", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b18973", + "@id": "_:b12482", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8129", + "@id": "_:b5355", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "result": { - "@id": "_:b18971", + "@id": "_:b12477", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8132", + "@id": "_:b5358", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", "result": { - "@id": "_:b17263", + "@id": "_:b12480", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_REVERSE_SOLIDUS", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt15-in.jsonld", + "rdfs:comment": "literal with REVERSE SOLIDUS from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0005-out.nq", - "title": "Extended character set literal", - "rdfs:comment": "Tests that a literal may be created using extended characters.", "assertions": [ { - "@id": "_:b10186", + "@id": "_:b3868", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "result": { - "@id": "_:b18659", + "@id": "_:b3878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10189", + "@id": "_:b3863", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18662", + "@id": "_:b3873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10184", + "@id": "_:b3867", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10185", + "@id": "_:b3877", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10193", + "@id": "_:b3872", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18665", + "@id": "_:b3882", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10187", + "@id": "_:b3871", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "result": { - "@id": "_:b18660", + "@id": "_:b3881", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10191", + "@id": "_:b3869", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18664", + "@id": "_:b3879", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10190", + "@id": "_:b3864", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18663", + "@id": "_:b3874", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10188", + "@id": "_:b3870", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b18661", + "@id": "_:b3880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10192", + "@id": "_:b3865", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "result": { - "@id": "_:b11062", + "@id": "_:b3875", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10194", + "@id": "_:b3866", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", "result": { - "@id": "_:b18666", + "@id": "_:b3876", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "title": "literal_with_numeric_escape4", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt16-in.jsonld", + "rdfs:comment": "literal with numeric escape4 \\u from N-Triples" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0006-out.nq", - "title": "Typed literal", - "rdfs:comment": "Tests creation of a literal with a datatype.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6863", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b13513", + "@id": "_:b6865", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "result": { - "@id": "_:b13514", + "@id": "_:b19176", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13516", + "@id": "_:b6868", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23704", + "@id": "_:b25598", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13519", + "@id": "_:b6869", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24577", + "@id": "_:b26598", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13520", + "@id": "_:b6871", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24362", + "@id": "_:b26574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13523", + "@id": "_:b6861", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "result": { - "@id": "_:b23894", + "@id": "_:b6862", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13515", + "@id": "_:b6870", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17037", + "@id": "_:b24631", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13517", + "@id": "_:b6867", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24363", + "@id": "_:b24014", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13521", + "@id": "_:b6872", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b26524", + "@id": "_:b6615", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13522", + "@id": "_:b6866", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "result": { - "@id": "_:b23522", + "@id": "_:b23499", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13518", + "@id": "_:b6864", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", "result": { - "@id": "_:b25362", + "@id": "_:b14978", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/p001-out.nq", + "title": "@version may be specified after first context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/p001-in.jsonld", + "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0007-out.nq", - "title": "Tests 'a' generates rdf:type and object is implicit IRI", - "rdfs:comment": "Verify that 'a' is an alias for rdf:type, and the object is created as an IRI.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b18440", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8817", + "@id": "_:b18438", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "result": { - "@id": "_:b20414", + "@id": "_:b18439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8818", + "@id": "_:b18444", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20415", + "@id": "_:b20072", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8812", + "@id": "_:b18442", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17846", + "@id": "_:b7150", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8814", + "@id": "_:b18443", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20412", + "@id": "_:b20071", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8816", + "@id": "_:b18445", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "result": { - "@id": "_:b18322", + "@id": "_:b20073", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8815", + "@id": "_:b18446", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20413", + "@id": "_:b14737", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8813", + "@id": "_:b18448", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20411", + "@id": "_:b15951", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8819", + "@id": "_:b18447", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b20416", + "@id": "_:b16357", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8820", + "@id": "_:b18441", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "result": { - "@id": "_:b20417", + "@id": "_:b20070", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8821", + "@id": "_:b18449", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", "result": { - "@id": "_:b20418", + "@id": "_:b20074", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/p002-out.nq", + "title": "@version setting [1.0, 1.1, 1.0]", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/p002-in.jsonld", + "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0008-out.nq", - "title": "Test prefix defined in @context", - "rdfs:comment": "Generate an IRI using a prefix defined within an @context.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10921", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11454", + "@id": "_:b10929", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "result": { - "@id": "_:b15484", + "@id": "_:b13400", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11449", + "@id": "_:b10928", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24737", + "@id": "_:b13399", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11448", + "@id": "_:b10924", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12780", + "@id": "_:b13396", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11451", + "@id": "_:b10930", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25541", + "@id": "_:b13401", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11445", + "@id": "_:b10927", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "result": { - "@id": "_:b11446", + "@id": "_:b4179", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11452", + "@id": "_:b10925", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23990", + "@id": "_:b13397", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11450", + "@id": "_:b10919", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10475", + "@id": "_:b10920", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11453", + "@id": "_:b10923", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b23188", + "@id": "_:b13395", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11455", + "@id": "_:b10926", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "result": { - "@id": "_:b23772", + "@id": "_:b13398", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11447", + "@id": "_:b10922", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", "result": { - "@id": "_:b14072", + "@id": "_:b13394", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/p003-out.nq", + "title": "@version setting [1.1, 1.0]", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/p003-in.jsonld", + "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0009-out.nq", - "title": "Test using an empty suffix", - "rdfs:comment": "An empty suffix may be used.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1236", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b4492", + "@id": "_:b1241", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "result": { - "@id": "_:b26241", + "@id": "_:b24085", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4494", + "@id": "_:b1238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17020", + "@id": "_:b14536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4489", + "@id": "_:b1239", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21613", + "@id": "_:b17285", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4495", + "@id": "_:b1234", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25114", + "@id": "_:b1235", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4488", + "@id": "_:b1244", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "result": { - "@id": "_:b17747", + "@id": "_:b24088", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4490", + "@id": "_:b1237", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24187", + "@id": "_:b11366", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4496", + "@id": "_:b1245", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24507", + "@id": "_:b11536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4491", + "@id": "_:b1240", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b26416", + "@id": "_:b22227", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4493", + "@id": "_:b1243", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "result": { - "@id": "_:b26591", + "@id": "_:b24087", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4486", + "@id": "_:b1242", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", "result": { - "@id": "_:b4487", + "@id": "_:b24086", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/p004-out.nq", + "title": "@version setting [1.1, 1.0, 1.1]", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/p004-in.jsonld", + "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0010-out.nq", - "title": "Test object processing defines object", - "rdfs:comment": "A property referencing an associative array gets object from subject of array.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5094", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b17162", + "@id": "_:b5102", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "result": { - "@id": "_:b17976", + "@id": "_:b25515", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17166", + "@id": "_:b5096", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15333", + "@id": "_:b22626", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17160", + "@id": "_:b5100", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17975", + "@id": "_:b25514", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17158", + "@id": "_:b5101", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17159", + "@id": "_:b15149", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17161", + "@id": "_:b5097", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "result": { - "@id": "_:b14335", + "@id": "_:b20012", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17165", + "@id": "_:b5095", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17979", + "@id": "_:b20440", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17163", + "@id": "_:b5092", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17977", + "@id": "_:b5093", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17164", + "@id": "_:b5103", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b17978", + "@id": "_:b22912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17168", + "@id": "_:b5098", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "result": { - "@id": "_:b17981", + "@id": "_:b25513", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17167", + "@id": "_:b5099", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", "result": { - "@id": "_:b17980", + "@id": "_:b14000", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "error if @version is json-ld-1.0 for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi01-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0011-out.nq", - "title": "Test object processing defines object with implicit BNode", - "rdfs:comment": "If no @ is specified, a BNode is created, and will be used as the object of an enclosing property.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b15985", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b20248", + "@id": "_:b15994", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "result": { - "@id": "_:b12499", + "@id": "_:b19630", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20239", + "@id": "_:b15986", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20249", + "@id": "_:b19623", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20247", + "@id": "_:b15987", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8860", + "@id": "_:b19624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20240", + "@id": "_:b15990", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16600", + "@id": "_:b19627", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20244", + "@id": "_:b15993", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "result": { - "@id": "_:b20253", + "@id": "_:b9630", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20246", + "@id": "_:b15988", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20255", + "@id": "_:b19625", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20243", + "@id": "_:b15992", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20252", + "@id": "_:b19629", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20245", + "@id": "_:b15989", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b20254", + "@id": "_:b19626", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20241", + "@id": "_:b15991", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "result": { - "@id": "_:b20250", + "@id": "_:b19628", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20242", + "@id": "_:b15983", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", "result": { - "@id": "_:b20251", + "@id": "_:b15984", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "error if @container does not include @index for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi02-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0012-out.nq", - "title": "Multiple Objects for a Single Property", - "rdfs:comment": "Tests that Multiple Objects are for a Single Property using array syntax.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9895", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b3401", + "@id": "_:b9893", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "result": { - "@id": "_:b16973", + "@id": "_:b9894", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3402", + "@id": "_:b9899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22007", + "@id": "_:b20923", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3406", + "@id": "_:b9896", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25012", + "@id": "_:b15244", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3405", + "@id": "_:b9903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24522", + "@id": "_:b20927", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3399", + "@id": "_:b9898", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "result": { - "@id": "_:b3400", + "@id": "_:b20922", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3407", + "@id": "_:b9902", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25215", + "@id": "_:b20926", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3408", + "@id": "_:b9901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23604", + "@id": "_:b20925", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3409", + "@id": "_:b9897", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b4614", + "@id": "_:b12850", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3403", + "@id": "_:b9900", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "result": { - "@id": "_:b15134", + "@id": "_:b20924", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3404", + "@id": "_:b9904", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", "result": { - "@id": "_:b23958", + "@id": "_:b20928", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "error if @index is a keyword for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi03-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0013-out.nq", - "title": "Creation of an empty list", - "rdfs:comment": "Tests that @list: [] generates an empty list.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3849", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5035", + "@id": "_:b3853", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "result": { - "@id": "_:b26684", + "@id": "_:b21013", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5032", + "@id": "_:b3857", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21772", + "@id": "_:b26784", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5036", + "@id": "_:b3854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23716", + "@id": "_:b23416", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5034", + "@id": "_:b3852", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25280", + "@id": "_:b19659", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5030", + "@id": "_:b3859", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "result": { - "@id": "_:b14257", + "@id": "_:b14469", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5037", + "@id": "_:b3855", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24800", + "@id": "_:b24623", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5028", + "@id": "_:b3850", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5029", + "@id": "_:b4560", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5033", + "@id": "_:b3856", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b21822", + "@id": "_:b2146", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5038", + "@id": "_:b3858", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "result": { - "@id": "_:b16265", + "@id": "_:b26933", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5031", + "@id": "_:b3851", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", "result": { - "@id": "_:b18547", + "@id": "_:b15247", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "error if @index is not a string for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi04-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0014-out.nq", - "title": "Creation of a list with single element", - "rdfs:comment": "Tests that @list generates a list.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14540", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b9096", + "@id": "_:b14541", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "result": { - "@id": "_:b9097", + "@id": "_:b6912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9099", + "@id": "_:b14545", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19429", + "@id": "_:b9967", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9098", + "@id": "_:b14547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18026", + "@id": "_:b18784", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9101", + "@id": "_:b14542", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23093", + "@id": "_:b23801", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9102", + "@id": "_:b14548", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "result": { - "@id": "_:b23551", + "@id": "_:b15045", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9104", + "@id": "_:b14543", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25830", + "@id": "_:b23802", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9106", + "@id": "_:b14549", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26554", + "@id": "_:b22675", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9105", + "@id": "_:b14544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b3348", + "@id": "_:b23803", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9103", + "@id": "_:b14538", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "result": { - "@id": "_:b24717", + "@id": "_:b14539", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9100", + "@id": "_:b14546", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", "result": { - "@id": "_:b15989", + "@id": "_:b4916", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object", + "title": "error if attempting to add property to value object for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi05-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0015-out.nq", - "title": "Creation of a list with multiple elements", - "rdfs:comment": "Tests that list with multiple elements.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9543", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10937", + "@id": "_:b9549", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "result": { - "@id": "_:b22457", + "@id": "_:b17803", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10933", + "@id": "_:b9551", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25171", + "@id": "_:b14935", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10936", + "@id": "_:b9548", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24533", + "@id": "_:b17802", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10931", + "@id": "_:b9546", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24628", + "@id": "_:b17800", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10929", + "@id": "_:b9545", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "result": { - "@id": "_:b14657", + "@id": "_:b17799", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10935", + "@id": "_:b9552", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26572", + "@id": "_:b17805", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10927", + "@id": "_:b9541", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10928", + "@id": "_:b9542", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10930", + "@id": "_:b9547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b15778", + "@id": "_:b17801", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10932", + "@id": "_:b9550", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "result": { - "@id": "_:b26325", + "@id": "_:b17804", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10934", + "@id": "_:b9544", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", "result": { - "@id": "_:b26709", + "@id": "_:b11433", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi06-out.nq", + "title": "property-valued index expands to property value, instead of @index (value)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi06-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0016-out.nq", - "title": "Empty IRI expands to resource location", - "rdfs:comment": "Expanding an empty IRI uses the test file location.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12153", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b13616", + "@id": "_:b12156", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "result": { - "@id": "_:b1799", + "@id": "_:b13066", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13613", + "@id": "_:b12157", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16703", + "@id": "_:b17032", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13621", + "@id": "_:b12151", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4057", + "@id": "_:b12152", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13614", + "@id": "_:b12161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17708", + "@id": "_:b17036", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13617", + "@id": "_:b12159", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "result": { - "@id": "_:b25067", + "@id": "_:b17034", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13611", + "@id": "_:b12155", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13612", + "@id": "_:b17031", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13619", + "@id": "_:b12154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25068", + "@id": "_:b17030", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13620", + "@id": "_:b12160", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b25069", + "@id": "_:b17035", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13615", + "@id": "_:b12162", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "result": { - "@id": "_:b25066", + "@id": "_:b17037", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13618", + "@id": "_:b12158", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", "result": { - "@id": "_:b7011", + "@id": "_:b17033", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi07-out.nq", + "title": "property-valued index appends to property value, instead of @index (value)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi07-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0017-out.nq", - "title": "Relative IRI expands relative resource location", - "rdfs:comment": "Expanding a relative IRI uses the test file location.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9695", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12316", + "@id": "_:b9701", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "result": { - "@id": "_:b26225", + "@id": "_:b9671", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12317", + "@id": "_:b9699", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24955", + "@id": "_:b25170", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12313", + "@id": "_:b9698", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13107", + "@id": "_:b24279", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12314", + "@id": "_:b9693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26205", + "@id": "_:b9694", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12312", + "@id": "_:b9703", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "result": { - "@id": "_:b19227", + "@id": "_:b5801", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12318", + "@id": "_:b9697", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19295", + "@id": "_:b23638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12311", + "@id": "_:b9702", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18470", + "@id": "_:b26999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12319", + "@id": "_:b9704", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b12888", + "@id": "_:b25098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12310", + "@id": "_:b9700", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "result": { - "@id": "_:b2669", + "@id": "_:b21526", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12315", + "@id": "_:b9696", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", "result": { - "@id": "_:b25312", + "@id": "_:b13165", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi08-out.nq", + "title": "property-valued index expands to property value, instead of @index (node)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi08-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0018-out.nq", - "title": "Frag ID expands relative resource location", - "rdfs:comment": "Expanding a fragment uses the test file location.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b13988", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10386", + "@id": "_:b13994", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "result": { - "@id": "_:b25244", + "@id": "_:b16839", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10382", + "@id": "_:b13996", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22378", + "@id": "_:b23381", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10388", + "@id": "_:b13990", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16633", + "@id": "_:b23654", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10385", + "@id": "_:b13992", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25733", + "@id": "_:b13298", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10383", + "@id": "_:b13997", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "result": { - "@id": "_:b24118", + "@id": "_:b11790", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10379", + "@id": "_:b13995", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10380", + "@id": "_:b26281", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10387", + "@id": "_:b13991", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26658", + "@id": "_:b24564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10381", + "@id": "_:b13989", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b14350", + "@id": "_:b21382", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10384", + "@id": "_:b13986", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "result": { - "@id": "_:b4175", + "@id": "_:b13987", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10389", + "@id": "_:b13993", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", "result": { - "@id": "_:b12868", + "@id": "_:b6500", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi09-out.nq", + "title": "property-valued index appends to property value, instead of @index (node)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi09-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0019-out.nq", - "title": "Test type coercion to anyURI", - "rdfs:comment": "Tests coercion of object to anyURI when specified.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5948", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6739", + "@id": "_:b5955", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "result": { - "@id": "_:b2096", + "@id": "_:b25883", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6744", + "@id": "_:b5954", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26313", + "@id": "_:b25570", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6743", + "@id": "_:b5957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26312", + "@id": "_:b25884", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6745", + "@id": "_:b5950", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13281", + "@id": "_:b21037", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6736", + "@id": "_:b5958", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "result": { - "@id": "_:b6737", + "@id": "_:b25885", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6742", + "@id": "_:b5953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26311", + "@id": "_:b24305", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6740", + "@id": "_:b5952", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24069", + "@id": "_:b5420", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6738", + "@id": "_:b5956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b14422", + "@id": "_:b17284", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6746", + "@id": "_:b5949", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "result": { - "@id": "_:b26314", + "@id": "_:b18606", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6741", + "@id": "_:b5951", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", "result": { - "@id": "_:b26310", + "@id": "_:b22411", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi10-out.nq", + "title": "property-valued index does not output property for @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi10-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0020-out.nq", - "title": "Test type coercion to typed literal", - "rdfs:comment": "Tests coercion of object to a typed literal when specified.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16827", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6709", + "@id": "_:b16828", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "result": { - "@id": "_:b26839", + "@id": "_:b18786", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6708", + "@id": "_:b16830", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22056", + "@id": "_:b22198", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6707", + "@id": "_:b16825", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26732", + "@id": "_:b16826", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6703", + "@id": "_:b16831", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21819", + "@id": "_:b20299", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6706", + "@id": "_:b16834", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "result": { - "@id": "_:b25367", + "@id": "_:b26563", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6711", + "@id": "_:b16832", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21754", + "@id": "_:b18854", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6704", + "@id": "_:b16835", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22566", + "@id": "_:b19859", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6705", + "@id": "_:b16829", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b22434", + "@id": "_:b19437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6710", + "@id": "_:b16833", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "result": { - "@id": "_:b24153", + "@id": "_:b25786", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6701", + "@id": "_:b16836", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", "result": { - "@id": "_:b6702", + "@id": "_:b22890", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi11-out.nq", + "title": "property-valued index adds property to graph object", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi11-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0022-out.nq", - "title": "Test coercion of double value", - "rdfs:comment": "Tests that a decimal value generates a xsd:double typed literal;.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b20888", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8852", + "@id": "_:b20893", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "result": { - "@id": "_:b13785", + "@id": "_:b26030", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8853", + "@id": "_:b20891", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20118", + "@id": "_:b22743", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8854", + "@id": "_:b20894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24779", + "@id": "_:b23321", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8855", + "@id": "_:b20887", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25784", + "@id": "_:b17624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8859", + "@id": "_:b20890", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "result": { - "@id": "_:b11695", + "@id": "_:b23046", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8857", + "@id": "_:b20895", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21040", + "@id": "_:b22218", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8849", + "@id": "_:b20896", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8850", + "@id": "_:b26031", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8858", + "@id": "_:b20889", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b5288", + "@id": "_:b21093", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8851", + "@id": "_:b20892", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "result": { - "@id": "_:b12184", + "@id": "_:b24313", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8856", + "@id": "_:b20897", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", "result": { - "@id": "_:b26345", + "@id": "_:b21053", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - }, + ], + "mf:result": "protected term redefinition", + "title": "Protect a term", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr01-in.jsonld", + "rdfs:comment": "Check error when overriding a protected term." + }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0023-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0023-out.nq", - "title": "Test coercion of integer value", - "rdfs:comment": "Tests that a decimal value generates a xsd:integer typed literal.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b11931", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12981", + "@id": "_:b11938", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "result": { - "@id": "_:b25277", + "@id": "_:b7976", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12977", + "@id": "_:b11932", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23472", + "@id": "_:b12320", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12975", + "@id": "_:b11934", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9710", + "@id": "_:b25455", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12978", + "@id": "_:b11939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24171", + "@id": "_:b23264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12983", + "@id": "_:b11940", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "result": { - "@id": "_:b25279", + "@id": "_:b24925", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12976", + "@id": "_:b11933", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19216", + "@id": "_:b23986", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12984", + "@id": "_:b11937", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19657", + "@id": "_:b24160", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12980", + "@id": "_:b11929", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b14834", + "@id": "_:b11930", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12979", + "@id": "_:b11935", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "result": { - "@id": "_:b24530", + "@id": "_:b25960", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12982", + "@id": "_:b11936", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", "result": { - "@id": "_:b25278", + "@id": "_:b26220", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr02-out.nq", + "title": "Set a term to not be protected", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr02-in.jsonld", + "rdfs:comment": "A term with @protected: false is not protected." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0024-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0024-out.nq", - "title": "Test coercion of boolean value", - "rdfs:comment": "Tests that a decimal value generates a xsd:boolean typed literal.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6738", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6729", + "@id": "_:b6747", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "result": { - "@id": "_:b11375", + "@id": "_:b26940", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6735", + "@id": "_:b6742", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11381", + "@id": "_:b24613", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6732", + "@id": "_:b6744", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11378", + "@id": "_:b24450", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6728", + "@id": "_:b6740", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11374", + "@id": "_:b14660", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6731", + "@id": "_:b6741", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "result": { - "@id": "_:b11377", + "@id": "_:b23792", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6725", + "@id": "_:b6736", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6726", + "@id": "_:b6737", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6734", + "@id": "_:b6745", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11380", + "@id": "_:b26992", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6727", + "@id": "_:b6746", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b11373", + "@id": "_:b26997", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6733", + "@id": "_:b6739", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "result": { - "@id": "_:b11379", + "@id": "_:b17380", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6730", + "@id": "_:b6743", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", "result": { - "@id": "_:b11376", + "@id": "_:b26910", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protect all terms in context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr03-in.jsonld", + "rdfs:comment": "A protected context protects all term definitions." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0025-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0025-out.nq", - "title": "Test list coercion with single element", - "rdfs:comment": "Tests that an array with a single element on a property with @list coercion creates an RDF Collection.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b19354", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b9834", + "@id": "_:b19357", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "result": { - "@id": "_:b23645", + "@id": "_:b22844", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9836", + "@id": "_:b19352", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8650", + "@id": "_:b19353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9831", + "@id": "_:b19358", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17984", + "@id": "_:b14052", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9837", + "@id": "_:b19363", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21367", + "@id": "_:b26542", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9828", + "@id": "_:b19360", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "result": { - "@id": "_:b9829", + "@id": "_:b27013", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9838", + "@id": "_:b19355", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26024", + "@id": "_:b20226", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9835", + "@id": "_:b19361", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20392", + "@id": "_:b1300", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9830", + "@id": "_:b19359", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b12018", + "@id": "_:b12779", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9833", + "@id": "_:b19356", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "result": { - "@id": "_:b23855", + "@id": "_:b23873", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9832", + "@id": "_:b19362", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", "result": { - "@id": "_:b22498", + "@id": "_:b19397", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Do not protect term with @protected: false", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr04-in.jsonld", + "rdfs:comment": "A protected context does not protect terms with @protected: false." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0026-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0026-out.nq", - "title": "Test creation of multiple types", - "rdfs:comment": "Tests that @type with an array of types creates multiple types.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3682", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b14302", + "@id": "_:b3686", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "result": { - "@id": "_:b25905", + "@id": "_:b23514", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14301", + "@id": "_:b3688", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25904", + "@id": "_:b26238", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14295", + "@id": "_:b3691", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14296", + "@id": "_:b24748", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14304", + "@id": "_:b3685", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22289", + "@id": "_:b21242", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14300", + "@id": "_:b3680", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "result": { - "@id": "_:b25314", + "@id": "_:b3681", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14303", + "@id": "_:b3684", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25906", + "@id": "_:b16658", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14298", + "@id": "_:b3683", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20961", + "@id": "_:b14664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14299", + "@id": "_:b3689", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b23849", + "@id": "_:b18388", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14297", + "@id": "_:b3687", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "result": { - "@id": "_:b17541", + "@id": "_:b23775", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14305", + "@id": "_:b3690", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", "result": { - "@id": "_:b24221", + "@id": "_:b25498", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Clear active context with protected terms from an embedded context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr05-in.jsonld", + "rdfs:comment": "The Active context be set to null from an embedded context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0027-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0027-out.nq", - "title": "Simple named graph (Wikidata)", - "rdfs:comment": "Using @graph with other keys places triples in a named graph.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5033", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b18227", + "@id": "_:b5037", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "result": { - "@id": "_:b24968", + "@id": "_:b18210", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18230", + "@id": "_:b5038", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23467", + "@id": "_:b25436", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18222", + "@id": "_:b5039", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17485", + "@id": "_:b25791", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18224", + "@id": "_:b5036", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21694", + "@id": "_:b3994", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18225", + "@id": "_:b5040", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "result": { - "@id": "_:b22364", + "@id": "_:b23988", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18229", + "@id": "_:b5031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25144", + "@id": "_:b5032", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18226", + "@id": "_:b5041", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24228", + "@id": "_:b11653", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18228", + "@id": "_:b5034", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b9265", + "@id": "_:b23071", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18223", + "@id": "_:b5042", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "result": { - "@id": "_:b19321", + "@id": "_:b25792", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18231", + "@id": "_:b5035", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", "result": { - "@id": "_:b8753", + "@id": "_:b24025", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr06-out.nq", + "title": "Clear active context of protected terms from a term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr06-in.jsonld", + "rdfs:comment": "The Active context may be set to null from a scoped context of a term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0028-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0028-out.nq", - "title": "Simple named graph", - "rdfs:comment": "Signing a graph.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8740", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b25398", + "@id": "_:b8746", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "result": { - "@id": "_:b6699", + "@id": "_:b24218", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b25393", + "@id": "_:b8744", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26011", + "@id": "_:b20343", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b25396", + "@id": "_:b8748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25096", + "@id": "_:b24219", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b25401", + "@id": "_:b8742", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24857", + "@id": "_:b10590", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b25399", + "@id": "_:b8738", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "result": { - "@id": "_:b21549", + "@id": "_:b8739", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b25397", + "@id": "_:b8749", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26686", + "@id": "_:b24220", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b25395", + "@id": "_:b8741", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24866", + "@id": "_:b9933", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b25392", + "@id": "_:b8745", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b24874", + "@id": "_:b23879", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b25400", + "@id": "_:b8747", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "result": { - "@id": "_:b19468", + "@id": "_:b21099", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b25394", + "@id": "_:b8743", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", "result": { - "@id": "_:b23168", + "@id": "_:b17164", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Term with protected scoped context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr08-in.jsonld", + "rdfs:comment": "A scoped context can protect terms." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0029-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0029-out.nq", - "title": "named graph with embedded named graph", - "rdfs:comment": "Tests that named graphs containing named graphs flatten to single level of graph naming.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10233", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b19908", + "@id": "_:b21211", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "result": { - "@id": "_:b8493", + "@id": "_:b24144", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19905", + "@id": "_:b21208", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22876", + "@id": "_:b21209", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19906", + "@id": "_:b21217", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25862", + "@id": "_:b25034", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19912", + "@id": "_:b21213", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26153", + "@id": "_:b17091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19910", + "@id": "_:b21214", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "result": { - "@id": "_:b24969", + "@id": "_:b16442", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19907", + "@id": "_:b21212", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22761", + "@id": "_:b25031", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19913", + "@id": "_:b21210", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26917", + "@id": "_:b16134", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19904", + "@id": "_:b21218", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b20320", + "@id": "_:b25035", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19909", + "@id": "_:b21216", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "result": { - "@id": "_:b17031", + "@id": "_:b25033", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19911", + "@id": "_:b21215", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", "result": { - "@id": "_:b26947", + "@id": "_:b25032", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Attempt to redefine term in other protected context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr09-in.jsonld", + "rdfs:comment": "A protected term cannot redefine another protected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0030-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0030-out.nq", - "title": "top-level graph with string subject reference", - "rdfs:comment": "Tests graphs containing subject references as strings.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3607", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5642", + "@id": "_:b3616", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "result": { - "@id": "_:b5652", + "@id": "_:b24693", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5638", + "@id": "_:b3610", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5648", + "@id": "_:b4522", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5633", + "@id": "_:b3613", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5643", + "@id": "_:b24691", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5634", + "@id": "_:b3608", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5644", + "@id": "_:b15700", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5641", + "@id": "_:b3612", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "result": { - "@id": "_:b5651", + "@id": "_:b14878", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5636", + "@id": "_:b3611", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5646", + "@id": "_:b24181", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5639", + "@id": "_:b3609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5649", + "@id": "_:b16551", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5637", + "@id": "_:b3615", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b5647", + "@id": "_:b24692", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5635", + "@id": "_:b3614", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "result": { - "@id": "_:b5645", + "@id": "_:b20136", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5640", + "@id": "_:b3605", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", "result": { - "@id": "_:b5650", + "@id": "_:b3606", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr10-out.nq", + "title": "Simple protected and unprotected terms.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr10-in.jsonld", + "rdfs:comment": "Simple protected and unprotected terms." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0031-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0031-out.nq", - "title": "Reverse property", - "rdfs:comment": "Tests conversion of reverse properties.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4145", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b3844", + "@id": "_:b4153", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "result": { - "@id": "_:b20924", + "@id": "_:b8184", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3839", + "@id": "_:b4147", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3840", + "@id": "_:b8178", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3841", + "@id": "_:b4150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20319", + "@id": "_:b8181", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3845", + "@id": "_:b4151", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22654", + "@id": "_:b8182", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3848", + "@id": "_:b4148", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "result": { - "@id": "_:b22657", + "@id": "_:b8179", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3842", + "@id": "_:b4146", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22653", + "@id": "_:b8177", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3843", + "@id": "_:b4149", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20467", + "@id": "_:b8180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3846", + "@id": "_:b4143", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b22655", + "@id": "_:b4144", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3847", + "@id": "_:b4152", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "result": { - "@id": "_:b22656", + "@id": "_:b8183", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3849", + "@id": "_:b4154", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", "result": { - "@id": "_:b22658", + "@id": "_:b8185", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Fail to override protected term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr11-in.jsonld", + "rdfs:comment": "Fail to override protected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0032-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0032-out.nq", - "title": "@context reordering", - "rdfs:comment": "Tests that generated triples do not depend on order of @context.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9566", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b20381", + "@id": "_:b9569", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "result": { - "@id": "_:b20382", + "@id": "_:b23504", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20384", + "@id": "_:b9574", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21680", + "@id": "_:b20507", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20391", + "@id": "_:b9564", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22706", + "@id": "_:b9565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20389", + "@id": "_:b9573", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24832", + "@id": "_:b22851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20386", + "@id": "_:b9570", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "result": { - "@id": "_:b20474", + "@id": "_:b10788", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20383", + "@id": "_:b9575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22977", + "@id": "_:b20547", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20387", + "@id": "_:b9572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23213", + "@id": "_:b25981", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20388", + "@id": "_:b9567", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b24831", + "@id": "_:b11390", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20385", + "@id": "_:b9571", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "result": { - "@id": "_:b10197", + "@id": "_:b24328", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20390", + "@id": "_:b9568", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", "result": { - "@id": "_:b15043", + "@id": "_:b21890", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Scoped context fail to override protected term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr12-in.jsonld", + "rdfs:comment": "Scoped context fail to override protected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0033-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0033-out.nq", - "title": "@id reordering", - "rdfs:comment": "Tests that generated triples do not depend on order of @id.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b15952", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5355", + "@id": "_:b15956", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "result": { - "@id": "_:b16644", + "@id": "_:b10860", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5362", + "@id": "_:b15955", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24882", + "@id": "_:b15965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5359", + "@id": "_:b15962", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26348", + "@id": "_:b3806", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5358", + "@id": "_:b15953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23149", + "@id": "_:b15963", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5361", + "@id": "_:b15954", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "result": { - "@id": "_:b11694", + "@id": "_:b15964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5352", + "@id": "_:b15959", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5353", + "@id": "_:b15968", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5357", + "@id": "_:b15957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17258", + "@id": "_:b15966", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5354", + "@id": "_:b15961", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b13526", + "@id": "_:b15970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5356", + "@id": "_:b15958", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "result": { - "@id": "_:b17802", + "@id": "_:b15967", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5360", + "@id": "_:b15960", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", "result": { - "@id": "_:b14307", + "@id": "_:b15969", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr13-out.nq", + "title": "Override unprotected term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr13-in.jsonld", + "rdfs:comment": "Override unprotected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0034-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0034-out.nq", - "title": "context properties reordering", - "rdfs:comment": "Tests that generated triples do not depend on order of properties inside @context.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4833", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b16028", + "@id": "_:b4837", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "result": { - "@id": "_:b24863", + "@id": "_:b14513", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16027", + "@id": "_:b4836", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24226", + "@id": "_:b22384", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16032", + "@id": "_:b4838", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25186", + "@id": "_:b23273", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16026", + "@id": "_:b4831", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24222", + "@id": "_:b4832", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16030", + "@id": "_:b4841", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "result": { - "@id": "_:b23881", + "@id": "_:b24196", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16023", + "@id": "_:b4835", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16024", + "@id": "_:b21441", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16029", + "@id": "_:b4842", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25360", + "@id": "_:b26921", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16031", + "@id": "_:b4839", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b26008", + "@id": "_:b26131", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16025", + "@id": "_:b4834", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "result": { - "@id": "_:b18688", + "@id": "_:b16044", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16033", + "@id": "_:b4840", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", "result": { - "@id": "_:b17813", + "@id": "_:b15911", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr14-out.nq", + "title": "Clear protection with null context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr14-in.jsonld", + "rdfs:comment": "Clear protection with null context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0035-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0035-out.nq", - "title": "non-fractional numbers converted to xsd:double", - "rdfs:comment": "xsd:double's canonical lexical is used when converting numbers without fraction that are coerced to xsd:double", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b626", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11368", + "@id": "_:b628", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "result": { - "@id": "_:b25448", + "@id": "_:b638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11369", + "@id": "_:b627", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22162", + "@id": "_:b637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11364", + "@id": "_:b633", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18612", + "@id": "_:b643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11362", + "@id": "_:b636", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14660", + "@id": "_:b646", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11370", + "@id": "_:b629", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "result": { - "@id": "_:b25223", + "@id": "_:b639", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11367", + "@id": "_:b634", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25145", + "@id": "_:b644", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11366", + "@id": "_:b631", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3435", + "@id": "_:b641", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11363", + "@id": "_:b635", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b16984", + "@id": "_:b645", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11365", + "@id": "_:b630", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "result": { - "@id": "_:b20471", + "@id": "_:b640", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11360", + "@id": "_:b632", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", "result": { - "@id": "_:b11361", + "@id": "_:b642", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr15-out.nq", + "title": "Clear protection with array with null context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr15-in.jsonld", + "rdfs:comment": "Clear protection with array with null context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0036-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0036-out.nq", - "title": "Use nodeMapGeneration bnode labels", - "rdfs:comment": "The toRDF algorithm does not relabel blank nodes; it reuses the counter from the nodeMapGeneration to generate new ones", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b17517", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b9591", + "@id": "_:b17525", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "result": { - "@id": "_:b9601", + "@id": "_:b20566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9590", + "@id": "_:b17516", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9600", + "@id": "_:b16544", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9593", + "@id": "_:b17524", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9603", + "@id": "_:b20565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9596", + "@id": "_:b17521", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9606", + "@id": "_:b20562", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9592", + "@id": "_:b17523", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "result": { - "@id": "_:b9602", + "@id": "_:b20564", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9595", + "@id": "_:b17522", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9605", + "@id": "_:b20563", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9599", + "@id": "_:b17519", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9609", + "@id": "_:b20561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9594", + "@id": "_:b17520", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b9604", + "@id": "_:b1287", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9598", + "@id": "_:b17526", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "result": { - "@id": "_:b9608", + "@id": "_:b20567", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9597", + "@id": "_:b17518", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", "result": { - "@id": "_:b9607", + "@id": "_:b18312", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr16-out.nq", + "title": "Override protected terms after null.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr16-in.jsonld", + "rdfs:comment": "Override protected terms after null." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0113-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0113-out.nq", - "title": "Dataset with a IRI named graph", - "rdfs:comment": "Basic use of creating a named graph using an IRI name", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b15677", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12039", + "@id": "_:b15680", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "result": { - "@id": "_:b12040", + "@id": "_:b19073", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12045", + "@id": "_:b15684", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22506", + "@id": "_:b24751", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12043", + "@id": "_:b15685", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22361", + "@id": "_:b25256", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12046", + "@id": "_:b15683", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26862", + "@id": "_:b24621", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12048", + "@id": "_:b15686", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "result": { - "@id": "_:b23653", + "@id": "_:b15345", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12044", + "@id": "_:b15682", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23354", + "@id": "_:b16782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12049", + "@id": "_:b15679", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25683", + "@id": "_:b18195", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12041", + "@id": "_:b15678", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b15383", + "@id": "_:b17190", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12047", + "@id": "_:b15675", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "result": { - "@id": "_:b26236", + "@id": "_:b15676", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12042", + "@id": "_:b15681", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", "result": { - "@id": "_:b18087", + "@id": "_:b21904", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Fail to override protected terms with type.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr17-in.jsonld", + "rdfs:comment": "Fail to override protected terms with type." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0114-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0114-out.nq", - "title": "Dataset with a IRI named graph", - "rdfs:comment": "Basic use of creating a named graph using a BNode name", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b11171", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b3931", + "@id": "_:b11175", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "result": { - "@id": "_:b22027", + "@id": "_:b12229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3936", + "@id": "_:b11178", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4469", + "@id": "_:b12231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3930", + "@id": "_:b11179", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21489", + "@id": "_:b12232", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3934", + "@id": "_:b11174", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26731", + "@id": "_:b1301", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3933", + "@id": "_:b11177", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "result": { - "@id": "_:b25886", + "@id": "_:b12137", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3937", + "@id": "_:b11176", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26738", + "@id": "_:b12230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3935", + "@id": "_:b11180", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19104", + "@id": "_:b12233", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3938", + "@id": "_:b11172", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b14666", + "@id": "_:b12222", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3929", + "@id": "_:b11173", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "result": { - "@id": "_:b9622", + "@id": "_:b12228", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3932", + "@id": "_:b11170", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", "result": { - "@id": "_:b19812", + "@id": "_:b6977", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Fail to override protected terms with type+null+ctx.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr18-in.jsonld", + "rdfs:comment": "Fail to override protected terms with type+null+ctx." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0115-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0115-out.nq", - "title": "Dataset with a default and two named graphs", - "rdfs:comment": "Dataset with a default and two named graphs (IRI and BNode)", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b19045", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b3469", + "@id": "_:b22499", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "result": { - "@id": "_:b12434", + "@id": "_:b21789", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3472", + "@id": "_:b22498", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26851", + "@id": "_:b22060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3470", + "@id": "_:b22501", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24932", + "@id": "_:b25925", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3473", + "@id": "_:b22504", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20374", + "@id": "_:b25582", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3466", + "@id": "_:b22505", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "result": { - "@id": "_:b15391", + "@id": "_:b19507", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3471", + "@id": "_:b22497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26796", + "@id": "_:b22748", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3463", + "@id": "_:b22500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3464", + "@id": "_:b23594", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3465", + "@id": "_:b22502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b3655", + "@id": "_:b24861", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3467", + "@id": "_:b22496", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "result": { - "@id": "_:b17170", + "@id": "_:b3137", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3468", + "@id": "_:b22503", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", "result": { - "@id": "_:b20076", + "@id": "_:b22643", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr19-out.nq", + "title": "Mix of protected and unprotected terms.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr19-in.jsonld", + "rdfs:comment": "Mix of protected and unprotected terms." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0116-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0116-out.nq", - "title": "Dataset from node with embedded named graph", - "rdfs:comment": "Embedding @graph in a node creates a named graph", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5056", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8709", + "@id": "_:b5066", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "result": { - "@id": "_:b21408", + "@id": "_:b26637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8707", + "@id": "_:b5065", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8708", + "@id": "_:b26827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8711", + "@id": "_:b5059", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19611", + "@id": "_:b19404", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8712", + "@id": "_:b5063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18025", + "@id": "_:b22404", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8716", + "@id": "_:b5060", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "result": { - "@id": "_:b20728", + "@id": "_:b20870", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8710", + "@id": "_:b5058", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24256", + "@id": "_:b18933", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8715", + "@id": "_:b5064", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21821", + "@id": "_:b26435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8713", + "@id": "_:b5061", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b25116", + "@id": "_:b22649", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8714", + "@id": "_:b5057", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "result": { - "@id": "_:b25095", + "@id": "_:b12411", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8717", + "@id": "_:b5062", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", "result": { - "@id": "_:b22540", + "@id": "_:b24517", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Fail with mix of protected and unprotected terms with type+null+ctx.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr20-in.jsonld", + "rdfs:comment": "Fail with mix of protected and unprotected terms with type+null+ctx." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0117-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0117-out.nq", - "title": "Dataset from node with embedded named graph (bnode)", - "rdfs:comment": "Embedding @graph in a node creates a named graph. Graph name is created if there is no subject", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b18422", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6471", + "@id": "_:b18420", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "result": { - "@id": "_:b22402", + "@id": "_:b18421", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6470", + "@id": "_:b18429", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26924", + "@id": "_:b1072", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6466", + "@id": "_:b18430", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23926", + "@id": "_:b21198", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6462", + "@id": "_:b18431", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6463", + "@id": "_:b19546", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6467", + "@id": "_:b18423", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "result": { - "@id": "_:b20360", + "@id": "_:b21194", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6469", + "@id": "_:b18427", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5549", + "@id": "_:b21197", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6472", + "@id": "_:b18426", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23956", + "@id": "_:b21196", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6464", + "@id": "_:b18425", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b16797", + "@id": "_:b20868", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6465", + "@id": "_:b18428", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "result": { - "@id": "_:b23974", + "@id": "_:b9148", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6468", + "@id": "_:b18424", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", "result": { - "@id": "_:b10658", + "@id": "_:b21195", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Fail with mix of protected and unprotected terms with type+null.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr21-in.jsonld", + "rdfs:comment": "Fail with mix of protected and unprotected terms with type+null." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0119-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0119-out.nq", - "title": "Blank nodes with reverse properties", - "rdfs:comment": "Proper (re-)labeling of blank nodes if used with reverse properties.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6465", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b14381", + "@id": "_:b6467", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "result": { - "@id": "_:b16966", + "@id": "_:b15054", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14388", + "@id": "_:b6468", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16972", + "@id": "_:b15055", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14386", + "@id": "_:b6471", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11422", + "@id": "_:b15058", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14384", + "@id": "_:b6473", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16969", + "@id": "_:b15059", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14380", + "@id": "_:b6474", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "result": { - "@id": "_:b16965", + "@id": "_:b3629", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14385", + "@id": "_:b6463", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16970", + "@id": "_:b6464", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14387", + "@id": "_:b6469", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16971", + "@id": "_:b15056", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14382", + "@id": "_:b6470", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b16967", + "@id": "_:b15057", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14378", + "@id": "_:b6472", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "result": { - "@id": "_:b14379", + "@id": "_:b7806", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14383", + "@id": "_:b6466", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", "result": { - "@id": "_:b16968", + "@id": "_:b15053", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr22-out.nq", + "title": "Check legal overriding of type-scoped protected term from nested node.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr22-in.jsonld", + "rdfs:comment": "Check legal overriding of type-scoped protected term from nested node." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0120-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0120-out.nq", - "title": "IRI Resolution (0)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3969", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2384", + "@id": "_:b3976", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "result": { - "@id": "_:b23475", + "@id": "_:b23229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2381", + "@id": "_:b3975", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11158", + "@id": "_:b23451", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2379", + "@id": "_:b3974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18390", + "@id": "_:b25763", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2376", + "@id": "_:b3973", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16346", + "@id": "_:b24576", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2383", + "@id": "_:b3970", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "result": { - "@id": "_:b26854", + "@id": "_:b17654", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2377", + "@id": "_:b3977", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20549", + "@id": "_:b3192", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2378", + "@id": "_:b3972", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22254", + "@id": "_:b23944", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2374", + "@id": "_:b3978", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b2375", + "@id": "_:b3550", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2382", + "@id": "_:b3967", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "result": { - "@id": "_:b24155", + "@id": "_:b3968", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2380", + "@id": "_:b3971", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", "result": { - "@id": "_:b18469", + "@id": "_:b22293", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr23-out.nq", + "title": "Allows redefinition of protected alias term with same definition.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr23-in.jsonld", + "rdfs:comment": "Allows redefinition of protected alias term with same definition." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0121-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0121-out.nq", - "title": "IRI Resolution (1)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16949", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8527", + "@id": "_:b16954", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "result": { - "@id": "_:b21162", + "@id": "_:b19897", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8530", + "@id": "_:b16955", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14795", + "@id": "_:b26487", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8528", + "@id": "_:b16952", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7997", + "@id": "_:b23104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8524", + "@id": "_:b16951", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19181", + "@id": "_:b23774", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8529", + "@id": "_:b16947", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "result": { - "@id": "_:b21163", + "@id": "_:b16948", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8525", + "@id": "_:b16953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21160", + "@id": "_:b25671", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8531", + "@id": "_:b16956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21164", + "@id": "_:b23923", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8523", + "@id": "_:b16957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b9267", + "@id": "_:b23948", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8526", + "@id": "_:b16958", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "result": { - "@id": "_:b21161", + "@id": "_:b20461", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8521", + "@id": "_:b16950", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", "result": { - "@id": "_:b8522", + "@id": "_:b19294", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr24-out.nq", + "title": "Allows redefinition of protected prefix term with same definition.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr24-in.jsonld", + "rdfs:comment": "Allows redefinition of protected prefix term with same definition." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0122-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0122-out.nq", - "title": "IRI Resolution (2)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14064", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b1047", + "@id": "_:b14070", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "result": { - "@id": "_:b7578", + "@id": "_:b20043", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1049", + "@id": "_:b14072", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19029", + "@id": "_:b20044", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1044", + "@id": "_:b14063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1045", + "@id": "_:b11339", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1053", + "@id": "_:b14069", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1307", + "@id": "_:b20042", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1054", + "@id": "_:b14068", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "result": { - "@id": "_:b20437", + "@id": "_:b20041", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1046", + "@id": "_:b14065", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20542", + "@id": "_:b15151", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1050", + "@id": "_:b14067", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23401", + "@id": "_:b20040", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1052", + "@id": "_:b14066", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b23402", + "@id": "_:b20039", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1048", + "@id": "_:b14073", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "result": { - "@id": "_:b23400", + "@id": "_:b14242", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1051", + "@id": "_:b14071", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", "result": { - "@id": "_:b20073", + "@id": "_:b8924", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr25-out.nq", + "title": "Allows redefinition of terms with scoped contexts using same definitions.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr25-in.jsonld", + "rdfs:comment": "Allows redefinition of terms with scoped contexts using same definitions." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0123-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0123-out.nq", - "title": "IRI Resolution (3)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12878", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6455", + "@id": "_:b12882", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "result": { - "@id": "_:b20956", + "@id": "_:b15707", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6460", + "@id": "_:b12879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18820", + "@id": "_:b14511", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6459", + "@id": "_:b12876", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16281", + "@id": "_:b12877", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6451", + "@id": "_:b12885", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6452", + "@id": "_:b15709", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6461", + "@id": "_:b12886", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "result": { - "@id": "_:b19140", + "@id": "_:b15710", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6456", + "@id": "_:b12880", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22401", + "@id": "_:b15706", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6457", + "@id": "_:b12887", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25126", + "@id": "_:b15711", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6454", + "@id": "_:b12884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b18128", + "@id": "_:b15708", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6458", + "@id": "_:b12883", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "result": { - "@id": "_:b25356", + "@id": "_:b11165", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6453", + "@id": "_:b12881", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", "result": { - "@id": "_:b14478", + "@id": "_:b15501", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Fails on redefinition of terms with scoped contexts using different definitions.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr26-in.jsonld", + "rdfs:comment": "Fails on redefinition of terms with scoped contexts using different definitions." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2959", + "@id": "_:b2382", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": [ - "https://w3c.github.io/json-ld-api/tests/toRdf/e124-in.jsonld", - "https://w3c.github.io/json-ld-api/tests/toRdf/0124-in.jsonld" - ], - "testResult": [ - "https://w3c.github.io/json-ld-api/tests/toRdf/e124-out.nq", - "https://w3c.github.io/json-ld-api/tests/toRdf/0124-out.nq" - ], - "title": [ - "compact IRI as @vocab", - "IRI Resolution (4)" - ], - "rdfs:comment": [ - "IRI resolution according to RFC3986.", - "Verifies that @vocab defined as a compact IRI expands properly" - ], "assertions": [ { - "@id": "_:b2968", + "@id": "_:b2388", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "result": { - "@id": "_:b26927", + "@id": "_:b21844", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2963", + "@id": "_:b2385", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23848", + "@id": "_:b21841", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2960", + "@id": "_:b2380", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18436", + "@id": "_:b2381", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2964", + "@id": "_:b2384", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24877", + "@id": "_:b19912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2966", + "@id": "_:b2389", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "result": { - "@id": "_:b18282", + "@id": "_:b21845", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2961", + "@id": "_:b2387", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22938", + "@id": "_:b21843", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2965", + "@id": "_:b2386", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21688", + "@id": "_:b21842", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2969", + "@id": "_:b2391", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b4953", + "@id": "_:b2286", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2967", + "@id": "_:b2383", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "result": { - "@id": "_:b26864", + "@id": "_:b15148", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2962", + "@id": "_:b2390", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", "result": { - "@id": "_:b23599", + "@id": "_:b21846", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr27-out.nq", + "title": "Allows redefinition of protected alias term with same definition modulo protected flag.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr27-in.jsonld", + "rdfs:comment": "Allows redefinition of protected alias term with same definition modulo protected flag." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6015", + "@id": "_:b16282", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": [ - "https://w3c.github.io/json-ld-api/tests/toRdf/e125-in.jsonld", - "https://w3c.github.io/json-ld-api/tests/toRdf/0125-in.jsonld" - ], - "testResult": [ - "https://w3c.github.io/json-ld-api/tests/toRdf/e125-out.nq", - "https://w3c.github.io/json-ld-api/tests/toRdf/0125-out.nq" - ], - "title": [ - "term as @vocab", - "IRI Resolution (5)" - ], - "rdfs:comment": [ - "IRI resolution according to RFC3986.", - "Verifies that @vocab defined as a term expands properly" - ], "assertions": [ { - "@id": "_:b6025", + "@id": "_:b16285", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "result": { - "@id": "_:b25209", + "@id": "_:b26520", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6023", + "@id": "_:b16286", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25669", + "@id": "_:b26603", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6021", + "@id": "_:b16290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22308", + "@id": "_:b25403", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6022", + "@id": "_:b16291", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22199", + "@id": "_:b14286", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6017", + "@id": "_:b16288", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "result": { - "@id": "_:b16682", + "@id": "_:b26599", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6018", + "@id": "_:b16287", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24983", + "@id": "_:b26926", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6016", + "@id": "_:b16281", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10180", + "@id": "_:b14619", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6019", + "@id": "_:b16283", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b24826", + "@id": "_:b17835", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6020", + "@id": "_:b16284", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "result": { - "@id": "_:b22681", + "@id": "_:b26105", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6024", + "@id": "_:b16289", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", "result": { - "@id": "_:b19319", + "@id": "_:b23031", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Fails if trying to redefine a protected null term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr28-in.jsonld", + "rdfs:comment": "A protected term with a null IRI mapping cannot be redefined." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0126-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0126-out.nq", - "title": "IRI Resolution (6)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7382", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11177", + "@id": "_:b7388", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "result": { - "@id": "_:b19620", + "@id": "_:b26373", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11178", + "@id": "_:b7389", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19621", + "@id": "_:b26374", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11172", + "@id": "_:b7385", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19615", + "@id": "_:b23810", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11176", + "@id": "_:b7390", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19619", + "@id": "_:b7345", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11180", + "@id": "_:b7383", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "result": { - "@id": "_:b19623", + "@id": "_:b19385", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11173", + "@id": "_:b7386", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19616", + "@id": "_:b13587", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11179", + "@id": "_:b7391", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19622", + "@id": "_:b24841", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11171", + "@id": "_:b7380", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b19325", + "@id": "_:b7381", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11175", + "@id": "_:b7387", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "result": { - "@id": "_:b19618", + "@id": "_:b21749", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11174", + "@id": "_:b7384", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", "result": { - "@id": "_:b19617", + "@id": "_:b23080", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr29-out.nq", + "title": "Does not expand a Compact IRI using a non-prefix term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr29-in.jsonld", + "rdfs:comment": "Expansion of Compact IRIs considers if the term can be used as a prefix." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0127-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0127-out.nq", - "title": "IRI Resolution (7)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7570", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8440", + "@id": "_:b7572", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "result": { - "@id": "_:b25571", + "@id": "_:b24104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8439", + "@id": "_:b7577", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25570", + "@id": "_:b15380", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8435", + "@id": "_:b7576", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22596", + "@id": "_:b26864", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8441", + "@id": "_:b7568", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25572", + "@id": "_:b7569", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8437", + "@id": "_:b7575", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "result": { - "@id": "_:b23498", + "@id": "_:b16249", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8431", + "@id": "_:b7578", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8432", + "@id": "_:b26253", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8436", + "@id": "_:b7574", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8033", + "@id": "_:b8327", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8438", + "@id": "_:b7571", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b24518", + "@id": "_:b16913", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8434", + "@id": "_:b7579", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "result": { - "@id": "_:b21079", + "@id": "_:b26931", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8433", + "@id": "_:b7573", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", "result": { - "@id": "_:b19040", + "@id": "_:b23268", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr30-out.nq", + "title": "Keywords may be protected.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr30-in.jsonld", + "rdfs:comment": "Keywords may not be redefined other than to protect them." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0128-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0128-out.nq", - "title": "IRI Resolution (8)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2611", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8382", + "@id": "_:b2609", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "result": { - "@id": "_:b19762", + "@id": "_:b2610", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8383", + "@id": "_:b2619", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15369", + "@id": "_:b10144", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8381", + "@id": "_:b2620", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12129", + "@id": "_:b22908", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8385", + "@id": "_:b2618", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2498", + "@id": "_:b26838", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8386", + "@id": "_:b2615", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "result": { - "@id": "_:b22860", + "@id": "_:b25713", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8384", + "@id": "_:b2617", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1231", + "@id": "_:b20720", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8379", + "@id": "_:b2614", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8380", + "@id": "_:b22636", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8388", + "@id": "_:b2616", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b26491", + "@id": "_:b25129", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8387", + "@id": "_:b2612", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "result": { - "@id": "_:b2481", + "@id": "_:b5615", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8389", + "@id": "_:b2613", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", "result": { - "@id": "_:b20506", + "@id": "_:b18738", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protected keyword aliases cannot be overridden.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr31-in.jsonld", + "rdfs:comment": "Keywords may not be redefined other than to protect them." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0129-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0129-out.nq", - "title": "IRI Resolution (9)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b783", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12120", + "@id": "_:b21022", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "result": { - "@id": "_:b23135", + "@id": "_:b21023", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12124", + "@id": "_:b21030", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16798", + "@id": "_:b26739", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12125", + "@id": "_:b21025", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26627", + "@id": "_:b24165", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12117", + "@id": "_:b21024", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12118", + "@id": "_:b8601", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12127", + "@id": "_:b21032", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "result": { - "@id": "_:b18714", + "@id": "_:b23222", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12119", + "@id": "_:b21028", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17653", + "@id": "_:b25018", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12123", + "@id": "_:b21031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26351", + "@id": "_:b22660", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12121", + "@id": "_:b21027", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b23988", + "@id": "_:b26154", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12126", + "@id": "_:b21029", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "result": { - "@id": "_:b22265", + "@id": "_:b22637", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12122", + "@id": "_:b21026", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", "result": { - "@id": "_:b25253", + "@id": "_:b23011", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protected @type cannot be overridden.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr32-in.jsonld", + "rdfs:comment": "Keywords may not be redefined other than to protect them." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0130-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0130-out.nq", - "title": "IRI Resolution (10)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6187", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6192", + "@id": "_:b6189", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "result": { - "@id": "_:b18795", + "@id": "_:b23498", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6188", + "@id": "_:b6192", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18793", + "@id": "_:b21206", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6183", + "@id": "_:b6194", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6184", + "@id": "_:b18654", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6187", + "@id": "_:b6188", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1679", + "@id": "_:b15150", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6186", + "@id": "_:b6196", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "result": { - "@id": "_:b14662", + "@id": "_:b23758", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6193", + "@id": "_:b6195", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18330", + "@id": "_:b9627", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6191", + "@id": "_:b6185", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16144", + "@id": "_:b6186", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6185", + "@id": "_:b6190", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b12905", + "@id": "_:b23756", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6190", + "@id": "_:b6193", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "result": { - "@id": "_:b4177", + "@id": "_:b23757", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6189", + "@id": "_:b6191", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", "result": { - "@id": "_:b18794", + "@id": "_:b22387", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "Fails if trying to declare a keyword alias as prefix.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr33-in.jsonld", + "rdfs:comment": "Keyword aliases can not be used as prefixes." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0131-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0131-out.nq", - "title": "IRI Resolution (11)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1074", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2049", + "@id": "_:b20876", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "result": { - "@id": "_:b23271", + "@id": "_:b25502", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2044", + "@id": "_:b20879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2045", + "@id": "_:b26232", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2054", + "@id": "_:b20875", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5008", + "@id": "_:b26231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2051", + "@id": "_:b20880", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23273", + "@id": "_:b25949", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2053", + "@id": "_:b20881", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "result": { - "@id": "_:b21664", + "@id": "_:b24780", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2046", + "@id": "_:b20873", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18439", + "@id": "_:b19823", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2050", + "@id": "_:b20877", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23272", + "@id": "_:b25100", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2052", + "@id": "_:b20874", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b23274", + "@id": "_:b25722", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2048", + "@id": "_:b20871", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "result": { - "@id": "_:b23270", + "@id": "_:b20872", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2047", + "@id": "_:b20878", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", "result": { - "@id": "_:b22948", + "@id": "_:b26067", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr34-out.nq", + "title": "Ignores a non-keyword term starting with '@'", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr34-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/0132-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/0132-out.nq", - "title": "IRI Resolution (12)", - "rdfs:comment": "IRI resolution according to RFC3986.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b13189", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11578", + "@id": "_:b13194", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "result": { - "@id": "_:b12617", + "@id": "_:b25890", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11573", + "@id": "_:b13193", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11574", + "@id": "_:b26014", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11581", + "@id": "_:b13195", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15132", + "@id": "_:b24770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11575", + "@id": "_:b13198", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14835", + "@id": "_:b21284", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11579", + "@id": "_:b13192", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "result": { - "@id": "_:b13878", + "@id": "_:b24982", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11580", + "@id": "_:b13190", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21662", + "@id": "_:b14650", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11583", + "@id": "_:b13196", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11984", + "@id": "_:b20150", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11582", + "@id": "_:b13191", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b9636", + "@id": "_:b15600", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11576", + "@id": "_:b13187", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "result": { - "@id": "_:b22430", + "@id": "_:b13188", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11577", + "@id": "_:b13197", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", "result": { - "@id": "_:b25261", + "@id": "_:b22439", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr35-out.nq", + "title": "Ignores a non-keyword term starting with '@' (with @vocab)", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr35-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2280", + "@id": "_:b3540", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c001-out.nq", - "title": "adding new term", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b2289", + "@id": "_:b3549", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "result": { - "@id": "_:b15392", + "@id": "_:b18292", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2287", + "@id": "_:b3546", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19966", + "@id": "_:b18289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2281", + "@id": "_:b3538", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2998", + "@id": "_:b3539", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2278", + "@id": "_:b3545", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2279", + "@id": "_:b18288", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2282", + "@id": "_:b3541", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "result": { - "@id": "_:b12211", + "@id": "_:b7704", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2284", + "@id": "_:b3544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22479", + "@id": "_:b15982", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2288", + "@id": "_:b3548", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15276", + "@id": "_:b18291", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2286", + "@id": "_:b3547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b26617", + "@id": "_:b18290", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2283", + "@id": "_:b3543", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "result": { - "@id": "_:b14253", + "@id": "_:b18287", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2285", + "@id": "_:b3542", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", "result": { - "@id": "_:b23782", + "@id": "_:b17334", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr36-out.nq", + "title": "Ignores a term mapping to a value in the form of a keyword.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr36-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21004", + "@id": "_:b3594", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c002-out.nq", - "title": "overriding a term", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b21010", + "@id": "_:b3596", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "result": { - "@id": "_:b24536", + "@id": "_:b13770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21007", + "@id": "_:b3595", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21790", + "@id": "_:b11434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21014", + "@id": "_:b3603", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24538", + "@id": "_:b4677", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21011", + "@id": "_:b3602", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20317", + "@id": "_:b10917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21012", + "@id": "_:b3601", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "result": { - "@id": "_:b24537", + "@id": "_:b26766", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21013", + "@id": "_:b3598", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20426", + "@id": "_:b23893", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21006", + "@id": "_:b3592", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24169", + "@id": "_:b3593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21005", + "@id": "_:b3597", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b22985", + "@id": "_:b20194", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b21008", + "@id": "_:b3599", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "result": { - "@id": "_:b24535", + "@id": "_:b26307", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21009", + "@id": "_:b3600", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", "result": { - "@id": "_:b17731", + "@id": "_:b14468", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr37-out.nq", + "title": "Ignores a term mapping to a value in the form of a keyword (with @vocab).", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr37-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13624", + "@id": "_:b9290", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c003-out.nq", - "title": "property and value with different terms mapping to the same expanded property", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b13626", + "@id": "_:b9296", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "result": { - "@id": "_:b16375", + "@id": "_:b26261", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13625", + "@id": "_:b9295", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14929", + "@id": "_:b26546", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13631", + "@id": "_:b9292", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18053", + "@id": "_:b19661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13627", + "@id": "_:b9294", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18050", + "@id": "_:b24957", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13630", + "@id": "_:b9293", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "result": { - "@id": "_:b18052", + "@id": "_:b22670", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13628", + "@id": "_:b9291", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18051", + "@id": "_:b11574", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13633", + "@id": "_:b9299", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18055", + "@id": "_:b24712", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13622", + "@id": "_:b9288", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b13623", + "@id": "_:b9289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13629", + "@id": "_:b9298", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "result": { - "@id": "_:b16704", + "@id": "_:b25245", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13632", + "@id": "_:b9297", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", "result": { - "@id": "_:b18054", + "@id": "_:b19175", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr38-out.nq", + "title": "Ignores a term mapping to a value in the form of a keyword (@reverse).", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr38-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3477", + "@id": "_:b7821", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c004-out.nq", - "title": "deep @context affects nested nodes", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b3483", + "@id": "_:b7830", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "result": { - "@id": "_:b6055", + "@id": "_:b21283", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3482", + "@id": "_:b7829", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6054", + "@id": "_:b21282", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3479", + "@id": "_:b7824", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6051", + "@id": "_:b21278", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3486", + "@id": "_:b7827", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6058", + "@id": "_:b21280", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3478", + "@id": "_:b7823", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "result": { - "@id": "_:b6050", + "@id": "_:b19331", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3484", + "@id": "_:b7819", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6056", + "@id": "_:b7820", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3475", + "@id": "_:b7825", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3476", + "@id": "_:b1965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3481", + "@id": "_:b7828", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b6053", + "@id": "_:b21281", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3485", + "@id": "_:b7826", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "result": { - "@id": "_:b6057", + "@id": "_:b21279", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3480", + "@id": "_:b7822", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", "result": { - "@id": "_:b6052", + "@id": "_:b15049", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr39-out.nq", + "title": "Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab).", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr39-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14442", + "@id": "_:b19046", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c005-out.nq", - "title": "scoped context layers on intemediate contexts", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b14446", + "@id": "_:b19049", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "result": { - "@id": "_:b19022", + "@id": "_:b21912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14449", + "@id": "_:b19051", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10378", + "@id": "_:b18733", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14448", + "@id": "_:b19047", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18528", + "@id": "_:b20781", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14445", + "@id": "_:b19056", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19021", + "@id": "_:b18547", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14450", + "@id": "_:b19054", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "result": { - "@id": "_:b19023", + "@id": "_:b21916", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14447", + "@id": "_:b19050", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18474", + "@id": "_:b21913", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14443", + "@id": "_:b19055", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17801", + "@id": "_:b19078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14451", + "@id": "_:b19053", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b19024", + "@id": "_:b21915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14444", + "@id": "_:b19048", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "result": { - "@id": "_:b19020", + "@id": "_:b21911", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14440", + "@id": "_:b19052", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", "result": { - "@id": "_:b14441", + "@id": "_:b21914", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr40-out.nq", + "title": "Protected terms and property-scoped contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr40-in.jsonld", + "rdfs:comment": "Check overriding of protected term from property-scoped context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17602", + "@id": "_:b14862", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c006-out.nq", - "title": "adding new term", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b17606", + "@id": "_:b14869", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "result": { - "@id": "_:b24333", + "@id": "_:b18947", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17604", + "@id": "_:b14864", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23133", + "@id": "_:b20885", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17608", + "@id": "_:b14863", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24326", + "@id": "_:b18313", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17607", + "@id": "_:b14870", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26200", + "@id": "_:b20724", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17609", + "@id": "_:b14865", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "result": { - "@id": "_:b25978", + "@id": "_:b24876", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17600", + "@id": "_:b14860", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17601", + "@id": "_:b14861", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17605", + "@id": "_:b14868", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23889", + "@id": "_:b18355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17610", + "@id": "_:b14866", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b26201", + "@id": "_:b20252", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17603", + "@id": "_:b14867", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "result": { - "@id": "_:b16641", + "@id": "_:b19236", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17611", + "@id": "_:b14871", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", "result": { - "@id": "_:b23962", + "@id": "_:b23290", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/rt01-out.nq", + "title": "Representing numbers >= 1e21", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/rt01-in.jsonld", + "rdfs:comment": "numbers with no fractions but that are >= 1e21 are represented as xsd:double" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15387", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b5747", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c007-out.nq", - "title": "overriding a term", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b15758", + "@id": "_:b5754", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "result": { - "@id": "_:b5433", + "@id": "_:b9402", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15755", + "@id": "_:b5751", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15756", + "@id": "_:b9399", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15757", + "@id": "_:b5753", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18088", + "@id": "_:b9401", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15759", + "@id": "_:b5750", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20093", + "@id": "_:b9398", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15762", + "@id": "_:b5745", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "result": { - "@id": "_:b24418", + "@id": "_:b5746", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15765", + "@id": "_:b5752", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14895", + "@id": "_:b9400", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15763", + "@id": "_:b5748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25372", + "@id": "_:b9396", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15764", + "@id": "_:b5755", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b26621", + "@id": "_:b9403", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15761", + "@id": "_:b5756", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "result": { - "@id": "_:b24350", + "@id": "_:b9404", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15760", + "@id": "_:b5749", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", "result": { - "@id": "_:b23132", + "@id": "_:b9397", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context entry", + "title": "@import is invalid in 1.0.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so01-in.jsonld", + "rdfs:comment": "@import is invalid in 1.0." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8152", + "@id": "_:b4766", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c008-out.nq", - "title": "alias of @type", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b8156", + "@id": "_:b4774", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "result": { - "@id": "_:b19068", + "@id": "_:b19284", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8153", + "@id": "_:b4769", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12026", + "@id": "_:b7045", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8160", + "@id": "_:b4773", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12513", + "@id": "_:b5161", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8150", + "@id": "_:b4764", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8151", + "@id": "_:b4765", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8157", + "@id": "_:b4770", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "result": { - "@id": "_:b19069", + "@id": "_:b21051", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8158", + "@id": "_:b4775", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19070", + "@id": "_:b26672", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8159", + "@id": "_:b4772", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19071", + "@id": "_:b26262", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8154", + "@id": "_:b4771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b13634", + "@id": "_:b25957", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8155", + "@id": "_:b4767", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "result": { - "@id": "_:b9839", + "@id": "_:b892", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8161", + "@id": "_:b4768", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", "result": { - "@id": "_:b19072", + "@id": "_:b21052", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @import value", + "title": "@import must be a string", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so02-in.jsonld", + "rdfs:comment": "@import must be a string." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16152", + "@id": "_:b6850", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c009-out.nq", - "title": "deep @type-scoped @context does NOT affect nested nodes", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b16161", + "@id": "_:b6856", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "result": { - "@id": "_:b21229", + "@id": "_:b19866", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16158", + "@id": "_:b6854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21228", + "@id": "_:b24005", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16154", + "@id": "_:b6852", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18400", + "@id": "_:b21356", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16150", + "@id": "_:b6858", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16151", + "@id": "_:b25462", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16155", + "@id": "_:b6857", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "result": { - "@id": "_:b21227", + "@id": "_:b23540", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16153", + "@id": "_:b6853", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4615", + "@id": "_:b23661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16159", + "@id": "_:b6855", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17912", + "@id": "_:b26562", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16160", + "@id": "_:b6859", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b18692", + "@id": "_:b10231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16157", + "@id": "_:b6851", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "result": { - "@id": "_:b13430", + "@id": "_:b18863", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16156", + "@id": "_:b6848", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", "result": { - "@id": "_:b12064", + "@id": "_:b6849", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context entry", + "title": "@import overflow", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so03-in.jsonld", + "rdfs:comment": "Processors must detect source contexts that include @import." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9949", + "@id": "_:b1968", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c010-out.nq", - "title": "scoped context layers on intemediate contexts", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b9953", + "@id": "_:b1975", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "result": { - "@id": "_:b13580", + "@id": "_:b12307", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9954", + "@id": "_:b1972", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18123", + "@id": "_:b25452", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9950", + "@id": "_:b1974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14993", + "@id": "_:b26902", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9955", + "@id": "_:b1976", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18124", + "@id": "_:b17880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9957", + "@id": "_:b1970", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "result": { - "@id": "_:b18125", + "@id": "_:b21421", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9956", + "@id": "_:b1971", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12871", + "@id": "_:b25266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9958", + "@id": "_:b1977", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18126", + "@id": "_:b26648", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9952", + "@id": "_:b1973", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b18122", + "@id": "_:b21082", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9951", + "@id": "_:b1969", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "result": { - "@id": "_:b16410", + "@id": "_:b18460", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9947", + "@id": "_:b1966", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", "result": { - "@id": "_:b9948", + "@id": "_:b1967", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so05-out.nq", + "title": "@propagate: true on type-scoped context with @import", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so05-in.jsonld", + "rdfs:comment": "type-scoped context with @propagate: true survive node-objects (with @import)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9004", + "@id": "_:b6901", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c011-out.nq", - "title": "orders @type terms when applying scoped contexts", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b9011", + "@id": "_:b6903", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "result": { - "@id": "_:b26136", + "@id": "_:b18333", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9009", + "@id": "_:b6904", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20346", + "@id": "_:b23680", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9010", + "@id": "_:b6905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8095", + "@id": "_:b23987", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9008", + "@id": "_:b6899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1428", + "@id": "_:b6900", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9002", + "@id": "_:b6908", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "result": { - "@id": "_:b9003", + "@id": "_:b24676", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9012", + "@id": "_:b6902", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26137", + "@id": "_:b14810", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9007", + "@id": "_:b6906", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21315", + "@id": "_:b24386", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9005", + "@id": "_:b6907", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b14880", + "@id": "_:b12224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9013", + "@id": "_:b6910", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "result": { - "@id": "_:b25863", + "@id": "_:b23854", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9006", + "@id": "_:b6909", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", "result": { - "@id": "_:b18244", + "@id": "_:b14206", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so06-out.nq", + "title": "@propagate: false on property-scoped context with @import", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so06-in.jsonld", + "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects (with @import)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14325", + "@id": "_:b19711", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c012-out.nq", - "title": "deep property-term scoped @context in @type-scoped @context affects nested nodes", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b14331", + "@id": "_:b19716", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "result": { - "@id": "_:b15564", + "@id": "_:b25770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14323", + "@id": "_:b19718", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14324", + "@id": "_:b19832", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14328", + "@id": "_:b19712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15561", + "@id": "_:b23379", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14327", + "@id": "_:b19709", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15560", + "@id": "_:b19710", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14333", + "@id": "_:b19717", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "result": { - "@id": "_:b15566", + "@id": "_:b19396", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14332", + "@id": "_:b19720", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15565", + "@id": "_:b25771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14329", + "@id": "_:b19719", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15562", + "@id": "_:b25200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14330", + "@id": "_:b19713", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b15563", + "@id": "_:b7350", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14326", + "@id": "_:b19715", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "result": { - "@id": "_:b15559", + "@id": "_:b20362", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14334", + "@id": "_:b19714", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", "result": { - "@id": "_:b15567", + "@id": "_:b23887", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protect all terms in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so07-in.jsonld", + "rdfs:comment": "A protected context protects all term definitions." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13164", + "@id": "_:b10421", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c013-out.nq", - "title": "type maps use scoped context from type index and not scoped context from containing", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b13166", + "@id": "_:b15618", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "result": { - "@id": "_:b15355", + "@id": "_:b26430", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13168", + "@id": "_:b15617", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15357", + "@id": "_:b26903", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13171", + "@id": "_:b15615", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15359", + "@id": "_:b24638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13174", + "@id": "_:b15612", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15362", + "@id": "_:b1859", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13170", + "@id": "_:b15620", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "result": { - "@id": "_:b7528", + "@id": "_:b26209", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13169", + "@id": "_:b15619", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15358", + "@id": "_:b27030", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13167", + "@id": "_:b15614", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15356", + "@id": "_:b23363", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13172", + "@id": "_:b15610", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b15360", + "@id": "_:b15611", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13165", + "@id": "_:b15616", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "result": { - "@id": "_:b15354", + "@id": "_:b24424", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13173", + "@id": "_:b15613", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", "result": { - "@id": "_:b15361", + "@id": "_:b20450", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so08-out.nq", + "title": "Override term defined in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so08-in.jsonld", + "rdfs:comment": "The containing context is merged into the source context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19816", + "@id": "_:b18689", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c014-out.nq", - "title": "type-scoped context nullification", - "rdfs:comment": "type-scoped context nullification", "assertions": [ { - "@id": "_:b19817", + "@id": "_:b18691", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "result": { - "@id": "_:b2484", + "@id": "_:b10217", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19818", + "@id": "_:b18690", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22452", + "@id": "_:b24521", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19820", + "@id": "_:b18696", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23837", + "@id": "_:b23405", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19821", + "@id": "_:b18695", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25560", + "@id": "_:b24484", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19814", + "@id": "_:b18692", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "result": { - "@id": "_:b19815", + "@id": "_:b10594", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19822", + "@id": "_:b18694", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25561", + "@id": "_:b23579", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19823", + "@id": "_:b18698", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25562", + "@id": "_:b26427", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19819", + "@id": "_:b18693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b23406", + "@id": "_:b25866", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19824", + "@id": "_:b18697", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "result": { - "@id": "_:b21106", + "@id": "_:b26890", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19825", + "@id": "_:b18699", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", "result": { - "@id": "_:b7580", + "@id": "_:b21249", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so09-out.nq", + "title": "Override @vocab defined in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so09-in.jsonld", + "rdfs:comment": "The containing context is merged into the source context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11459", + "@id": "_:b13685", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c015-out.nq", - "title": "type-scoped base", - "rdfs:comment": "type-scoped base", "assertions": [ { - "@id": "_:b11467", + "@id": "_:b13694", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "result": { - "@id": "_:b5351", + "@id": "_:b25248", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11461", + "@id": "_:b13688", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23017", + "@id": "_:b24200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11457", + "@id": "_:b13689", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11458", + "@id": "_:b24516", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11466", + "@id": "_:b13690", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23021", + "@id": "_:b25990", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11468", + "@id": "_:b13693", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "result": { - "@id": "_:b23022", + "@id": "_:b25715", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11460", + "@id": "_:b13692", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21655", + "@id": "_:b18376", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11464", + "@id": "_:b13686", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23019", + "@id": "_:b18767", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11462", + "@id": "_:b13687", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b23018", + "@id": "_:b19066", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11463", + "@id": "_:b13691", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "result": { - "@id": "_:b21769", + "@id": "_:b5175", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11465", + "@id": "_:b13683", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", "result": { - "@id": "_:b23020", + "@id": "_:b13684", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protect terms in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so10-in.jsonld", + "rdfs:comment": "The containing context is merged into the source context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4603", + "@id": "_:b1304", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c016-out.nq", - "title": "type-scoped vocab", - "rdfs:comment": "type-scoped vocab", "assertions": [ { - "@id": "_:b4609", + "@id": "_:b1313", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "result": { - "@id": "_:b23264", + "@id": "_:b15046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4607", + "@id": "_:b1310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23262", + "@id": "_:b24185", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4608", + "@id": "_:b1312", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23263", + "@id": "_:b24187", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4612", + "@id": "_:b1307", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8847", + "@id": "_:b14417", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4605", + "@id": "_:b1302", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "result": { - "@id": "_:b17869", + "@id": "_:b1303", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4604", + "@id": "_:b1305", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8901", + "@id": "_:b20395", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4606", + "@id": "_:b1309", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22425", + "@id": "_:b3966", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4610", + "@id": "_:b1306", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b22686", + "@id": "_:b21886", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4601", + "@id": "_:b1311", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "result": { - "@id": "_:b4602", + "@id": "_:b24186", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4611", + "@id": "_:b1308", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", "result": { - "@id": "_:b23008", + "@id": "_:b1522", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so11-out.nq", + "title": "Override protected terms in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so11-in.jsonld", + "rdfs:comment": "The containing context is merged into the source context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12470", + "@id": "_:b1579", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c017-out.nq", - "title": "multiple type-scoped contexts are properly reverted", - "rdfs:comment": "multiple type-scoped contexts are property reverted", "assertions": [ { - "@id": "_:b12474", + "@id": "_:b1588", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "result": { - "@id": "_:b23159", + "@id": "_:b11915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12472", + "@id": "_:b1583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19375", + "@id": "_:b24968", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12476", + "@id": "_:b1585", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25991", + "@id": "_:b26886", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12478", + "@id": "_:b1580", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26596", + "@id": "_:b14098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12473", + "@id": "_:b1581", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "result": { - "@id": "_:b22571", + "@id": "_:b16338", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12468", + "@id": "_:b1584", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12469", + "@id": "_:b25594", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12475", + "@id": "_:b1586", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12081", + "@id": "_:b13823", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12479", + "@id": "_:b1577", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b26104", + "@id": "_:b1578", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12477", + "@id": "_:b1582", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "result": { - "@id": "_:b21101", + "@id": "_:b24553", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12471", + "@id": "_:b1587", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", "result": { - "@id": "_:b14437", + "@id": "_:b24845", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context entry", + "title": "@import may not be used in an imported context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so12-in.jsonld", + "rdfs:comment": "@import only valid within a term definition." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2388", + "@id": "_:b5362", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c018-out.nq", - "title": "multiple type-scoped types resolved against previous context", - "rdfs:comment": "multiple type-scoped types resolved against previous context", "assertions": [ { - "@id": "_:b2389", + "@id": "_:b5367", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "result": { - "@id": "_:b13594", + "@id": "_:b5377", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2396", + "@id": "_:b5371", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19856", + "@id": "_:b5381", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2386", + "@id": "_:b5363", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2387", + "@id": "_:b5373", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2390", + "@id": "_:b5366", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19425", + "@id": "_:b5376", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2392", + "@id": "_:b5372", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "result": { - "@id": "_:b24368", + "@id": "_:b5382", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2395", + "@id": "_:b5370", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26529", + "@id": "_:b5380", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2394", + "@id": "_:b5365", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26082", + "@id": "_:b5375", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2391", + "@id": "_:b5369", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b21415", + "@id": "_:b5379", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2397", + "@id": "_:b5364", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "result": { - "@id": "_:b26503", + "@id": "_:b5374", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2393", + "@id": "_:b5368", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", "result": { - "@id": "_:b14454", + "@id": "_:b5378", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid remote context", + "title": "@import can only reference a single context", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so13-in.jsonld", + "rdfs:comment": "@import can only reference a single context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11092", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b20274", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c019-out.nq", - "title": "type-scoped context with multiple property scoped terms", - "rdfs:comment": "type-scoped context with multiple property scoped terms", "assertions": [ { - "@id": "_:b11099", + "@id": "_:b22895", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "result": { - "@id": "_:b16148", + "@id": "_:b10589", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11100", + "@id": "_:b22901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26856", + "@id": "_:b24437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11097", + "@id": "_:b22899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24404", + "@id": "_:b10050", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11096", + "@id": "_:b22897", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24573", + "@id": "_:b20646", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11098", + "@id": "_:b22896", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "result": { - "@id": "_:b26560", + "@id": "_:b25099", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11102", + "@id": "_:b22898", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b27023", + "@id": "_:b25130", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11094", + "@id": "_:b22894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19927", + "@id": "_:b18111", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11101", + "@id": "_:b22903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b26223", + "@id": "_:b21951", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11095", + "@id": "_:b22900", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "result": { - "@id": "_:b22122", + "@id": "_:b20139", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11093", + "@id": "_:b22902", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", "result": { - "@id": "_:b14944", + "@id": "_:b11504", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "@type: @none is illegal in 1.0.", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/tn01-in.jsonld", + "rdfs:comment": "@type: @none is illegal in json-ld-1.0." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12674", + "@id": "_:b15929", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c020-out.nq", - "title": "type-scoped value", - "rdfs:comment": "type-scoped value", "assertions": [ { - "@id": "_:b12676", + "@id": "_:b18013", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "result": { - "@id": "_:b22749", + "@id": "_:b18014", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12675", + "@id": "_:b18016", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21436", + "@id": "_:b22430", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12677", + "@id": "_:b18021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24858", + "@id": "_:b17180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12683", + "@id": "_:b18020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24736", + "@id": "_:b26498", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12680", + "@id": "_:b18018", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "result": { - "@id": "_:b24812", + "@id": "_:b23414", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12681", + "@id": "_:b18015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b27025", + "@id": "_:b18193", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12678", + "@id": "_:b18022", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26716", + "@id": "_:b18567", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12672", + "@id": "_:b18017", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b12673", + "@id": "_:b21594", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12679", + "@id": "_:b18019", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "result": { - "@id": "_:b24883", + "@id": "_:b24209", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12682", + "@id": "_:b18023", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", "result": { - "@id": "_:b18614", + "@id": "_:b20822", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/tn02-out.nq", + "title": "@type: @none expands strings as value objects", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/tn02-in.jsonld", + "rdfs:comment": "@type: @none leaves inputs other than strings alone" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8097", + "@id": "_:b8095", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c021-out.nq", - "title": "type-scoped value mix", - "rdfs:comment": "type-scoped value mix", "assertions": [ { - "@id": "_:b8102", + "@id": "_:b8104", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "result": { - "@id": "_:b20307", + "@id": "_:b23239", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8104", + "@id": "_:b8102", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18655", + "@id": "_:b26505", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8098", + "@id": "_:b8100", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11652", + "@id": "_:b20301", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8107", + "@id": "_:b8096", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22605", + "@id": "_:b15473", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8099", + "@id": "_:b8097", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "result": { - "@id": "_:b14801", + "@id": "_:b22963", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8103", + "@id": "_:b8099", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22604", + "@id": "_:b22710", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8106", + "@id": "_:b8103", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18299", + "@id": "_:b24986", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8101", + "@id": "_:b8098", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b22463", + "@id": "_:b24311", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8105", + "@id": "_:b8093", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "result": { - "@id": "_:b16841", + "@id": "_:b8094", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8100", + "@id": "_:b8101", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", "result": { - "@id": "_:b21476", + "@id": "_:b25747", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf01-out.nq", + "title": "Triples including invalid subject IRIs are rejected", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf01-in.jsonld", + "rdfs:comment": "ToRdf emits only well-formed statements." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2620", + "@id": "_:b5871", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c022-out.nq", - "title": "type-scoped property-scoped contexts including @type:@vocab", - "rdfs:comment": "type-scoped property-scoped contexts including @type:@vocab", "assertions": [ { - "@id": "_:b2625", + "@id": "_:b5874", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "result": { - "@id": "_:b2635", + "@id": "_:b5884", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2626", + "@id": "_:b5878", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2636", + "@id": "_:b5888", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2627", + "@id": "_:b5876", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2637", + "@id": "_:b5886", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2623", + "@id": "_:b5879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2633", + "@id": "_:b5889", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2624", + "@id": "_:b5880", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "result": { - "@id": "_:b2634", + "@id": "_:b5890", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2630", + "@id": "_:b5875", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2640", + "@id": "_:b5885", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2628", + "@id": "_:b5881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2638", + "@id": "_:b5891", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2629", + "@id": "_:b5872", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b2639", + "@id": "_:b5882", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2622", + "@id": "_:b5877", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "result": { - "@id": "_:b2632", + "@id": "_:b5887", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2621", + "@id": "_:b5873", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", "result": { - "@id": "_:b2631", + "@id": "_:b5883", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf02-out.nq", + "title": "Triples including invalid predicate IRIs are rejected", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf02-in.jsonld", + "rdfs:comment": "ToRdf emits only well-formed statements." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4183", + "@id": "_:b11817", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c023-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c023-out.nq", - "title": "composed type-scoped property-scoped contexts including @type:@vocab", - "rdfs:comment": "composed type-scoped property-scoped contexts including @type:@vocab", "assertions": [ { - "@id": "_:b4189", + "@id": "_:b11820", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "result": { - "@id": "_:b25865", + "@id": "_:b21388", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4192", + "@id": "_:b11822", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8630", + "@id": "_:b17670", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4191", + "@id": "_:b11821", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26456", + "@id": "_:b26579", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4190", + "@id": "_:b11826", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26455", + "@id": "_:b25869", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4188", + "@id": "_:b11823", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "result": { - "@id": "_:b25534", + "@id": "_:b26063", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4186", + "@id": "_:b11824", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3814", + "@id": "_:b22437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4185", + "@id": "_:b11818", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18548", + "@id": "_:b4082", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4187", + "@id": "_:b11819", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b7365", + "@id": "_:b25434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4184", + "@id": "_:b11815", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "result": { - "@id": "_:b14161", + "@id": "_:b11816", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4181", + "@id": "_:b11825", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", "result": { - "@id": "_:b4182", + "@id": "_:b13088", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf03-out.nq", + "title": "Triples including invalid object IRIs are rejected", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf03-in.jsonld", + "rdfs:comment": "ToRdf emits only well-formed statements." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13225", + "@id": "_:b808", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c024-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c024-out.nq", - "title": "type-scoped + property-scoped + values evaluates against previous context", - "rdfs:comment": "type-scoped + property-scoped + values evaluates against previous context", "assertions": [ { - "@id": "_:b16414", + "@id": "_:b806", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "result": { - "@id": "_:b16423", + "@id": "_:b807", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16411", + "@id": "_:b809", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16421", + "@id": "_:b3730", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16418", + "@id": "_:b816", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16427", + "@id": "_:b3793", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16420", + "@id": "_:b812", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16429", + "@id": "_:b22795", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16413", + "@id": "_:b813", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "result": { - "@id": "_:b16422", + "@id": "_:b24290", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16412", + "@id": "_:b814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5023", + "@id": "_:b22979", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16419", + "@id": "_:b810", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16428", + "@id": "_:b15183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16417", + "@id": "_:b811", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b16426", + "@id": "_:b4611", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b16416", + "@id": "_:b817", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "result": { - "@id": "_:b16425", + "@id": "_:b22265", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16415", + "@id": "_:b815", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", "result": { - "@id": "_:b16424", + "@id": "_:b21523", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf04-out.nq", + "title": "Triples including invalid type IRIs are rejected", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf04-in.jsonld", + "rdfs:comment": "ToRdf emits only well-formed statements." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6810", + "@id": "_:b13867", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c025-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c025-out.nq", - "title": "type-scoped + graph container", - "rdfs:comment": "type-scoped + graph container", "assertions": [ { - "@id": "_:b6815", + "@id": "_:b13870", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "result": { - "@id": "_:b23376", + "@id": "_:b21107", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6808", + "@id": "_:b13871", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6809", + "@id": "_:b15566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6816", + "@id": "_:b13872", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "result": { - "@id": "_:b26725", + "@id": "_:b26489", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b6811", + "@id": "_:b13868", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16195", + "@id": "_:b15182", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6818", + "@id": "_:b13873", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "result": { - "@id": "_:b20963", + "@id": "_:b26254", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6813", + "@id": "_:b13874", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21394", + "@id": "_:b22133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6814", + "@id": "_:b13875", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22987", + "@id": "_:b23464", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6817", + "@id": "_:b13876", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b27010", + "@id": "_:b26570", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6819", + "@id": "_:b13869", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "result": { - "@id": "_:b21526", + "@id": "_:b15912", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6812", + "@id": "_:b13865", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", "result": { - "@id": "_:b20812", + "@id": "_:b13866", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf05-out.nq", + "title": "Triples including invalid language tags are rejected", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf05-in.jsonld", + "rdfs:comment": "ToRdf emits only well-formed statements." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", + "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5304", + "@id": "_:b3647", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c026-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c026-out.nq", - "title": "@propagate: true on type-scoped context", - "rdfs:comment": "type-scoped context with @propagate: true survive node-objects", "assertions": [ { - "@id": "_:b5308", + "@id": "_:b3655", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "result": { - "@id": "_:b18115", + "@id": "_:b25547", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5310", + "@id": "_:b3648", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18117", + "@id": "_:b15503", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5306", + "@id": "_:b3651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17018", + "@id": "_:b17192", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5309", + "@id": "_:b3645", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18116", + "@id": "_:b3646", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5305", + "@id": "_:b3656", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "result": { - "@id": "_:b18091", + "@id": "_:b2539", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5307", + "@id": "_:b3650", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18114", + "@id": "_:b24570", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5313", + "@id": "_:b3649", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18120", + "@id": "_:b23241", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5311", + "@id": "_:b3652", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", "result": { - "@id": "_:b18118", + "@id": "_:b25545", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5312", + "@id": "_:b3653", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "result": { - "@id": "_:b18119", + "@id": "_:b25546", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5302", + "@id": "_:b3654", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", "result": { - "@id": "_:b5303", + "@id": "_:b18510", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - }, + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf07-out.nq", + "title": "Triples including invalid graph name IRIs are rejected", + "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf07-in.jsonld", + "rdfs:comment": "ToRdf emits only well-formed statements." + } + ], + "title": "Transform JSON-LD to RDF", + "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", + "rdfs:comment": "These tests implement the requirements for the JSON-LD [Deserialize JSON-LD to RDF Algorithm](https://www.w3.org/TR/json-ld11-api/#deserialize-json-ld-to-rdf-algorithm)." + }, + { + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest", + "@type": [ + "Report", + "mf:Manifest" + ], + "entries": [ { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17331", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c027-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c027-out.nq", - "title": "@propagate: false on property-scoped context", - "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects", "assertions": [ { - "@id": "_:b17335", + "@id": "_:b2069", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "result": { - "@id": "_:b17343", + "@id": "_:b13335", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17337", + "@id": "_:b2074", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17345", + "@id": "_:b20787", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17333", + "@id": "_:b2072", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13786", + "@id": "_:b20785", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17341", + "@id": "_:b2073", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17349", + "@id": "_:b20786", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17338", + "@id": "_:b2071", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "result": { - "@id": "_:b17346", + "@id": "_:b2865", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17339", + "@id": "_:b2075", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17347", + "@id": "_:b20788", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17340", + "@id": "_:b2070", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17348", + "@id": "_:b14516", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17336", + "@id": "_:b2067", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "result": { - "@id": "_:b17344", + "@id": "_:b2068", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17334", + "@id": "_:b2076", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "result": { - "@id": "_:b17342", + "@id": "_:b20789", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17332", + "@id": "_:b2077", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", "result": { - "@id": "_:b16126", + "@id": "_:b20790", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0001-out.jsonld", + "title": "drop free-floating nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0001-in.jsonld", + "rdfs:comment": "Expand drops unreferenced nodes having only @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3149", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c028-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c028-out.nq", - "title": "@propagate: false on embedded context", - "rdfs:comment": "embedded context with @propagate: false do not survive node-objects", "assertions": [ { - "@id": "_:b3156", + "@id": "_:b1132", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "result": { - "@id": "_:b5770", + "@id": "_:b25391", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3154", + "@id": "_:b1127", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5768", + "@id": "_:b2607", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3152", + "@id": "_:b1130", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5766", + "@id": "_:b25389", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3147", + "@id": "_:b1128", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3148", + "@id": "_:b24337", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3155", + "@id": "_:b1122", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "result": { - "@id": "_:b5769", + "@id": "_:b1123", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3150", + "@id": "_:b1129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5764", + "@id": "_:b22954", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3158", + "@id": "_:b1125", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5772", + "@id": "_:b10858", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3157", + "@id": "_:b1124", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "result": { - "@id": "_:b5771", + "@id": "_:b2315", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3151", + "@id": "_:b1131", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "result": { - "@id": "_:b5765", + "@id": "_:b25390", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3153", + "@id": "_:b1126", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", "result": { - "@id": "_:b5767", + "@id": "_:b20032", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0002-out.jsonld", + "title": "basic", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0002-in.jsonld", + "rdfs:comment": "Expanding terms with different types of values" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2571", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c029-in.jsonld", - "mf:result": "invalid context entry", - "title": "@propagate is invalid in 1.0", - "rdfs:comment": "@propagate is invalid in 1.0", "assertions": [ { - "@id": "_:b2574", + "@id": "_:b349", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "result": { - "@id": "_:b20079", + "@id": "_:b359", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2576", + "@id": "_:b350", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13154", + "@id": "_:b360", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2575", + "@id": "_:b351", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24259", + "@id": "_:b361", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2579", + "@id": "_:b353", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19122", + "@id": "_:b363", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2572", + "@id": "_:b348", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "result": { - "@id": "_:b15792", + "@id": "_:b358", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2569", + "@id": "_:b352", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2570", + "@id": "_:b362", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2580", + "@id": "_:b354", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24672", + "@id": "_:b364", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2573", + "@id": "_:b347", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "result": { - "@id": "_:b3436", + "@id": "_:b357", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2577", + "@id": "_:b345", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "result": { - "@id": "_:b14294", + "@id": "_:b355", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2578", + "@id": "_:b346", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", "result": { - "@id": "_:b23667", + "@id": "_:b356", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0003-out.jsonld", + "title": "drop null and unmapped properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0003-in.jsonld", + "rdfs:comment": "Verifies that null values and unmapped properties are removed from expanded output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9641", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c030-in.jsonld", - "mf:result": "invalid @propagate value", - "title": "@propagate must be boolean valued", - "rdfs:comment": "@propagate must be boolean valued", "assertions": [ { - "@id": "_:b9648", + "@id": "_:b12733", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "result": { - "@id": "_:b18944", + "@id": "_:b26617", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9647", + "@id": "_:b12726", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18943", + "@id": "_:b23389", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9642", + "@id": "_:b12728", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10564", + "@id": "_:b25805", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9650", + "@id": "_:b12730", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2433", + "@id": "_:b15458", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9644", + "@id": "_:b12723", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "result": { - "@id": "_:b18940", + "@id": "_:b12724", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9646", + "@id": "_:b12725", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18942", + "@id": "_:b17500", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9643", + "@id": "_:b12731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14909", + "@id": "_:b26615", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9645", + "@id": "_:b12729", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "result": { - "@id": "_:b18941", + "@id": "_:b26614", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9649", + "@id": "_:b12727", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "result": { - "@id": "_:b18945", + "@id": "_:b13906", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9651", + "@id": "_:b12732", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", "result": { - "@id": "_:b18946", + "@id": "_:b26616", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0004-out.jsonld", + "title": "optimize @set, keep empty arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0004-in.jsonld", + "rdfs:comment": "Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2305", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c031-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c031-out.nq", - "title": "@context resolutions respects relative URLs.", - "rdfs:comment": "URL resolution follows RFC3986", "assertions": [ { - "@id": "_:b2311", + "@id": "_:b951", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "result": { - "@id": "_:b22153", + "@id": "_:b14830", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2307", + "@id": "_:b952", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22800", + "@id": "_:b14831", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2306", + "@id": "_:b943", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6172", + "@id": "_:b944", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2312", + "@id": "_:b949", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20364", + "@id": "_:b14829", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2310", + "@id": "_:b948", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "result": { - "@id": "_:b26833", + "@id": "_:b14828", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2303", + "@id": "_:b946", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2304", + "@id": "_:b14826", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2309", + "@id": "_:b947", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25893", + "@id": "_:b14827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2313", + "@id": "_:b953", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "result": { - "@id": "_:b26834", + "@id": "_:b14832", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2314", + "@id": "_:b950", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "result": { - "@id": "_:b17576", + "@id": "_:b1776", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2308", + "@id": "_:b945", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", "result": { - "@id": "_:b25797", + "@id": "_:b6690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0005-out.jsonld", + "title": "do not expand aliased @id/@type", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0005-in.jsonld", + "rdfs:comment": "If a keyword is aliased, it is not used when expanding" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2645", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c032-in.jsonld", - "mf:result": "invalid scoped context", - "title": "Unused embedded context with error.", - "rdfs:comment": "An embedded context which is never used should still be checked.", "assertions": [ { - "@id": "_:b2651", + "@id": "_:b17340", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "result": { - "@id": "_:b3967", + "@id": "_:b19224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2652", + "@id": "_:b17344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25671", + "@id": "_:b18240", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2650", + "@id": "_:b17346", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26624", + "@id": "_:b25646", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2646", + "@id": "_:b17342", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15766", + "@id": "_:b25643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2654", + "@id": "_:b17347", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "result": { - "@id": "_:b16406", + "@id": "_:b19444", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2647", + "@id": "_:b17338", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23170", + "@id": "_:b17339", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2653", + "@id": "_:b17341", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23731", + "@id": "_:b20551", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2648", + "@id": "_:b17343", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "result": { - "@id": "_:b26207", + "@id": "_:b25644", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2643", + "@id": "_:b17348", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "result": { - "@id": "_:b2644", + "@id": "_:b22111", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2649", + "@id": "_:b17345", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", "result": { - "@id": "_:b25200", + "@id": "_:b25645", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0006-out.jsonld", + "title": "alias keywords", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0006-in.jsonld", + "rdfs:comment": "Aliased keywords expand in resulting document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1181", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c033-in.jsonld", - "mf:result": "invalid scoped context", - "title": "Unused context with an embedded context error.", - "rdfs:comment": "An unused context with an embedded context should still be checked.", "assertions": [ { - "@id": "_:b1186", + "@id": "_:b5604", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "result": { - "@id": "_:b1196", + "@id": "_:b19666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1190", + "@id": "_:b5599", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1200", + "@id": "_:b18989", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1184", + "@id": "_:b5600", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1194", + "@id": "_:b19688", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1191", + "@id": "_:b5598", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1201", + "@id": "_:b19687", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1187", + "@id": "_:b5603", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "result": { - "@id": "_:b1197", + "@id": "_:b18204", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1185", + "@id": "_:b5601", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1195", + "@id": "_:b12529", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1189", + "@id": "_:b5596", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1199", + "@id": "_:b5597", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1188", + "@id": "_:b5605", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "result": { - "@id": "_:b1198", + "@id": "_:b19689", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1183", + "@id": "_:b5602", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "result": { - "@id": "_:b1193", + "@id": "_:b2314", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1182", + "@id": "_:b5606", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", "result": { - "@id": "_:b1192", + "@id": "_:b19690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0007-out.jsonld", + "title": "date type-coercion", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0007-in.jsonld", + "rdfs:comment": "Expand strings to expanded value with @type: xsd:dateTime" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12951", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c034-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c034-out.nq", - "title": "Remote scoped context.", - "rdfs:comment": "Scoped contexts may be externally loaded.", "assertions": [ { - "@id": "_:b12956", + "@id": "_:b8055", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "result": { - "@id": "_:b13728", + "@id": "_:b23541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12957", + "@id": "_:b8047", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13729", + "@id": "_:b19972", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12954", + "@id": "_:b8052", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13727", + "@id": "_:b24886", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12958", + "@id": "_:b8048", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13730", + "@id": "_:b15051", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12959", + "@id": "_:b8054", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "result": { - "@id": "_:b13731", + "@id": "_:b26411", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12949", + "@id": "_:b8045", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12950", + "@id": "_:b8046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12960", + "@id": "_:b8053", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13732", + "@id": "_:b26241", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12955", + "@id": "_:b8051", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "result": { - "@id": "_:b8122", + "@id": "_:b25165", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12952", + "@id": "_:b8049", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "result": { - "@id": "_:b13725", + "@id": "_:b22611", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12953", + "@id": "_:b8050", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", "result": { - "@id": "_:b13726", + "@id": "_:b22874", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0008-out.jsonld", + "title": "@value with @language", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0008-in.jsonld", + "rdfs:comment": "Keep expanded values with @language, drop non-conforming value objects containing just @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5365", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/c035-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/c035-out.nq", - "title": "Term scoping with embedded contexts.", - "rdfs:comment": "Terms should make use of @vocab relative to the scope in which the term was defined.", "assertions": [ { - "@id": "_:b5370", + "@id": "_:b18476", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "result": { - "@id": "_:b26063", + "@id": "_:b2838", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5366", + "@id": "_:b18478", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15413", + "@id": "_:b25440", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5369", + "@id": "_:b18477", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23697", + "@id": "_:b18931", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5367", + "@id": "_:b18480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19073", + "@id": "_:b26612", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5363", + "@id": "_:b18479", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "result": { - "@id": "_:b5364", + "@id": "_:b26611", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5371", + "@id": "_:b18473", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24604", + "@id": "_:b19325", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5372", + "@id": "_:b18481", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24699", + "@id": "_:b26329", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5368", + "@id": "_:b18475", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "result": { - "@id": "_:b21731", + "@id": "_:b23461", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5373", + "@id": "_:b18474", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "result": { - "@id": "_:b26547", + "@id": "_:b21768", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5374", + "@id": "_:b18471", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", "result": { - "@id": "_:b19675", + "@id": "_:b18472", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0009-out.jsonld", + "title": "@graph with terms", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0009-in.jsonld", + "rdfs:comment": "Use of @graph to contain multiple nodes within array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17241", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di01-out.nq", - "title": "Expand string using default and term directions", - "rdfs:comment": "Strings are coerced to have @direction based on default and term direction.", "assertions": [ { - "@id": "_:b17247", + "@id": "_:b18908", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "result": { - "@id": "_:b13706", + "@id": "_:b25259", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17249", + "@id": "_:b18910", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23529", + "@id": "_:b24420", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17239", + "@id": "_:b18905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17240", + "@id": "_:b18906", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17243", + "@id": "_:b18913", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23625", + "@id": "_:b25112", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17248", + "@id": "_:b18907", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "result": { - "@id": "_:b14200", + "@id": "_:b21896", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17245", + "@id": "_:b18911", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25527", + "@id": "_:b26695", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17246", + "@id": "_:b18915", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25817", + "@id": "_:b18352", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17242", + "@id": "_:b18914", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "result": { - "@id": "_:b18765", + "@id": "_:b26526", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17244", + "@id": "_:b18912", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "result": { - "@id": "_:b22394", + "@id": "_:b26696", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17250", + "@id": "_:b18909", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", "result": { - "@id": "_:b26139", + "@id": "_:b25996", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0010-out.jsonld", + "title": "native types", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0010-in.jsonld", + "rdfs:comment": "Expanding native scalar retains native scalar within expanded value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2583", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di02-out.nq", - "title": "Expand string using default and term directions and languages", - "rdfs:comment": "Strings are coerced to have @direction based on default and term direction.", "assertions": [ { - "@id": "_:b2590", + "@id": "_:b19585", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "result": { - "@id": "_:b23343", + "@id": "_:b23744", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2592", + "@id": "_:b19590", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21787", + "@id": "_:b23748", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2584", + "@id": "_:b19583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6865", + "@id": "_:b19861", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2591", + "@id": "_:b19581", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23344", + "@id": "_:b19582", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2581", + "@id": "_:b19586", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "result": { - "@id": "_:b2582", + "@id": "_:b23745", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2587", + "@id": "_:b19587", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21691", + "@id": "_:b23746", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2585", + "@id": "_:b19588", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10897", + "@id": "_:b23669", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2589", + "@id": "_:b19584", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "result": { - "@id": "_:b23342", + "@id": "_:b6286", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2588", + "@id": "_:b19589", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "result": { - "@id": "_:b22825", + "@id": "_:b23747", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2586", + "@id": "_:b19591", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", "result": { - "@id": "_:b14741", + "@id": "_:b16643", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0011-out.jsonld", + "title": "coerced @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0011-in.jsonld", + "rdfs:comment": "A value of a property with @type: @id coercion expands to a node reference" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8459", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di03-out.nq", - "title": "expand list values with @direction", - "rdfs:comment": "List values where the term has @direction are used in expansion.", "assertions": [ { - "@id": "_:b8462", + "@id": "_:b13834", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "result": { - "@id": "_:b15109", + "@id": "_:b24430", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8461", + "@id": "_:b13833", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15108", + "@id": "_:b23585", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8457", + "@id": "_:b13832", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8458", + "@id": "_:b24429", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8466", + "@id": "_:b13831", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15113", + "@id": "_:b24099", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8468", + "@id": "_:b13838", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "result": { - "@id": "_:b15115", + "@id": "_:b24434", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8460", + "@id": "_:b13836", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15107", + "@id": "_:b24432", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8463", + "@id": "_:b13837", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15110", + "@id": "_:b24433", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8464", + "@id": "_:b13835", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "result": { - "@id": "_:b15111", + "@id": "_:b24431", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8465", + "@id": "_:b13829", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "result": { - "@id": "_:b15112", + "@id": "_:b13830", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8467", + "@id": "_:b13839", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", "result": { - "@id": "_:b15114", + "@id": "_:b24435", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0012-out.jsonld", + "title": "@graph with embed", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0012-in.jsonld", + "rdfs:comment": "Use of @graph to contain multiple nodes within array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5763", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di04-out.nq", - "title": "simple language map with term direction", - "rdfs:comment": "Term selection with language maps and @direction.", "assertions": [ { - "@id": "_:b18448", + "@id": "_:b2885", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "result": { - "@id": "_:b20461", + "@id": "_:b13570", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18442", + "@id": "_:b2880", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20456", + "@id": "_:b13565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18440", + "@id": "_:b2883", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18441", + "@id": "_:b13568", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18447", + "@id": "_:b2881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20460", + "@id": "_:b13566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18446", + "@id": "_:b2882", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "result": { - "@id": "_:b20459", + "@id": "_:b13567", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18444", + "@id": "_:b2886", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15831", + "@id": "_:b13571", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18450", + "@id": "_:b2884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20463", + "@id": "_:b13569", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18445", + "@id": "_:b2887", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "result": { - "@id": "_:b20458", + "@id": "_:b13572", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b18449", + "@id": "_:b2878", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "result": { - "@id": "_:b20462", + "@id": "_:b2879", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18443", + "@id": "_:b2888", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", "result": { - "@id": "_:b20457", + "@id": "_:b13573", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0013-out.jsonld", + "title": "expand already expanded", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0013-in.jsonld", + "rdfs:comment": "Expand does not mess up already expanded document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b153", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di05-out.nq", - "title": "simple language mapwith overriding term direction", - "rdfs:comment": "Term selection with language maps and @direction.", "assertions": [ { - "@id": "_:b162", + "@id": "_:b13345", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "result": { - "@id": "_:b172", + "@id": "_:b18664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b161", + "@id": "_:b13337", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b171", + "@id": "_:b13338", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b157", + "@id": "_:b13340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b167", + "@id": "_:b23004", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b156", + "@id": "_:b13342", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b166", + "@id": "_:b23180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b163", + "@id": "_:b13339", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "result": { - "@id": "_:b173", + "@id": "_:b20271", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b154", + "@id": "_:b13346", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b164", + "@id": "_:b23183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b155", + "@id": "_:b13344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b165", + "@id": "_:b23182", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b159", + "@id": "_:b13343", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "result": { - "@id": "_:b169", + "@id": "_:b23181", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b158", + "@id": "_:b13347", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "result": { - "@id": "_:b168", + "@id": "_:b23064", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b160", + "@id": "_:b13341", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", "result": { - "@id": "_:b170", + "@id": "_:b14823", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0014-out.jsonld", + "title": "@set of @value objects with keyword aliases", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0014-in.jsonld", + "rdfs:comment": "Expanding aliased @set and @value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5909", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di06-out.nq", - "title": "simple language mapwith overriding null direction", - "rdfs:comment": "Term selection with language maps and @direction.", "assertions": [ { - "@id": "_:b5912", + "@id": "_:b2712", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "result": { - "@id": "_:b5922", + "@id": "_:b10948", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5911", + "@id": "_:b2705", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5921", + "@id": "_:b15749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5914", + "@id": "_:b2706", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5924", + "@id": "_:b18450", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5917", + "@id": "_:b2709", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5926", + "@id": "_:b20017", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5919", + "@id": "_:b2711", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "result": { - "@id": "_:b5928", + "@id": "_:b19974", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5913", + "@id": "_:b2708", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5923", + "@id": "_:b22681", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5915", + "@id": "_:b2704", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b880", + "@id": "_:b13379", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5916", + "@id": "_:b2710", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "result": { - "@id": "_:b5925", + "@id": "_:b22264", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5910", + "@id": "_:b2707", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "result": { - "@id": "_:b5920", + "@id": "_:b21163", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5918", + "@id": "_:b2702", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", "result": { - "@id": "_:b5927", + "@id": "_:b2703", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0015-out.jsonld", + "title": "collapse set of sets, keep empty lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0015-in.jsonld", + "rdfs:comment": "An array of multiple @set nodes are collapsed into a single array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4957", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di07-out.nq", - "title": "simple language map with mismatching term direction", - "rdfs:comment": "Term selection with language maps and @direction.", "assertions": [ { - "@id": "_:b4963", + "@id": "_:b10401", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "result": { - "@id": "_:b25128", + "@id": "_:b22412", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4958", + "@id": "_:b10406", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21377", + "@id": "_:b23607", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4955", + "@id": "_:b10404", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4956", + "@id": "_:b23102", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4964", + "@id": "_:b10405", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25088", + "@id": "_:b24464", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4962", + "@id": "_:b10407", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "result": { - "@id": "_:b26526", + "@id": "_:b19871", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4959", + "@id": "_:b10402", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22777", + "@id": "_:b24387", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4966", + "@id": "_:b10400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25368", + "@id": "_:b17602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4965", + "@id": "_:b10403", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "result": { - "@id": "_:b21385", + "@id": "_:b7096", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4961", + "@id": "_:b10409", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "result": { - "@id": "_:b23150", + "@id": "_:b19228", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4960", + "@id": "_:b10408", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", "result": { - "@id": "_:b24125", + "@id": "_:b24465", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0016-out.jsonld", + "title": "context reset", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0016-in.jsonld", + "rdfs:comment": "Setting @context to null within an embedded object resets back to initial context state" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4458", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di08-in.jsonld", - "mf:result": "invalid base direction", - "title": "@direction must be one of ltr or rtl", - "rdfs:comment": "Generate an error if @direction has illegal value.", "assertions": [ { - "@id": "_:b4460", + "@id": "_:b9175", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "result": { - "@id": "_:b13719", + "@id": "_:b22594", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4465", + "@id": "_:b9178", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17927", + "@id": "_:b22596", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4467", + "@id": "_:b9179", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17928", + "@id": "_:b11885", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4459", + "@id": "_:b9174", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9122", + "@id": "_:b11946", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4466", + "@id": "_:b9183", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "result": { - "@id": "_:b3751", + "@id": "_:b22599", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4461", + "@id": "_:b9176", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17924", + "@id": "_:b22595", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4463", + "@id": "_:b9180", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9905", + "@id": "_:b22597", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4464", + "@id": "_:b9182", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "result": { - "@id": "_:b17926", + "@id": "_:b21433", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4462", + "@id": "_:b9181", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "result": { - "@id": "_:b17925", + "@id": "_:b22598", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4456", + "@id": "_:b9177", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", "result": { - "@id": "_:b4457", + "@id": "_:b3450", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0017-out.jsonld", + "title": "@graph and @id aliased", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0017-in.jsonld", + "rdfs:comment": "Expanding with @graph and @id aliases" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10259", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di09-out.nq", - "https://w3c.github.io/json-ld-api/tests/vocab#requires": "I18nDatatype", - "title": "rdfDirection: i18n-datatype with direction and no language", - "rdfs:comment": "Generates i18n datatype from literal with direction with option.", "assertions": [ { - "@id": "_:b10262", + "@id": "_:b575", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "result": { - "@id": "_:b21292", + "@id": "_:b2012", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10260", + "@id": "_:b579", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12585", + "@id": "_:b23858", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10264", + "@id": "_:b578", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16576", + "@id": "_:b23041", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10267", + "@id": "_:b580", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22383", + "@id": "_:b24963", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10261", + "@id": "_:b582", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "result": { - "@id": "_:b20811", + "@id": "_:b25745", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10263", + "@id": "_:b576", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22739", + "@id": "_:b1677", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10268", + "@id": "_:b584", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3182", + "@id": "_:b25801", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10257", + "@id": "_:b583", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "result": { - "@id": "_:b10258", + "@id": "_:b26589", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10265", + "@id": "_:b581", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "result": { - "@id": "_:b25864", + "@id": "_:b25781", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10266", + "@id": "_:b577", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", "result": { - "@id": "_:b25629", + "@id": "_:b15949", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0018-out.jsonld", + "title": "override default @language", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0018-in.jsonld", + "rdfs:comment": "override default @language in terms; only language-tag strings" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5556", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di10-out.nq", - "https://w3c.github.io/json-ld-api/tests/vocab#requires": "I18nDatatype", - "title": "rdfDirection: i18n-datatype with direction and language", - "rdfs:comment": "Generates i18n datatype from literal with direction with option.", "assertions": [ { - "@id": "_:b9383", + "@id": "_:b14629", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "result": { - "@id": "_:b24710", + "@id": "_:b9843", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9378", + "@id": "_:b14626", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24515", + "@id": "_:b21520", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9380", + "@id": "_:b14631", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24549", + "@id": "_:b16250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9373", + "@id": "_:b14623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9374", + "@id": "_:b14624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9379", + "@id": "_:b14627", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "result": { - "@id": "_:b24709", + "@id": "_:b26024", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9375", + "@id": "_:b14625", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2932", + "@id": "_:b20204", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9376", + "@id": "_:b14630", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24218", + "@id": "_:b26817", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9377", + "@id": "_:b14633", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "result": { - "@id": "_:b24708", + "@id": "_:b25706", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9381", + "@id": "_:b14628", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "result": { - "@id": "_:b12889", + "@id": "_:b26202", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9382", + "@id": "_:b14632", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", "result": { - "@id": "_:b24033", + "@id": "_:b26550", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0019-out.jsonld", + "title": "remove @value = null", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0019-in.jsonld", + "rdfs:comment": "Expanding a value of null removes the value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7051", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di11-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di11-out.nq", - "https://w3c.github.io/json-ld-api/tests/vocab#requires": "CompoundLiteral", - "title": "rdfDirection: compound-literal with direction and no language", - "rdfs:comment": "Generates i18n datatype from literal with direction with option.", "assertions": [ { - "@id": "_:b7057", + "@id": "_:b8130", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", "result": { - "@id": "_:b17264", + "@id": "_:b8131", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7049", + "@id": "_:b8133", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7050", + "@id": "_:b16875", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7054", + "@id": "_:b8136", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", + "mode": "earl:automatic", "result": { - "@id": "_:b18690", + "@id": "_:b19943", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7052", + "@id": "_:b8138", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/pyld", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", + "mode": "earl:automatic", "result": { - "@id": "_:b2068", + "@id": "_:b24587", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7059", + "@id": "_:b8134", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", "result": { - "@id": "_:b8646", + "@id": "_:b22353", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7058", + "@id": "_:b8139", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17231", + "@id": "_:b23075", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7060", + "@id": "_:b8135", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6314", + "@id": "_:b16236", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7056", + "@id": "_:b8137", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", "result": { - "@id": "_:b20465", + "@id": "_:b25834", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7053", + "@id": "_:b8140", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", "result": { - "@id": "_:b23043", + "@id": "_:b7189", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7055", + "@id": "_:b8132", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", "result": { - "@id": "_:b25017", + "@id": "_:b17622", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0020-out.jsonld", + "title": "do not remove @graph if not at top-level", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0020-in.jsonld", + "rdfs:comment": "@graph used under a node is retained" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3453", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal", - "https://w3c.github.io/json-ld-api/tests/vocab#normative": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/di12-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/di12-out.nq", - "https://w3c.github.io/json-ld-api/tests/vocab#requires": "CompoundLiteral", - "title": "rdfDirection: compound-literal with direction and language", - "rdfs:comment": "Generates compound literal from literal with direction with option.", "assertions": [ { - "@id": "_:b3459", + "@id": "_:b4303", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", "result": { - "@id": "_:b15835", + "@id": "_:b24895", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3451", + "@id": "_:b4304", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3452", + "@id": "_:b20009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3456", + "@id": "_:b4301", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", + "mode": "earl:automatic", "result": { - "@id": "_:b15833", + "@id": "_:b16228", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3458", + "@id": "_:b4309", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/pyld", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", + "mode": "earl:automatic", "result": { - "@id": "_:b15834", + "@id": "_:b26869", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3461", + "@id": "_:b4299", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", "result": { - "@id": "_:b15836", + "@id": "_:b4300", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3460", + "@id": "_:b4306", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4616", + "@id": "_:b26868", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3455", + "@id": "_:b4308", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3133", + "@id": "_:b20211", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3457", + "@id": "_:b4307", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", "result": { - "@id": "_:b9671", + "@id": "_:b21483", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3454", + "@id": "_:b4302", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", "result": { - "@id": "_:b15832", + "@id": "_:b24632", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3462", + "@id": "_:b4305", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", "result": { - "@id": "_:b15837", + "@id": "_:b24839", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0021-out.jsonld", + "title": "do not remove @graph at top-level if not only property", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0021-in.jsonld", + "rdfs:comment": "@graph used at the top level is retained if there are other properties" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e001-out.nq", - "title": "drop free-floating nodes", - "rdfs:comment": "Free-floating nodes do not generate RDF triples (from expand-0001)", "assertions": [ { - "@id": "_:b4117", + "@id": "_:b18217", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "result": { - "@id": "_:b24485", + "@id": "_:b23063", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4113", + "@id": "_:b18220", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24483", + "@id": "_:b26189", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4111", + "@id": "_:b18218", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22839", + "@id": "_:b25442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4108", + "@id": "_:b18223", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4109", + "@id": "_:b20650", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4116", + "@id": "_:b18215", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "result": { - "@id": "_:b23191", + "@id": "_:b19573", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4110", + "@id": "_:b18216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12935", + "@id": "_:b3193", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4114", + "@id": "_:b18222", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24484", + "@id": "_:b20424", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4115", + "@id": "_:b18219", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "result": { - "@id": "_:b16747", + "@id": "_:b25944", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4118", + "@id": "_:b18221", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "result": { - "@id": "_:b24486", + "@id": "_:b12326", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4112", + "@id": "_:b18213", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", "result": { - "@id": "_:b20105", + "@id": "_:b18214", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0022-out.jsonld", + "title": "expand value with default language", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0022-in.jsonld", + "rdfs:comment": "Expanding with a default language applies that language to string values" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e002-out.nq", - "title": "basic", - "rdfs:comment": "Basic RDF conversion (from expand-0002)", "assertions": [ { - "@id": "_:b14707", + "@id": "_:b1570", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "result": { - "@id": "_:b26477", + "@id": "_:b22674", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14703", + "@id": "_:b1569", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23206", + "@id": "_:b14736", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14700", + "@id": "_:b1568", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14701", + "@id": "_:b9407", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14705", + "@id": "_:b1576", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24338", + "@id": "_:b20423", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14704", + "@id": "_:b1571", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "result": { - "@id": "_:b19841", + "@id": "_:b22968", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14710", + "@id": "_:b1575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2851", + "@id": "_:b26170", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14709", + "@id": "_:b1572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2656", + "@id": "_:b26168", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14702", + "@id": "_:b1573", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "result": { - "@id": "_:b17923", + "@id": "_:b26169", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14708", + "@id": "_:b1574", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "result": { - "@id": "_:b3345", + "@id": "_:b9133", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14706", + "@id": "_:b1566", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", "result": { - "@id": "_:b25667", + "@id": "_:b1567", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0023-out.jsonld", + "title": "Expanding list/set with coercion", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0023-in.jsonld", + "rdfs:comment": "Expanding lists and sets with properties having coercion coerces list/set values" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e003-out.nq", - "title": "drop null and unmapped properties", - "rdfs:comment": "Properties mapped to null or which are never mapped are dropped (from expand-0003)", "assertions": [ { - "@id": "_:b9060", + "@id": "_:b557", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "result": { - "@id": "_:b21566", + "@id": "_:b567", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9061", + "@id": "_:b555", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10655", + "@id": "_:b565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9063", + "@id": "_:b563", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22847", + "@id": "_:b573", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9066", + "@id": "_:b558", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25871", + "@id": "_:b568", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9068", + "@id": "_:b556", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "result": { - "@id": "_:b26150", + "@id": "_:b566", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9062", + "@id": "_:b562", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23143", + "@id": "_:b572", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9065", + "@id": "_:b564", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26149", + "@id": "_:b574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9058", + "@id": "_:b561", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "result": { - "@id": "_:b9059", + "@id": "_:b571", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9067", + "@id": "_:b559", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "result": { - "@id": "_:b23517", + "@id": "_:b569", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9064", + "@id": "_:b560", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", "result": { - "@id": "_:b26148", + "@id": "_:b570", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0024-out.jsonld", + "title": "Multiple contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0024-in.jsonld", + "rdfs:comment": "Tests that contexts in an array are merged" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e004-out.nq", - "title": "optimize @set, keep empty arrays", - "rdfs:comment": "RDF version of expand-0004", "assertions": [ { - "@id": "_:b3161", + "@id": "_:b691", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "result": { - "@id": "_:b17737", + "@id": "_:b701", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3168", + "@id": "_:b695", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18831", + "@id": "_:b705", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3165", + "@id": "_:b697", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24823", + "@id": "_:b707", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3162", + "@id": "_:b693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23409", + "@id": "_:b703", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3164", + "@id": "_:b694", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "result": { - "@id": "_:b6984", + "@id": "_:b704", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3159", + "@id": "_:b700", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3160", + "@id": "_:b710", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3169", + "@id": "_:b699", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6085", + "@id": "_:b709", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3167", + "@id": "_:b698", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "result": { - "@id": "_:b23437", + "@id": "_:b708", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3166", + "@id": "_:b692", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "result": { - "@id": "_:b4745", + "@id": "_:b702", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3163", + "@id": "_:b696", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", "result": { - "@id": "_:b24822", + "@id": "_:b706", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0025-out.jsonld", + "title": "Problematic IRI expansion tests", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0025-in.jsonld", + "rdfs:comment": "Expanding different kinds of terms and Compact IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e005-out.nq", - "title": "do not expand aliased @id/@type", - "rdfs:comment": "RDF version of expand-0005", "assertions": [ { - "@id": "_:b5187", + "@id": "_:b12785", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "result": { - "@id": "_:b15483", + "@id": "_:b19845", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5185", + "@id": "_:b12786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21424", + "@id": "_:b20664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5181", + "@id": "_:b12787", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18473", + "@id": "_:b21104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5182", + "@id": "_:b12782", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19346", + "@id": "_:b12783", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5184", + "@id": "_:b12792", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "result": { - "@id": "_:b25921", + "@id": "_:b19854", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5177", + "@id": "_:b12789", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5178", + "@id": "_:b25483", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5186", + "@id": "_:b12784", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25922", + "@id": "_:b18536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5180", + "@id": "_:b12788", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "result": { - "@id": "_:b16041", + "@id": "_:b24066", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5179", + "@id": "_:b12790", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "result": { - "@id": "_:b6312", + "@id": "_:b7948", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5183", + "@id": "_:b12791", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", "result": { - "@id": "_:b22458", + "@id": "_:b12412", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0027-out.jsonld", + "title": "Duplicate values in @list and @set", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0027-in.jsonld", + "rdfs:comment": "Duplicate values in @list and @set are not merged" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e006-out.nq", - "title": "alias keywords", - "rdfs:comment": "RDF version of expand-0006", "assertions": [ { - "@id": "_:b9322", + "@id": "_:b15134", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "result": { - "@id": "_:b16533", + "@id": "_:b15135", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9326", + "@id": "_:b15138", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16537", + "@id": "_:b20765", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9327", + "@id": "_:b15141", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16538", + "@id": "_:b20767", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9325", + "@id": "_:b15139", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16536", + "@id": "_:b11406", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9329", + "@id": "_:b15142", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "result": { - "@id": "_:b14507", + "@id": "_:b20768", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9324", + "@id": "_:b15144", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16535", + "@id": "_:b20769", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9321", + "@id": "_:b15140", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16532", + "@id": "_:b20766", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9328", + "@id": "_:b15143", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "result": { - "@id": "_:b9725", + "@id": "_:b4931", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9323", + "@id": "_:b15136", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "result": { - "@id": "_:b16534", + "@id": "_:b16547", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9319", + "@id": "_:b15137", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", "result": { - "@id": "_:b9320", + "@id": "_:b20764", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0028-out.jsonld", + "title": "Use @vocab in properties and @type but not in @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0028-in.jsonld", + "rdfs:comment": "@vocab is used to compact properties and @type, but is not used for @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e007-out.nq", - "title": "date type-coercion", - "rdfs:comment": "Type-coerced dates generate typed literals (from expand-0007)", "assertions": [ { - "@id": "_:b3049", + "@id": "_:b6721", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "result": { - "@id": "_:b3050", + "@id": "_:b19347", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3053", + "@id": "_:b6719", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20720", + "@id": "_:b24988", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3055", + "@id": "_:b6717", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21289", + "@id": "_:b23298", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3059", + "@id": "_:b6712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19102", + "@id": "_:b6713", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3057", + "@id": "_:b6720", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "result": { - "@id": "_:b24962", + "@id": "_:b24989", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3052", + "@id": "_:b6715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22849", + "@id": "_:b21010", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3056", + "@id": "_:b6722", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26797", + "@id": "_:b24990", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3058", + "@id": "_:b6714", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "result": { - "@id": "_:b24080", + "@id": "_:b19391", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3051", + "@id": "_:b6716", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "result": { - "@id": "_:b19457", + "@id": "_:b22147", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3054", + "@id": "_:b6718", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", "result": { - "@id": "_:b3866", + "@id": "_:b24987", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0029-out.jsonld", + "title": "Relative IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0029-in.jsonld", + "rdfs:comment": "@base is used to compact @id; test with different relative IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e008-out.nq", - "title": "@value with @language", - "rdfs:comment": "RDF version of expand-0008", "assertions": [ { - "@id": "_:b6939", + "@id": "_:b7873", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "result": { - "@id": "_:b22148", + "@id": "_:b25159", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6938", + "@id": "_:b7870", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22147", + "@id": "_:b9540", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6932", + "@id": "_:b7876", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13595", + "@id": "_:b26683", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6933", + "@id": "_:b7872", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22144", + "@id": "_:b24556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6929", + "@id": "_:b7875", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "result": { - "@id": "_:b6930", + "@id": "_:b26468", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6936", + "@id": "_:b7874", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21994", + "@id": "_:b13140", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6931", + "@id": "_:b7878", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12309", + "@id": "_:b24643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6935", + "@id": "_:b7868", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "result": { - "@id": "_:b22145", + "@id": "_:b7869", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6934", + "@id": "_:b7871", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "result": { - "@id": "_:b20682", + "@id": "_:b18610", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6937", + "@id": "_:b7877", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", "result": { - "@id": "_:b22146", + "@id": "_:b26556", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0030-out.jsonld", + "title": "Language maps", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0030-in.jsonld", + "rdfs:comment": "Language Maps expand values to include @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e009-out.nq", - "title": "@graph with terms", - "rdfs:comment": "RDF version of expand-0009", "assertions": [ { - "@id": "_:b2425", + "@id": "_:b4643", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "result": { - "@id": "_:b18079", + "@id": "_:b4644", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2432", + "@id": "_:b4645", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26482", + "@id": "_:b18782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2431", + "@id": "_:b4648", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25022", + "@id": "_:b21271", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2429", + "@id": "_:b4647", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26105", + "@id": "_:b23655", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2422", + "@id": "_:b4653", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "result": { - "@id": "_:b2423", + "@id": "_:b24821", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2428", + "@id": "_:b4649", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21541", + "@id": "_:b25460", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2430", + "@id": "_:b4646", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18539", + "@id": "_:b21747", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2427", + "@id": "_:b4651", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "result": { - "@id": "_:b14336", + "@id": "_:b26744", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2426", + "@id": "_:b4650", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "result": { - "@id": "_:b23729", + "@id": "_:b20623", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2424", + "@id": "_:b4652", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", "result": { - "@id": "_:b14205", + "@id": "_:b26866", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0031-out.jsonld", + "title": "type-coercion of native types", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0031-in.jsonld", + "rdfs:comment": "Expanding native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e010-out.nq", - "title": "native types", - "rdfs:comment": "Native types generate typed literals (from expand-0010)", "assertions": [ { - "@id": "_:b14102", + "@id": "_:b13525", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "result": { - "@id": "_:b20887", + "@id": "_:b13392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14101", + "@id": "_:b13526", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14968", + "@id": "_:b25494", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14105", + "@id": "_:b13528", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25531", + "@id": "_:b18960", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14106", + "@id": "_:b13533", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13076", + "@id": "_:b23790", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14103", + "@id": "_:b13530", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "result": { - "@id": "_:b22115", + "@id": "_:b26776", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14100", + "@id": "_:b13531", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18027", + "@id": "_:b12183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14107", + "@id": "_:b13532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26493", + "@id": "_:b23310", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14099", + "@id": "_:b13524", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "result": { - "@id": "_:b12267", + "@id": "_:b23593", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14097", + "@id": "_:b13529", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "result": { - "@id": "_:b14098", + "@id": "_:b26259", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14104", + "@id": "_:b13527", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", "result": { - "@id": "_:b20914", + "@id": "_:b25673", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0032-out.jsonld", + "title": "Null term and @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0032-in.jsonld", + "rdfs:comment": "Mapping a term to null decouples it from @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e011-out.nq", - "title": "coerced @id", - "rdfs:comment": "RDF version of expand-0011", "assertions": [ { - "@id": "_:b14612", + "@id": "_:b14856", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "result": { - "@id": "_:b18924", + "@id": "_:b21678", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14609", + "@id": "_:b14854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18921", + "@id": "_:b12279", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14613", + "@id": "_:b14853", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4558", + "@id": "_:b5383", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14607", + "@id": "_:b14850", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18919", + "@id": "_:b21953", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14606", + "@id": "_:b14855", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "result": { - "@id": "_:b18918", + "@id": "_:b15262", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14611", + "@id": "_:b14852", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18923", + "@id": "_:b24003", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14610", + "@id": "_:b14858", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18922", + "@id": "_:b18509", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14605", + "@id": "_:b14857", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "result": { - "@id": "_:b1116", + "@id": "_:b26003", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14608", + "@id": "_:b14849", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "result": { - "@id": "_:b18920", + "@id": "_:b15996", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14614", + "@id": "_:b14851", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", "result": { - "@id": "_:b18925", + "@id": "_:b15775", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0033-out.jsonld", + "title": "Using @vocab with with type-coercion", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0033-in.jsonld", + "rdfs:comment": "Verifies that terms can be defined using @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e012-out.nq", - "title": "@graph with embed", - "rdfs:comment": "RDF version of expand-0012", "assertions": [ { - "@id": "_:b16371", + "@id": "_:b5893", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "result": { - "@id": "_:b24976", + "@id": "_:b5903", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16367", + "@id": "_:b5899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22758", + "@id": "_:b5909", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16368", + "@id": "_:b5895", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23496", + "@id": "_:b5905", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16370", + "@id": "_:b5902", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22708", + "@id": "_:b5912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16373", + "@id": "_:b5900", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "result": { - "@id": "_:b25341", + "@id": "_:b5910", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16366", + "@id": "_:b5897", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18452", + "@id": "_:b5907", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16374", + "@id": "_:b5901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16921", + "@id": "_:b5911", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16369", + "@id": "_:b5896", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "result": { - "@id": "_:b24179", + "@id": "_:b5906", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16372", + "@id": "_:b5898", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "result": { - "@id": "_:b23411", + "@id": "_:b5908", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16364", + "@id": "_:b5894", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", "result": { - "@id": "_:b16365", + "@id": "_:b5904", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0034-out.jsonld", + "title": "Multiple properties expanding to the same IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0034-in.jsonld", + "rdfs:comment": "Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e013-out.nq", - "title": "expand already expanded", - "rdfs:comment": "RDF version of expand-0013", "assertions": [ { - "@id": "_:b7843", + "@id": "_:b2628", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "result": { - "@id": "_:b15363", + "@id": "_:b23317", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7836", + "@id": "_:b2626", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14695", + "@id": "_:b20665", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7842", + "@id": "_:b2625", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26922", + "@id": "_:b18641", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7838", + "@id": "_:b2629", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19600", + "@id": "_:b19223", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7837", + "@id": "_:b2623", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "result": { - "@id": "_:b22053", + "@id": "_:b8017", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7834", + "@id": "_:b2621", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7835", + "@id": "_:b2622", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7844", + "@id": "_:b2624", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15396", + "@id": "_:b12150", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7839", + "@id": "_:b2627", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "result": { - "@id": "_:b23506", + "@id": "_:b22866", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7840", + "@id": "_:b2630", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "result": { - "@id": "_:b18767", + "@id": "_:b24426", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7841", + "@id": "_:b2631", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", "result": { - "@id": "_:b11371", + "@id": "_:b21033", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0035-out.jsonld", + "title": "Language maps with @vocab, default language, and colliding property", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0035-in.jsonld", + "rdfs:comment": "Pathological tests of language maps" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e015-out.nq", - "title": "collapse set of sets, keep empty lists", - "rdfs:comment": "RDF version of expand-0015", "assertions": [ { - "@id": "_:b466", + "@id": "_:b6775", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "result": { - "@id": "_:b26842", + "@id": "_:b6776", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b465", + "@id": "_:b6779", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24529", + "@id": "_:b20354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b463", + "@id": "_:b6784", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24240", + "@id": "_:b24405", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b469", + "@id": "_:b6783", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8556", + "@id": "_:b21600", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b470", + "@id": "_:b6777", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "result": { - "@id": "_:b8988", + "@id": "_:b16021", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b462", + "@id": "_:b6778", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15648", + "@id": "_:b21498", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b464", + "@id": "_:b6785", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6668", + "@id": "_:b7666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b461", + "@id": "_:b6780", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "result": { - "@id": "_:b6782", + "@id": "_:b8737", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b468", + "@id": "_:b6781", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "result": { - "@id": "_:b7490", + "@id": "_:b25888", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b467", + "@id": "_:b6782", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", "result": { - "@id": "_:b24457", + "@id": "_:b21774", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0036-out.jsonld", + "title": "Expanding @index", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0036-in.jsonld", + "rdfs:comment": "Expanding index maps for terms defined with @container: @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e016-out.nq", - "title": "context reset", - "rdfs:comment": "RDF version of expand-0016", "assertions": [ { - "@id": "_:b1629", + "@id": "_:b22237", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "result": { - "@id": "_:b25464", + "@id": "_:b24544", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1622", + "@id": "_:b22239", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17745", + "@id": "_:b17054", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1627", + "@id": "_:b22242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25083", + "@id": "_:b25015", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1623", + "@id": "_:b22238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24618", + "@id": "_:b25014", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1624", + "@id": "_:b22241", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "result": { - "@id": "_:b25463", + "@id": "_:b17918", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1620", + "@id": "_:b22240", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1621", + "@id": "_:b19848", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1626", + "@id": "_:b22243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23662", + "@id": "_:b25016", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1628", + "@id": "_:b22244", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "result": { - "@id": "_:b24400", + "@id": "_:b25017", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1625", + "@id": "_:b22245", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "result": { - "@id": "_:b20040", + "@id": "_:b2968", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1630", + "@id": "_:b22235", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", "result": { - "@id": "_:b21791", + "@id": "_:b22236", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0037-out.jsonld", + "title": "Expanding @reverse", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0037-in.jsonld", + "rdfs:comment": "Expanding @reverse keeps @reverse" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e017-out.nq", - "title": "@graph and @id aliased", - "rdfs:comment": "RDF version of expand-0017", "assertions": [ { - "@id": "_:b7516", + "@id": "_:b4912", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "result": { - "@id": "_:b7526", + "@id": "_:b18176", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7512", + "@id": "_:b4911", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7522", + "@id": "_:b18175", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7511", + "@id": "_:b4908", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7521", + "@id": "_:b18172", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7510", + "@id": "_:b4907", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7520", + "@id": "_:b6846", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7517", + "@id": "_:b4909", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "result": { - "@id": "_:b7527", + "@id": "_:b18173", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7509", + "@id": "_:b4915", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7519", + "@id": "_:b18179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7513", + "@id": "_:b4905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7523", + "@id": "_:b4906", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7514", + "@id": "_:b4913", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "result": { - "@id": "_:b7524", + "@id": "_:b18177", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7515", + "@id": "_:b4914", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "result": { - "@id": "_:b7525", + "@id": "_:b18178", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7508", + "@id": "_:b4910", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", "result": { - "@id": "_:b7518", + "@id": "_:b18174", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0039-out.jsonld", + "title": "Using terms in a reverse-maps", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0039-in.jsonld", + "rdfs:comment": "Terms within @reverse are expanded" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e018-out.nq", - "title": "override default @language", - "rdfs:comment": "RDF version of expand-0018", "assertions": [ { - "@id": "_:b15995", + "@id": "_:b12741", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "result": { - "@id": "_:b25441", + "@id": "_:b26129", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15999", + "@id": "_:b12738", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25445", + "@id": "_:b21536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16001", + "@id": "_:b12737", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23141", + "@id": "_:b8325", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15998", + "@id": "_:b12739", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25444", + "@id": "_:b18851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16000", + "@id": "_:b12744", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "result": { - "@id": "_:b22725", + "@id": "_:b19856", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15994", + "@id": "_:b12742", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23211", + "@id": "_:b13083", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15993", + "@id": "_:b12740", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19114", + "@id": "_:b26336", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15996", + "@id": "_:b12734", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "result": { - "@id": "_:b25442", + "@id": "_:b12735", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15992", + "@id": "_:b12736", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "result": { - "@id": "_:b13564", + "@id": "_:b16121", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15997", + "@id": "_:b12743", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", "result": { - "@id": "_:b25443", + "@id": "_:b4724", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0040-out.jsonld", + "title": "language and index expansion on non-objects", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0040-in.jsonld", + "rdfs:comment": "Only invoke language and index map expansion if the value is a JSON object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e019-out.nq", - "title": "remove @value = null", - "rdfs:comment": "RDF version of expand-0019", "assertions": [ { - "@id": "_:b5494", + "@id": "_:b13548", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "result": { - "@id": "_:b21522", + "@id": "_:b26618", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5491", + "@id": "_:b13546", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19035", + "@id": "_:b24117", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5492", + "@id": "_:b13544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25889", + "@id": "_:b20305", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5493", + "@id": "_:b13550", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26130", + "@id": "_:b21199", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5498", + "@id": "_:b13552", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "result": { - "@id": "_:b24499", + "@id": "_:b18456", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5497", + "@id": "_:b13547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24442", + "@id": "_:b23342", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5490", + "@id": "_:b13551", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14187", + "@id": "_:b19833", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5496", + "@id": "_:b13545", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "result": { - "@id": "_:b23696", + "@id": "_:b21647", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5488", + "@id": "_:b13543", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "result": { - "@id": "_:b5489", + "@id": "_:b14820", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5495", + "@id": "_:b13549", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", "result": { - "@id": "_:b23373", + "@id": "_:b24763", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0041-out.jsonld", + "title": "@language: null resets the default language", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0041-in.jsonld" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e020-out.nq", - "title": "do not remove @graph if not at top-level", - "rdfs:comment": "Embedded @graph without @id creates BNode-labeled named graph (from expand-0020)", "assertions": [ { - "@id": "_:b11148", + "@id": "_:b3901", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "result": { - "@id": "_:b20550", + "@id": "_:b25901", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11150", + "@id": "_:b3902", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20823", + "@id": "_:b22709", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11143", + "@id": "_:b3903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11144", + "@id": "_:b26788", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11153", + "@id": "_:b3905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20826", + "@id": "_:b9673", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11149", + "@id": "_:b3899", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "result": { - "@id": "_:b17843", + "@id": "_:b23418", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11145", + "@id": "_:b3896", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12051", + "@id": "_:b3897", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11151", + "@id": "_:b3906", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20824", + "@id": "_:b24826", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11147", + "@id": "_:b3904", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "result": { - "@id": "_:b20822", + "@id": "_:b26789", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11152", + "@id": "_:b3900", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "result": { - "@id": "_:b20825", + "@id": "_:b24972", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11146", + "@id": "_:b3898", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", "result": { - "@id": "_:b20821", + "@id": "_:b21044", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0042-out.jsonld", + "title": "Reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0042-in.jsonld", + "rdfs:comment": "Expanding terms defined as reverse properties uses @reverse in expanded document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e021-out.nq", - "title": "do not remove @graph at top-level if not only property", - "rdfs:comment": "RDF version of expand-0021", "assertions": [ { - "@id": "_:b11600", + "@id": "_:b1450", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "result": { - "@id": "_:b21859", + "@id": "_:b1451", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11601", + "@id": "_:b1459", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23134", + "@id": "_:b13609", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11606", + "@id": "_:b1455", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25946", + "@id": "_:b24466", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11605", + "@id": "_:b1460", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25263", + "@id": "_:b24468", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11603", + "@id": "_:b1458", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "result": { - "@id": "_:b23967", + "@id": "_:b12459", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11607", + "@id": "_:b1452", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14806", + "@id": "_:b17179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11598", + "@id": "_:b1456", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11599", + "@id": "_:b24467", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11604", + "@id": "_:b1453", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "result": { - "@id": "_:b24943", + "@id": "_:b19830", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11602", + "@id": "_:b1457", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "result": { - "@id": "_:b17891", + "@id": "_:b23889", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11608", + "@id": "_:b1454", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", "result": { - "@id": "_:b19047", + "@id": "_:b22696", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0043-out.jsonld", + "title": "Using reverse properties inside a @reverse-container", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0043-in.jsonld", + "rdfs:comment": "Expanding a reverse property within a @reverse undoes both reversals" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e022-out.nq", - "title": "expand value with default language", - "rdfs:comment": "RDF version of expand-0022", "assertions": [ { - "@id": "_:b16078", + "@id": "_:b3336", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "result": { - "@id": "_:b23123", + "@id": "_:b26922", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16074", + "@id": "_:b3333", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9218", + "@id": "_:b23588", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16081", + "@id": "_:b3335", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25046", + "@id": "_:b24606", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16082", + "@id": "_:b3327", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21707", + "@id": "_:b3328", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16072", + "@id": "_:b3332", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "result": { - "@id": "_:b16073", + "@id": "_:b25559", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16080", + "@id": "_:b3331", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25045", + "@id": "_:b24747", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16075", + "@id": "_:b3329", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22967", + "@id": "_:b9867", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16077", + "@id": "_:b3330", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "result": { - "@id": "_:b24492", + "@id": "_:b17842", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16076", + "@id": "_:b3334", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "result": { - "@id": "_:b23355", + "@id": "_:b26633", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16079", + "@id": "_:b3337", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", "result": { - "@id": "_:b25044", + "@id": "_:b26965", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0044-out.jsonld", + "title": "Index maps with language mappings", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0044-in.jsonld", + "rdfs:comment": "Ensure index maps use language mapping" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e023-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e023-out.nq", - "title": "Lists and sets of properties with list/set coercion", - "rdfs:comment": "RDF version of expand-0023", "assertions": [ { - "@id": "_:b13820", + "@id": "_:b725", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "result": { - "@id": "_:b26355", + "@id": "_:b23396", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13824", + "@id": "_:b724", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16316", + "@id": "_:b20830", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13818", + "@id": "_:b729", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17110", + "@id": "_:b26012", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13815", + "@id": "_:b726", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13816", + "@id": "_:b26446", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13821", + "@id": "_:b722", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "result": { - "@id": "_:b25184", + "@id": "_:b15734", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13819", + "@id": "_:b727", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22853", + "@id": "_:b24867", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13822", + "@id": "_:b730", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24761", + "@id": "_:b26447", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13823", + "@id": "_:b721", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "result": { - "@id": "_:b22008", + "@id": "_:b12762", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13825", + "@id": "_:b723", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "result": { - "@id": "_:b22204", + "@id": "_:b19076", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13817", + "@id": "_:b728", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", "result": { - "@id": "_:b24346", + "@id": "_:b19699", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0045-out.jsonld", + "title": "Top-level value objects", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0045-in.jsonld", + "rdfs:comment": "Expanding top-level value objects causes them to be removed" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e024-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e024-out.nq", - "title": "Multiple contexts", - "rdfs:comment": "RDF version of expand-0024", "assertions": [ { - "@id": "_:b12287", + "@id": "_:b494", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "result": { - "@id": "_:b22760", + "@id": "_:b14654", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12283", + "@id": "_:b499", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24935", + "@id": "_:b14659", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12285", + "@id": "_:b493", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25873", + "@id": "_:b14653", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12281", + "@id": "_:b492", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10659", + "@id": "_:b11941", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12290", + "@id": "_:b490", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "result": { - "@id": "_:b27002", + "@id": "_:b14517", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12282", + "@id": "_:b497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23630", + "@id": "_:b14657", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12286", + "@id": "_:b498", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26646", + "@id": "_:b14658", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12288", + "@id": "_:b495", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "result": { - "@id": "_:b22429", + "@id": "_:b14655", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12284", + "@id": "_:b496", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "result": { - "@id": "_:b25552", + "@id": "_:b14656", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12289", + "@id": "_:b491", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", "result": { - "@id": "_:b24919", + "@id": "_:b14652", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0046-out.jsonld", + "title": "Free-floating nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0046-in.jsonld", + "rdfs:comment": "Expanding free-floating nodes causes them to be removed" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e025-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e025-out.nq", - "title": "Problematic IRI expansion tests", - "rdfs:comment": "RDF version of expand-0025", "assertions": [ { - "@id": "_:b16255", + "@id": "_:b19239", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "result": { - "@id": "_:b19314", + "@id": "_:b24928", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16252", + "@id": "_:b19237", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16253", + "@id": "_:b19238", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16256", + "@id": "_:b19247", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13074", + "@id": "_:b9868", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16254", + "@id": "_:b19242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18082", + "@id": "_:b26045", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16261", + "@id": "_:b19241", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "result": { - "@id": "_:b16875", + "@id": "_:b25504", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16258", + "@id": "_:b19243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14873", + "@id": "_:b22074", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16259", + "@id": "_:b19246", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19316", + "@id": "_:b25755", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16260", + "@id": "_:b19245", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "result": { - "@id": "_:b4174", + "@id": "_:b4788", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16262", + "@id": "_:b19244", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "result": { - "@id": "_:b19317", + "@id": "_:b18181", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16257", + "@id": "_:b19240", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", "result": { - "@id": "_:b19315", + "@id": "_:b22514", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0047-out.jsonld", + "title": "Free-floating values in sets and free-floating lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0047-in.jsonld", + "rdfs:comment": "Free-floating values in sets are removed, free-floating lists are removed completely" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e027-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e027-out.nq", - "title": "Keep duplicate values in @list and @set", - "rdfs:comment": "RDF version of expand-0027", "assertions": [ { - "@id": "_:b4824", + "@id": "_:b12498", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "result": { - "@id": "_:b4834", + "@id": "_:b8587", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4822", + "@id": "_:b12495", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4832", + "@id": "_:b26970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4820", + "@id": "_:b12496", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4830", + "@id": "_:b18399", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4828", + "@id": "_:b12492", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4838", + "@id": "_:b14472", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4826", + "@id": "_:b12494", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "result": { - "@id": "_:b4836", + "@id": "_:b25169", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4823", + "@id": "_:b12497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4833", + "@id": "_:b22487", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4821", + "@id": "_:b12493", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4831", + "@id": "_:b13707", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4825", + "@id": "_:b12488", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "result": { - "@id": "_:b4835", + "@id": "_:b12489", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4827", + "@id": "_:b12491", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "result": { - "@id": "_:b4837", + "@id": "_:b18658", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4829", + "@id": "_:b12490", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", "result": { - "@id": "_:b4839", + "@id": "_:b14054", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0048-out.jsonld", + "title": "Terms are ignored in @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0048-in.jsonld", + "rdfs:comment": "Values of @id are not expanded as terms" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e028-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e028-out.nq", - "title": "Use @vocab in properties and @type but not in @id", - "rdfs:comment": "RDF version of expand-0028", "assertions": [ { - "@id": "_:b2333", + "@id": "_:b8028", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "result": { - "@id": "_:b21388", + "@id": "_:b10880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2332", + "@id": "_:b8020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25794", + "@id": "_:b10872", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2329", + "@id": "_:b8018", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12798", + "@id": "_:b8019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2336", + "@id": "_:b8026", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10531", + "@id": "_:b10878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2330", + "@id": "_:b8027", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "result": { - "@id": "_:b20095", + "@id": "_:b10879", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2334", + "@id": "_:b8023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26553", + "@id": "_:b10875", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2327", + "@id": "_:b8021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2328", + "@id": "_:b10873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2335", + "@id": "_:b8022", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "result": { - "@id": "_:b23734", + "@id": "_:b10874", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2331", + "@id": "_:b8025", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "result": { - "@id": "_:b25290", + "@id": "_:b10877", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2337", + "@id": "_:b8024", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", "result": { - "@id": "_:b25624", + "@id": "_:b10876", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0049-out.jsonld", + "title": "String values of reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0049-in.jsonld", + "rdfs:comment": "String values of a reverse property with @type: @id are treated as IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e029-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e029-out.nq", - "title": "Relative IRIs", - "rdfs:comment": "RDF version of expand-0029", "assertions": [ { - "@id": "_:b2248", + "@id": "_:b13326", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://kasei.us/about/#greg", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "result": { - "@id": "_:b22639", + "@id": "_:b17434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2245", + "@id": "_:b13331", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22391", + "@id": "_:b18987", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2247", + "@id": "_:b13333", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22638", + "@id": "_:b4640", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2241", + "@id": "_:b13330", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2242", + "@id": "_:b18986", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2243", + "@id": "_:b13328", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "result": { - "@id": "_:b18329", + "@id": "_:b18985", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2244", + "@id": "_:b13332", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20478", + "@id": "_:b11051", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2250", + "@id": "_:b13327", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3950", + "@id": "_:b18984", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2246", + "@id": "_:b13334", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "result": { - "@id": "_:b22637", + "@id": "_:b18988", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2249", + "@id": "_:b13325", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "result": { - "@id": "_:b12146", + "@id": "_:b9602", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2251", + "@id": "_:b13329", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", "result": { - "@id": "_:b22640", + "@id": "_:b7465", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0050-out.jsonld", + "title": "Term definitions with prefix separate from prefix definitions", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0050-in.jsonld", + "rdfs:comment": "Term definitions using compact IRIs don't inherit the definitions of the prefix" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e030-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e030-out.nq", - "title": "Language maps", - "rdfs:comment": "RDF version of expand-0030", "assertions": [ { - "@id": "_:b7759", + "@id": "_:b8128", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "result": { - "@id": "_:b26600", + "@id": "_:b26774", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7753", + "@id": "_:b8122", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15181", + "@id": "_:b23218", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7760", + "@id": "_:b8121", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23136", + "@id": "_:b22749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7758", + "@id": "_:b8126", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25454", + "@id": "_:b26086", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7752", + "@id": "_:b8118", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "result": { - "@id": "_:b10181", + "@id": "_:b8119", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7757", + "@id": "_:b8125", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20119", + "@id": "_:b25968", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7756", + "@id": "_:b8127", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23846", + "@id": "_:b26884", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7754", + "@id": "_:b8123", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "result": { - "@id": "_:b19626", + "@id": "_:b23949", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7755", + "@id": "_:b8120", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "result": { - "@id": "_:b20815", + "@id": "_:b18113", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7750", + "@id": "_:b8124", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", "result": { - "@id": "_:b7751", + "@id": "_:b25193", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0051-out.jsonld", + "title": "Expansion of keyword aliases in term definitions", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0051-in.jsonld", + "rdfs:comment": "Expanding terms which are keyword aliases" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e031-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e031-out.nq", - "title": "type-coercion of native types", - "rdfs:comment": "RDF version of expand-0031", "assertions": [ { - "@id": "_:b13050", + "@id": "_:b12193", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "result": { - "@id": "_:b20959", + "@id": "_:b19555", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13049", + "@id": "_:b12192", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16321", + "@id": "_:b20171", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13053", + "@id": "_:b12191", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24108", + "@id": "_:b24574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13051", + "@id": "_:b12187", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21461", + "@id": "_:b23651", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13047", + "@id": "_:b12189", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "result": { - "@id": "_:b13048", + "@id": "_:b24573", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13055", + "@id": "_:b12188", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26969", + "@id": "_:b24572", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13052", + "@id": "_:b12194", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23629", + "@id": "_:b10146", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13057", + "@id": "_:b12184", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "result": { - "@id": "_:b21832", + "@id": "_:b12185", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13054", + "@id": "_:b12186", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "result": { - "@id": "_:b21057", + "@id": "_:b16052", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13056", + "@id": "_:b12190", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", "result": { - "@id": "_:b16280", + "@id": "_:b21760", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0052-out.jsonld", + "title": "@vocab-relative IRIs in term definitions", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0052-in.jsonld", + "rdfs:comment": "If @vocab is defined, term definitions are expanded relative to @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e032-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e032-out.nq", - "title": "Mapping a term to null decouples it from @vocab", - "rdfs:comment": "RDF version of expand-0032", "assertions": [ { - "@id": "_:b11076", + "@id": "_:b9578", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "result": { - "@id": "_:b11077", + "@id": "_:b11993", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11083", + "@id": "_:b9581", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21979", + "@id": "_:b26320", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11078", + "@id": "_:b9585", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21974", + "@id": "_:b21423", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11084", + "@id": "_:b9583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21980", + "@id": "_:b20325", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11080", + "@id": "_:b9582", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "result": { - "@id": "_:b21976", + "@id": "_:b26713", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11081", + "@id": "_:b9579", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21977", + "@id": "_:b22398", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11082", + "@id": "_:b9586", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21978", + "@id": "_:b21933", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11079", + "@id": "_:b9584", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "result": { - "@id": "_:b21975", + "@id": "_:b6616", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11086", + "@id": "_:b9580", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "result": { - "@id": "_:b21982", + "@id": "_:b23496", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11085", + "@id": "_:b9576", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", "result": { - "@id": "_:b21981", + "@id": "_:b9577", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0053-out.jsonld", + "title": "Expand absolute IRI with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0053-in.jsonld", + "rdfs:comment": "Expanding values of properties of @type: @vocab does not further expand absolute IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e033-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e033-out.nq", - "title": "Using @vocab with with type-coercion", - "rdfs:comment": "RDF version of expand-0033", "assertions": [ { - "@id": "_:b14752", + "@id": "_:b149", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "result": { - "@id": "_:b18861", + "@id": "_:b159", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14747", + "@id": "_:b151", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12657", + "@id": "_:b161", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14748", + "@id": "_:b146", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18858", + "@id": "_:b156", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14745", + "@id": "_:b142", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18856", + "@id": "_:b152", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14751", + "@id": "_:b147", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "result": { - "@id": "_:b3747", + "@id": "_:b157", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14742", + "@id": "_:b150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14743", + "@id": "_:b160", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14750", + "@id": "_:b144", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18860", + "@id": "_:b154", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14744", + "@id": "_:b143", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "result": { - "@id": "_:b18855", + "@id": "_:b153", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14746", + "@id": "_:b148", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "result": { - "@id": "_:b18857", + "@id": "_:b158", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14749", + "@id": "_:b145", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", "result": { - "@id": "_:b18859", + "@id": "_:b155", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0054-out.jsonld", + "title": "Expand term with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0054-in.jsonld", + "rdfs:comment": "Expanding values of properties of @type: @vocab does not expand term values" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e034-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e034-out.nq", - "title": "Multiple properties expanding to the same IRI", - "rdfs:comment": "RDF version of expand-0034", "assertions": [ { - "@id": "_:b17678", + "@id": "_:b12829", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "result": { - "@id": "_:b21169", + "@id": "_:b15726", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17669", + "@id": "_:b12828", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17670", + "@id": "_:b15725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17677", + "@id": "_:b12830", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21168", + "@id": "_:b15727", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17674", + "@id": "_:b12826", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14797", + "@id": "_:b12524", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17675", + "@id": "_:b12834", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "result": { - "@id": "_:b21166", + "@id": "_:b15731", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17673", + "@id": "_:b12831", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21165", + "@id": "_:b15728", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17671", + "@id": "_:b12827", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20636", + "@id": "_:b15724", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17676", + "@id": "_:b12824", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "result": { - "@id": "_:b21167", + "@id": "_:b12825", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17672", + "@id": "_:b12832", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "result": { - "@id": "_:b1271", + "@id": "_:b15729", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17679", + "@id": "_:b12833", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", "result": { - "@id": "_:b21170", + "@id": "_:b15730", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0055-out.jsonld", + "title": "Expand @vocab-relative term with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0055-in.jsonld", + "rdfs:comment": "Expanding values of properties of @type: @vocab expands relative IRIs using @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e035-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e035-out.nq", - "title": "Language maps with @vocab, default language, and colliding property", - "rdfs:comment": "RDF version of expand-0035", "assertions": [ { - "@id": "_:b13234", + "@id": "_:b8399", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "result": { - "@id": "_:b23183", + "@id": "_:b24765", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13236", + "@id": "_:b8395", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23185", + "@id": "_:b9083", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13232", + "@id": "_:b8390", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23181", + "@id": "_:b8391", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13228", + "@id": "_:b8392", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4043", + "@id": "_:b17796", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13235", + "@id": "_:b8400", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "result": { - "@id": "_:b23184", + "@id": "_:b24766", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13230", + "@id": "_:b8396", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17773", + "@id": "_:b24068", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13237", + "@id": "_:b8398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23186", + "@id": "_:b20602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13233", + "@id": "_:b8397", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "result": { - "@id": "_:b23182", + "@id": "_:b24438", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13229", + "@id": "_:b8393", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "result": { - "@id": "_:b23179", + "@id": "_:b19156", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13231", + "@id": "_:b8394", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", "result": { - "@id": "_:b23180", + "@id": "_:b2288", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0056-out.jsonld", + "title": "Use terms with @type: @vocab but not with @type: @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0056-in.jsonld", + "rdfs:comment": "Checks that expansion uses appropriate base depending on term definition having @type @id or @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e036-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e036-out.nq", - "title": "Expanding @index", - "rdfs:comment": "RDF version of expand-0036", "assertions": [ { - "@id": "_:b22805", + "@id": "_:b16738", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "result": { - "@id": "_:b19085", + "@id": "_:b22835", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22812", + "@id": "_:b16739", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25241", + "@id": "_:b23913", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22808", + "@id": "_:b16742", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15199", + "@id": "_:b23915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22809", + "@id": "_:b16740", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6400", + "@id": "_:b23914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22806", + "@id": "_:b16745", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "result": { - "@id": "_:b12727", + "@id": "_:b14118", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22810", + "@id": "_:b16743", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15234", + "@id": "_:b23916", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22814", + "@id": "_:b16744", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26173", + "@id": "_:b23917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22813", + "@id": "_:b16737", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "result": { - "@id": "_:b26211", + "@id": "_:b19862", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b22811", + "@id": "_:b16735", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "result": { - "@id": "_:b26899", + "@id": "_:b16736", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22807", + "@id": "_:b16741", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", "result": { - "@id": "_:b24911", + "@id": "_:b21922", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0057-out.jsonld", + "title": "Expand relative IRI with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0057-in.jsonld", + "rdfs:comment": "Relative values of terms with @type: @vocab expand relative to @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e037-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e037-out.nq", - "title": "Expanding @reverse", - "rdfs:comment": "RDF version of expand-0037", "assertions": [ { - "@id": "_:b7851", + "@id": "_:b6786", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "result": { - "@id": "_:b7861", + "@id": "_:b6787", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7847", + "@id": "_:b6795", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7857", + "@id": "_:b26987", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7852", + "@id": "_:b6793", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7862", + "@id": "_:b25793", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7849", + "@id": "_:b6796", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7859", + "@id": "_:b18640", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7853", + "@id": "_:b6794", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "result": { - "@id": "_:b7863", + "@id": "_:b15043", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7850", + "@id": "_:b6791", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7860", + "@id": "_:b16507", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7845", + "@id": "_:b6792", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7855", + "@id": "_:b26676", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7848", + "@id": "_:b6788", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "result": { - "@id": "_:b7858", + "@id": "_:b15787", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7846", + "@id": "_:b6789", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "result": { - "@id": "_:b7856", + "@id": "_:b25404", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7854", + "@id": "_:b6790", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", "result": { - "@id": "_:b7864", + "@id": "_:b25903", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0058-out.jsonld", + "title": "Expand compact IRI with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0058-in.jsonld", + "rdfs:comment": "Compact IRIs are expanded normally even if term has @type: @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e039-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e039-out.nq", - "title": "Using terms in a reverse-maps", - "rdfs:comment": "RDF version of expand-0039", "assertions": [ { - "@id": "_:b19701", + "@id": "_:b5966", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "result": { - "@id": "_:b20092", + "@id": "_:b20773", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19703", + "@id": "_:b5964", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25718", + "@id": "_:b23598", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19702", + "@id": "_:b5967", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19609", + "@id": "_:b26728", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19706", + "@id": "_:b5960", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25719", + "@id": "_:b12552", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19705", + "@id": "_:b5962", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "result": { - "@id": "_:b23976", + "@id": "_:b19596", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19698", + "@id": "_:b5963", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23867", + "@id": "_:b20617", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19700", + "@id": "_:b5965", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6983", + "@id": "_:b26655", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19696", + "@id": "_:b5959", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "result": { - "@id": "_:b19697", + "@id": "_:b9778", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b19699", + "@id": "_:b5961", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "result": { - "@id": "_:b25361", + "@id": "_:b14934", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19704", + "@id": "_:b5968", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", "result": { - "@id": "_:b23888", + "@id": "_:b11391", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0059-out.jsonld", + "title": "Reset @vocab by setting it to null", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0059-in.jsonld", + "rdfs:comment": "Setting @vocab to null removes a previous definition" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e040-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e040-out.nq", - "title": "language and index expansion on non-objects", - "rdfs:comment": "RDF version of expand-0040", "assertions": [ { - "@id": "_:b19266", + "@id": "_:b1934", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "result": { - "@id": "_:b19275", + "@id": "_:b22436", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19265", + "@id": "_:b1935", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19274", + "@id": "_:b22712", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19263", + "@id": "_:b1938", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19272", + "@id": "_:b11337", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19259", + "@id": "_:b1939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19269", + "@id": "_:b22715", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19261", + "@id": "_:b1931", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "result": { - "@id": "_:b15350", + "@id": "_:b11759", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19260", + "@id": "_:b1933", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19270", + "@id": "_:b22711", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19267", + "@id": "_:b1936", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16642", + "@id": "_:b22713", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19264", + "@id": "_:b1929", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "result": { - "@id": "_:b19273", + "@id": "_:b1930", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b19262", + "@id": "_:b1937", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "result": { - "@id": "_:b19271", + "@id": "_:b22714", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19268", + "@id": "_:b1932", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", "result": { - "@id": "_:b6385", + "@id": "_:b18047", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0060-out.jsonld", + "title": "Overwrite document base with @base and reset it again", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0060-in.jsonld", + "rdfs:comment": "Setting @base to an IRI and then resetting it to nil" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e041-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e041-out.nq", - "title": "Reset the default language", - "rdfs:comment": "RDF version of expand-0041", "assertions": [ { - "@id": "_:b11187", + "@id": "_:b8656", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "result": { - "@id": "_:b21793", + "@id": "_:b25188", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11190", + "@id": "_:b8654", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18161", + "@id": "_:b16546", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11186", + "@id": "_:b8661", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19105", + "@id": "_:b26750", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11191", + "@id": "_:b8659", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21954", + "@id": "_:b24936", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11192", + "@id": "_:b8657", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "result": { - "@id": "_:b19241", + "@id": "_:b25610", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11188", + "@id": "_:b8658", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21952", + "@id": "_:b16257", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11189", + "@id": "_:b8655", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21953", + "@id": "_:b17435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11193", + "@id": "_:b8652", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "result": { - "@id": "_:b21955", + "@id": "_:b8653", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11185", + "@id": "_:b8660", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "result": { - "@id": "_:b12360", + "@id": "_:b9266", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11183", + "@id": "_:b8662", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", "result": { - "@id": "_:b11184", + "@id": "_:b10170", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0061-out.jsonld", + "title": "Coercing native types to arbitrary datatypes", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0061-in.jsonld", + "rdfs:comment": "Expanding native types when coercing to arbitrary datatypes" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e042-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e042-out.nq", - "title": "Expanding reverse properties", - "rdfs:comment": "RDF version of expand-0042", "assertions": [ { - "@id": "_:b10273", + "@id": "_:b12063", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "result": { - "@id": "_:b25743", + "@id": "_:b22159", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10275", + "@id": "_:b12065", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25883", + "@id": "_:b17337", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10276", + "@id": "_:b12062", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25884", + "@id": "_:b3992", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10271", + "@id": "_:b12068", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19613", + "@id": "_:b22461", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10278", + "@id": "_:b12070", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "result": { - "@id": "_:b25885", + "@id": "_:b22462", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10272", + "@id": "_:b12069", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25553", + "@id": "_:b20675", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10269", + "@id": "_:b12066", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10270", + "@id": "_:b22342", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10274", + "@id": "_:b12071", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "result": { - "@id": "_:b25761", + "@id": "_:b21529", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10279", + "@id": "_:b12064", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "result": { - "@id": "_:b24813", + "@id": "_:b2994", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10277", + "@id": "_:b12067", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", "result": { - "@id": "_:b22154", + "@id": "_:b22460", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0062-out.jsonld", + "title": "Various relative IRIs with with @base", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0062-in.jsonld", + "rdfs:comment": "Pathological relative IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e043-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e043-out.nq", - "title": "Using reverse properties inside a @reverse-container", - "rdfs:comment": "RDF version of expand-0043", "assertions": [ { - "@id": "_:b5270", + "@id": "_:b1670", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "result": { - "@id": "_:b15491", + "@id": "_:b23468", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5266", + "@id": "_:b1669", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15488", + "@id": "_:b21888", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5269", + "@id": "_:b1667", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5534", + "@id": "_:b14811", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5265", + "@id": "_:b1675", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15450", + "@id": "_:b17352", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5271", + "@id": "_:b1674", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "result": { - "@id": "_:b13780", + "@id": "_:b26841", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5268", + "@id": "_:b1665", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15490", + "@id": "_:b1666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5267", + "@id": "_:b1673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15489", + "@id": "_:b8141", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5264", + "@id": "_:b1668", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "result": { - "@id": "_:b11196", + "@id": "_:b18552", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5272", + "@id": "_:b1672", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "result": { - "@id": "_:b12919", + "@id": "_:b18314", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5262", + "@id": "_:b1671", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", "result": { - "@id": "_:b5263", + "@id": "_:b19303", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0063-out.jsonld", + "title": "Reverse property and index container", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0063-in.jsonld", + "rdfs:comment": "Expaning reverse properties with an index-container" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e044-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e044-out.nq", - "title": "Ensure index maps use language mapping", - "rdfs:comment": "RDF version of expand-0044", "assertions": [ { - "@id": "_:b7390", + "@id": "_:b8976", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "result": { - "@id": "_:b20794", + "@id": "_:b22567", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7394", + "@id": "_:b8971", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12932", + "@id": "_:b22563", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7393", + "@id": "_:b8968", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23672", + "@id": "_:b8969", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7397", + "@id": "_:b8975", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26204", + "@id": "_:b11945", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7388", + "@id": "_:b8972", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "result": { - "@id": "_:b7389", + "@id": "_:b22564", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7392", + "@id": "_:b8978", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16336", + "@id": "_:b3250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7398", + "@id": "_:b8970", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26457", + "@id": "_:b21776", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7395", + "@id": "_:b8974", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "result": { - "@id": "_:b23380", + "@id": "_:b22566", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7391", + "@id": "_:b8973", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "result": { - "@id": "_:b21389", + "@id": "_:b22565", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7396", + "@id": "_:b8977", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", "result": { - "@id": "_:b25093", + "@id": "_:b22568", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0064-out.jsonld", + "title": "bnode values of reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0064-in.jsonld", + "rdfs:comment": "Expand reverse property whose values are unlabeled blank nodes" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e045-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e045-out.nq", - "title": "Top-level value objects are removed", - "rdfs:comment": "RDF version of expand-0045", "assertions": [ { - "@id": "_:b931", + "@id": "_:b16246", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "result": { - "@id": "_:b23083", + "@id": "_:b15436", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b927", + "@id": "_:b16237", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23606", + "@id": "_:b1409", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b930", + "@id": "_:b16245", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25975", + "@id": "_:b14847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b928", + "@id": "_:b16238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14853", + "@id": "_:b20063", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b926", + "@id": "_:b16239", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "result": { - "@id": "_:b6358", + "@id": "_:b20064", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b925", + "@id": "_:b16243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10166", + "@id": "_:b20068", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b929", + "@id": "_:b16241", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24513", + "@id": "_:b20066", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b933", + "@id": "_:b16240", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "result": { - "@id": "_:b26551", + "@id": "_:b20065", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b922", + "@id": "_:b16242", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "result": { - "@id": "_:b923", + "@id": "_:b20067", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b932", + "@id": "_:b16244", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", "result": { - "@id": "_:b26550", + "@id": "_:b20069", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0065-out.jsonld", + "title": "Drop unmapped keys in reverse map", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0065-in.jsonld", + "rdfs:comment": "Keys that are not mapped to an IRI in a reverse-map are dropped" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e046-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e046-out.nq", - "title": "Free-floating nodes are removed", - "rdfs:comment": "RDF version of expand-0046", "assertions": [ { - "@id": "_:b11238", + "@id": "_:b10613", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "result": { - "@id": "_:b24322", + "@id": "_:b19786", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11234", + "@id": "_:b10618", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25985", + "@id": "_:b24499", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11233", + "@id": "_:b10611", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22862", + "@id": "_:b15451", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11236", + "@id": "_:b10616", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26841", + "@id": "_:b23782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11239", + "@id": "_:b10614", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "result": { - "@id": "_:b20882", + "@id": "_:b22268", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11232", + "@id": "_:b10619", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12168", + "@id": "_:b24500", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11230", + "@id": "_:b10609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11231", + "@id": "_:b10610", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11237", + "@id": "_:b10612", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "result": { - "@id": "_:b18649", + "@id": "_:b17461", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11235", + "@id": "_:b10615", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "result": { - "@id": "_:b26265", + "@id": "_:b19090", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11240", + "@id": "_:b10617", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", "result": { - "@id": "_:b26742", + "@id": "_:b23364", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0066-out.jsonld", + "title": "Reverse-map keys with @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0066-in.jsonld", + "rdfs:comment": "Expand uses @vocab to expand keys in reverse-maps" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e047-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e047-out.nq", - "title": "Remove free-floating set values and lists", - "rdfs:comment": "RDF version of expand-0047", "assertions": [ { - "@id": "_:b17528", + "@id": "_:b19253", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "result": { - "@id": "_:b6864", + "@id": "_:b24481", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17522", + "@id": "_:b19254", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15690", + "@id": "_:b18871", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17520", + "@id": "_:b19250", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18541", + "@id": "_:b22308", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17526", + "@id": "_:b19257", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21706", + "@id": "_:b24617", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17523", + "@id": "_:b19256", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "result": { - "@id": "_:b21704", + "@id": "_:b24784", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17525", + "@id": "_:b19251", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21705", + "@id": "_:b24661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17524", + "@id": "_:b19258", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18823", + "@id": "_:b24785", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17527", + "@id": "_:b19248", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "result": { - "@id": "_:b5547", + "@id": "_:b19249", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17519", + "@id": "_:b19255", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "result": { - "@id": "_:b15486", + "@id": "_:b24783", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17521", + "@id": "_:b19252", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", "result": { - "@id": "_:b19764", + "@id": "_:b24728", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0067-out.jsonld", + "title": "prefix://suffix not a compact IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0067-in.jsonld", + "rdfs:comment": "prefix:suffix values are not interpreted as compact IRIs if suffix begins with two slashes" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e048-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e048-out.nq", - "title": "Terms are ignored in @id", - "rdfs:comment": "RDF version of expand-0048", "assertions": [ { - "@id": "_:b20670", + "@id": "_:b16538", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "result": { - "@id": "_:b16814", + "@id": "_:b25595", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20663", + "@id": "_:b16540", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20664", + "@id": "_:b25988", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20668", + "@id": "_:b16533", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21351", + "@id": "_:b16534", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20672", + "@id": "_:b16541", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21024", + "@id": "_:b25226", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20673", + "@id": "_:b16536", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "result": { - "@id": "_:b15283", + "@id": "_:b24761", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20671", + "@id": "_:b16539", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23347", + "@id": "_:b26219", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20665", + "@id": "_:b16537", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24435", + "@id": "_:b25090", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20667", + "@id": "_:b16542", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "result": { - "@id": "_:b25471", + "@id": "_:b23609", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b20666", + "@id": "_:b16543", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "result": { - "@id": "_:b26036", + "@id": "_:b17627", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20669", + "@id": "_:b16535", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", "result": { - "@id": "_:b13904", + "@id": "_:b18614", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0068-out.jsonld", + "title": "_:suffix values are not a compact IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0068-in.jsonld", + "rdfs:comment": "prefix:suffix values are not interpreted as compact IRIs if prefix is an underscore" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e049-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e049-out.nq", - "title": "Using strings as value of a reverse property", - "rdfs:comment": "RDF version of expand-0049", "assertions": [ { - "@id": "_:b8913", + "@id": "_:b11784", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "result": { - "@id": "_:b20784", + "@id": "_:b24889", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8905", + "@id": "_:b11788", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14803", + "@id": "_:b16204", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8908", + "@id": "_:b11786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20779", + "@id": "_:b25523", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8912", + "@id": "_:b11785", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20783", + "@id": "_:b16591", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8903", + "@id": "_:b11781", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "result": { - "@id": "_:b8904", + "@id": "_:b2995", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8910", + "@id": "_:b11782", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20781", + "@id": "_:b16910", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8911", + "@id": "_:b11779", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20782", + "@id": "_:b11780", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8909", + "@id": "_:b11789", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "result": { - "@id": "_:b20780", + "@id": "_:b24634", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8907", + "@id": "_:b11787", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "result": { - "@id": "_:b18549", + "@id": "_:b25524", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8906", + "@id": "_:b11783", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", "result": { - "@id": "_:b16874", + "@id": "_:b22431", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0069-out.jsonld", + "title": "Compact IRI as term with type mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0069-in.jsonld", + "rdfs:comment": "Redefine compact IRI to define type mapping using the compact IRI itself as value of @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e050-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e050-out.nq", - "title": "Term definitions with prefix separate from prefix definitions", - "rdfs:comment": "RDF version of expand-0050", "assertions": [ { - "@id": "_:b4787", + "@id": "_:b1323", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "result": { - "@id": "_:b20078", + "@id": "_:b24837", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4793", + "@id": "_:b1322", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23276", + "@id": "_:b25642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4784", + "@id": "_:b1321", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4785", + "@id": "_:b20667", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4789", + "@id": "_:b1317", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22697", + "@id": "_:b11097", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4794", + "@id": "_:b1319", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "result": { - "@id": "_:b23277", + "@id": "_:b18682", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4788", + "@id": "_:b1318", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20338", + "@id": "_:b17432", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4786", + "@id": "_:b1325", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15987", + "@id": "_:b16722", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4792", + "@id": "_:b1320", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "result": { - "@id": "_:b23275", + "@id": "_:b25573", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4791", + "@id": "_:b1315", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "result": { - "@id": "_:b21105", + "@id": "_:b1316", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4790", + "@id": "_:b1324", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", "result": { - "@id": "_:b13777", + "@id": "_:b15950", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0070-out.jsonld", + "title": "Compact IRI as term defined using equivalent compact IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0070-in.jsonld", + "rdfs:comment": "Redefine compact IRI to define type mapping using the compact IRI itself as string value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e051-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e051-out.nq", - "title": "Expansion of keyword aliases in term definitions", - "rdfs:comment": "RDF version of expand-0051", "assertions": [ { - "@id": "_:b7125", + "@id": "_:b10281", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "result": { - "@id": "_:b20484", + "@id": "_:b10291", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7122", + "@id": "_:b10272", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7123", + "@id": "_:b10282", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7128", + "@id": "_:b10276", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19556", + "@id": "_:b10286", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7124", + "@id": "_:b10274", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15682", + "@id": "_:b10284", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7126", + "@id": "_:b10273", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "result": { - "@id": "_:b20602", + "@id": "_:b10283", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7130", + "@id": "_:b10277", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26301", + "@id": "_:b10287", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7132", + "@id": "_:b10279", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24025", + "@id": "_:b10289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7131", + "@id": "_:b10278", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "result": { - "@id": "_:b8644", + "@id": "_:b10288", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7129", + "@id": "_:b10275", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "result": { - "@id": "_:b25821", + "@id": "_:b10285", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7127", + "@id": "_:b10280", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", "result": { - "@id": "_:b13416", + "@id": "_:b10290", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0072-out.jsonld", + "title": "Redefine term using @vocab, not itself", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0072-in.jsonld", + "rdfs:comment": "Redefining a term as itself when @vocab is defined uses @vocab, not previous term definition" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e052-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e052-out.nq", - "title": "@vocab-relative IRIs in term definitions", - "rdfs:comment": "RDF version of expand-0052", "assertions": [ { - "@id": "_:b6669", + "@id": "_:b7183", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "result": { - "@id": "_:b6670", + "@id": "_:b25368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6677", + "@id": "_:b7180", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19528", + "@id": "_:b20808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6672", + "@id": "_:b7184", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6957", + "@id": "_:b25971", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6674", + "@id": "_:b7179", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19525", + "@id": "_:b11420", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6675", + "@id": "_:b7186", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "result": { - "@id": "_:b19526", + "@id": "_:b25972", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6678", + "@id": "_:b7185", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19529", + "@id": "_:b23369", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6671", + "@id": "_:b7187", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19109", + "@id": "_:b25973", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6679", + "@id": "_:b7181", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "result": { - "@id": "_:b19530", + "@id": "_:b23146", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6676", + "@id": "_:b7177", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "result": { - "@id": "_:b19527", + "@id": "_:b7178", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6673", + "@id": "_:b7182", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", "result": { - "@id": "_:b3993", + "@id": "_:b24804", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0073-out.jsonld", + "title": "@context not first property", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0073-in.jsonld", + "rdfs:comment": "Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e053-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e053-out.nq", - "title": "Expand absolute IRI with @type: @vocab", - "rdfs:comment": "RDF version of expand-0053", "assertions": [ { - "@id": "_:b19756", + "@id": "_:b11637", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "result": { - "@id": "_:b881", + "@id": "_:b14535", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19758", + "@id": "_:b11632", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25526", + "@id": "_:b15932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19759", + "@id": "_:b11634", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25246", + "@id": "_:b17350", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19752", + "@id": "_:b11635", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21807", + "@id": "_:b26855", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19753", + "@id": "_:b11629", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "result": { - "@id": "_:b19951", + "@id": "_:b17001", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19754", + "@id": "_:b11633", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22196", + "@id": "_:b26825", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19757", + "@id": "_:b11627", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10240", + "@id": "_:b11628", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19750", + "@id": "_:b11631", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "result": { - "@id": "_:b19751", + "@id": "_:b21645", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b19755", + "@id": "_:b11636", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "result": { - "@id": "_:b15709", + "@id": "_:b19893", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19760", + "@id": "_:b11630", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", "result": { - "@id": "_:b24028", + "@id": "_:b20554", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0074-out.jsonld", + "title": "@id not first property", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0074-in.jsonld", + "rdfs:comment": "Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e054-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e054-out.nq", - "title": "Expand term with @type: @vocab", - "rdfs:comment": "RDF version of expand-0054", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2207", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b12851", + "@id": "_:b2206", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "result": { - "@id": "_:b15713", + "@id": "_:b1615", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12856", + "@id": "_:b2209", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24288", + "@id": "_:b12225", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12853", + "@id": "_:b2208", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24285", + "@id": "_:b5727", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12852", + "@id": "_:b2215", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13922", + "@id": "_:b14453", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12854", + "@id": "_:b2216", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "result": { - "@id": "_:b24286", + "@id": "_:b14681", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12858", + "@id": "_:b2213", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24290", + "@id": "_:b26402", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12849", + "@id": "_:b2210", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12850", + "@id": "_:b22434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12857", + "@id": "_:b2211", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "result": { - "@id": "_:b24289", + "@id": "_:b23043", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12859", + "@id": "_:b2212", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "result": { - "@id": "_:b24291", + "@id": "_:b17948", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12855", + "@id": "_:b2214", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", "result": { - "@id": "_:b24287", + "@id": "_:b26858", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0075-out.jsonld", + "title": "@vocab as blank node identifier", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0075-in.jsonld", + "rdfs:comment": "Use @vocab to map all properties to blank node identifiers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e055-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e055-out.nq", - "title": "Expand @vocab-relative term with @type: @vocab", - "rdfs:comment": "RDF version of expand-0055", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12428", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example/base/" + } + }, "assertions": [ { - "@id": "_:b10896", + "@id": "_:b12429", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "result": { - "@id": "_:b22514", + "@id": "_:b15789", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10890", + "@id": "_:b12426", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23223", + "@id": "_:b12427", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10894", + "@id": "_:b12433", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25717", + "@id": "_:b24735", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10891", + "@id": "_:b12432", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24126", + "@id": "_:b23589", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10888", + "@id": "_:b12431", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "result": { - "@id": "_:b20880", + "@id": "_:b22648", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10892", + "@id": "_:b12434", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24862", + "@id": "_:b25358", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10886", + "@id": "_:b12437", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10887", + "@id": "_:b23260", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10895", + "@id": "_:b12430", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "result": { - "@id": "_:b25577", + "@id": "_:b12339", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10889", + "@id": "_:b12436", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "result": { - "@id": "_:b22166", + "@id": "_:b25359", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10893", + "@id": "_:b12435", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", "result": { - "@id": "_:b10901", + "@id": "_:b18961", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0076-out.jsonld", + "title": "base option overrides document location", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0076-in.jsonld", + "rdfs:comment": "Use of the base option overrides the document location" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e056-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e056-out.nq", - "title": "Use terms with @type: @vocab but not with @type: @id", - "rdfs:comment": "RDF version of expand-0056", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14578", + "https://w3c.github.io/json-ld-api/tests/vocab#expandContext": { + "@id": "https://w3c.github.io/json-ld-api/tests/expand/0077-context.jsonld" + } + }, "assertions": [ { - "@id": "_:b14066", + "@id": "_:b14587", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "result": { - "@id": "_:b8570", + "@id": "_:b25271", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14060", + "@id": "_:b14576", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23408", + "@id": "_:b14577", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14056", + "@id": "_:b14580", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14057", + "@id": "_:b21248", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14063", + "@id": "_:b14583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25987", + "@id": "_:b25268", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14059", + "@id": "_:b14582", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "result": { - "@id": "_:b23010", + "@id": "_:b24401", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14064", + "@id": "_:b14581", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26025", + "@id": "_:b23497", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14058", + "@id": "_:b14579", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20548", + "@id": "_:b18543", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14061", + "@id": "_:b14585", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "result": { - "@id": "_:b19484", + "@id": "_:b25270", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14065", + "@id": "_:b14586", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "result": { - "@id": "_:b26323", + "@id": "_:b20356", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14062", + "@id": "_:b14584", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", "result": { - "@id": "_:b26233", + "@id": "_:b25269", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0077-out.jsonld", + "title": "expandContext option", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0077-in.jsonld", + "rdfs:comment": "Use of the expandContext option to expand the input document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e057-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e057-out.nq", - "title": "Expand relative IRI with @type: @vocab", - "rdfs:comment": "RDF version of expand-0057", "assertions": [ { - "@id": "_:b585", + "@id": "_:b1475", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "result": { - "@id": "_:b25201", + "@id": "_:b1476", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b583", + "@id": "_:b1481", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6654", + "@id": "_:b25421", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b586", + "@id": "_:b1482", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7603", + "@id": "_:b18319", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b579", + "@id": "_:b1480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19915", + "@id": "_:b22698", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b581", + "@id": "_:b1485", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "result": { - "@id": "_:b18433", + "@id": "_:b26566", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b578", + "@id": "_:b1477", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6111", + "@id": "_:b11624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b587", + "@id": "_:b1483", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19296", + "@id": "_:b26936", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b584", + "@id": "_:b1484", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "result": { - "@id": "_:b26252", + "@id": "_:b24846", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b582", + "@id": "_:b1478", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "result": { - "@id": "_:b23769", + "@id": "_:b3479", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b580", + "@id": "_:b1479", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", "result": { - "@id": "_:b18552", + "@id": "_:b19557", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0078-out.jsonld", + "title": "multiple reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0078-in.jsonld", + "rdfs:comment": "Use of multiple reverse properties" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e058-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e058-out.nq", - "title": "Expand compact IRI with @type: @vocab", - "rdfs:comment": "RDF version of expand-0058", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b22002", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b9889", + "@id": "_:b22004", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "result": { - "@id": "_:b22624", + "@id": "_:b22860", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9886", + "@id": "_:b22000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12390", + "@id": "_:b22001", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9881", + "@id": "_:b22006", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9882", + "@id": "_:b23896", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9884", + "@id": "_:b22005", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21893", + "@id": "_:b23895", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9890", + "@id": "_:b22011", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "result": { - "@id": "_:b22625", + "@id": "_:b23899", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9887", + "@id": "_:b22008", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5553", + "@id": "_:b23898", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9885", + "@id": "_:b22007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22623", + "@id": "_:b23897", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9883", + "@id": "_:b22009", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "result": { - "@id": "_:b18048", + "@id": "_:b21894", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9888", + "@id": "_:b22010", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "result": { - "@id": "_:b6403", + "@id": "_:b21978", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9891", + "@id": "_:b22003", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", "result": { - "@id": "_:b21831", + "@id": "_:b23432", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0079-out.jsonld", + "title": "expand @graph container", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0079-in.jsonld", + "rdfs:comment": "Use of @graph containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e059-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e059-out.nq", - "title": "Reset @vocab by setting it to null", - "rdfs:comment": "RDF version of expand-0059", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8448", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b1563", + "@id": "_:b8455", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "result": { - "@id": "_:b1848", + "@id": "_:b23602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1560", + "@id": "_:b8452", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1561", + "@id": "_:b26555", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1570", + "@id": "_:b8449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1855", + "@id": "_:b22122", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1566", + "@id": "_:b8446", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1851", + "@id": "_:b8447", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1568", + "@id": "_:b8450", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "result": { - "@id": "_:b1853", + "@id": "_:b25022", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1565", + "@id": "_:b8454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1850", + "@id": "_:b8081", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1569", + "@id": "_:b8456", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1854", + "@id": "_:b21190", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1564", + "@id": "_:b8453", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "result": { - "@id": "_:b1849", + "@id": "_:b26973", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1567", + "@id": "_:b8451", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "result": { - "@id": "_:b1852", + "@id": "_:b25443", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1562", + "@id": "_:b8457", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", "result": { - "@id": "_:b1847", + "@id": "_:b24759", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0080-out.jsonld", + "title": "expand [@graph, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0080-in.jsonld", + "rdfs:comment": "Use of [@graph, @set] containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e060-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e060-out.nq", - "title": "Overwrite document base with @base and reset it again", - "rdfs:comment": "RDF version of expand-0060", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8083", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6543", + "@id": "_:b8089", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "result": { - "@id": "_:b15544", + "@id": "_:b23710", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6546", + "@id": "_:b8090", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15547", + "@id": "_:b23711", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6545", + "@id": "_:b8082", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15546", + "@id": "_:b1373", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6548", + "@id": "_:b8087", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15549", + "@id": "_:b22646", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6538", + "@id": "_:b8084", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "result": { - "@id": "_:b6539", + "@id": "_:b10932", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6547", + "@id": "_:b8085", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15548", + "@id": "_:b16993", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6544", + "@id": "_:b8092", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15545", + "@id": "_:b21948", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6540", + "@id": "_:b8086", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "result": { - "@id": "_:b9385", + "@id": "_:b19350", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6542", + "@id": "_:b8091", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "result": { - "@id": "_:b15543", + "@id": "_:b23712", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6541", + "@id": "_:b8088", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", "result": { - "@id": "_:b15542", + "@id": "_:b23709", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0081-out.jsonld", + "title": "Creates an @graph container if value is a graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0081-in.jsonld", + "rdfs:comment": "Don't double-expand an already expanded graph" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e061-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e061-out.nq", - "title": "Coercing native types to arbitrary datatypes", - "rdfs:comment": "RDF version of expand-0061", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6669", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b13896", + "@id": "_:b6672", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "result": { - "@id": "_:b23432", + "@id": "_:b6682", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13899", + "@id": "_:b6673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21111", + "@id": "_:b6683", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13895", + "@id": "_:b6679", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22516", + "@id": "_:b6689", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13898", + "@id": "_:b6676", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23434", + "@id": "_:b6686", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13901", + "@id": "_:b6674", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "result": { - "@id": "_:b23436", + "@id": "_:b6684", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13897", + "@id": "_:b6671", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23433", + "@id": "_:b6681", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13894", + "@id": "_:b6678", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17915", + "@id": "_:b6688", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13891", + "@id": "_:b6670", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "result": { - "@id": "_:b13892", + "@id": "_:b6680", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13900", + "@id": "_:b6675", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "result": { - "@id": "_:b23435", + "@id": "_:b6685", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13893", + "@id": "_:b6677", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", "result": { - "@id": "_:b16842", + "@id": "_:b6687", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0082-out.jsonld", + "title": "expand [@graph, @index] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0082-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e062-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e062-out.nq", - "title": "Various relative IRIs with with @base", - "rdfs:comment": "RDF version of expand-0062", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3077", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7552", + "@id": "_:b3084", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://kasei.us/about/#greg", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "result": { - "@id": "_:b26253", + "@id": "_:b10902", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7551", + "@id": "_:b3079", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21493", + "@id": "_:b10897", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7553", + "@id": "_:b3078", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23212", + "@id": "_:b10896", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7545", + "@id": "_:b3085", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15352", + "@id": "_:b10903", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7547", + "@id": "_:b3082", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "result": { - "@id": "_:b17681", + "@id": "_:b10900", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7546", + "@id": "_:b3080", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15878", + "@id": "_:b10898", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7543", + "@id": "_:b3086", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7544", + "@id": "_:b10904", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7550", + "@id": "_:b3083", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "result": { - "@id": "_:b25139", + "@id": "_:b10901", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7549", + "@id": "_:b3075", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "result": { - "@id": "_:b13990", + "@id": "_:b3076", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7548", + "@id": "_:b3081", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", "result": { - "@id": "_:b19398", + "@id": "_:b10899", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0083-out.jsonld", + "title": "expand [@graph, @index, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0083-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e063-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e063-out.nq", - "title": "Expand a reverse property with an index-container", - "rdfs:comment": "RDF version of expand-0063", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8108", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11709", + "@id": "_:b8109", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "result": { - "@id": "_:b22158", + "@id": "_:b15532", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11714", + "@id": "_:b8113", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26048", + "@id": "_:b18051", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11707", + "@id": "_:b8116", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15941", + "@id": "_:b18054", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11710", + "@id": "_:b8114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23029", + "@id": "_:b18052", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11715", + "@id": "_:b8106", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "result": { - "@id": "_:b23844", + "@id": "_:b8107", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11712", + "@id": "_:b8110", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26047", + "@id": "_:b16177", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11705", + "@id": "_:b8112", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11706", + "@id": "_:b18050", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11708", + "@id": "_:b8115", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "result": { - "@id": "_:b9638", + "@id": "_:b18053", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11713", + "@id": "_:b8111", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "result": { - "@id": "_:b13722", + "@id": "_:b14937", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11711", + "@id": "_:b8117", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", "result": { - "@id": "_:b7009", + "@id": "_:b18055", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0084-out.jsonld", + "title": "Do not expand [@graph, @index] container if value is a graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0084-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e064-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e064-out.nq", - "title": "Expand reverse property whose values are unlabeled blank nodes", - "rdfs:comment": "RDF version of expand-0064", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b13000", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10827", + "@id": "_:b13001", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "result": { - "@id": "_:b23808", + "@id": "_:b18553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10825", + "@id": "_:b13007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23807", + "@id": "_:b24916", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10823", + "@id": "_:b13005", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23142", + "@id": "_:b24915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10819", + "@id": "_:b13004", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10820", + "@id": "_:b24914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10821", + "@id": "_:b13008", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "result": { - "@id": "_:b11283", + "@id": "_:b24917", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10824", + "@id": "_:b13003", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23806", + "@id": "_:b23995", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10822", + "@id": "_:b13009", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23805", + "@id": "_:b18515", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10826", + "@id": "_:b13006", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "result": { - "@id": "_:b23683", + "@id": "_:b18811", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10828", + "@id": "_:b13002", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "result": { - "@id": "_:b23809", + "@id": "_:b22402", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10829", + "@id": "_:b12998", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", "result": { - "@id": "_:b23810", + "@id": "_:b12999", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0085-out.jsonld", + "title": "expand [@graph, @id] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0085-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e065-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e065-out.nq", - "title": "Keys that are not mapped to an IRI in a reverse-map are dropped", - "rdfs:comment": "RDF version of expand-0065", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8767", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b13561", + "@id": "_:b8772", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "result": { - "@id": "_:b15437", + "@id": "_:b19299", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13556", + "@id": "_:b8770", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14551", + "@id": "_:b20988", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13555", + "@id": "_:b8768", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17685", + "@id": "_:b15052", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13559", + "@id": "_:b8774", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12671", + "@id": "_:b24865", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13563", + "@id": "_:b8776", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "result": { - "@id": "_:b25837", + "@id": "_:b18736", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13560", + "@id": "_:b8775", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25836", + "@id": "_:b24866", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13558", + "@id": "_:b8771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23969", + "@id": "_:b24864", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13553", + "@id": "_:b8773", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "result": { - "@id": "_:b13554", + "@id": "_:b17125", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13557", + "@id": "_:b8765", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "result": { - "@id": "_:b23073", + "@id": "_:b8766", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13562", + "@id": "_:b8769", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", "result": { - "@id": "_:b24584", + "@id": "_:b17832", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0086-out.jsonld", + "title": "expand [@graph, @id, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0086-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e066-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e066-out.nq", - "title": "Use @vocab to expand keys in reverse-maps", - "rdfs:comment": "RDF version of expand-0066", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9410", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12709", + "@id": "_:b9415", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "result": { - "@id": "_:b26056", + "@id": "_:b23129", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12708", + "@id": "_:b9417", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24545", + "@id": "_:b24682", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12706", + "@id": "_:b9419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19602", + "@id": "_:b24684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12705", + "@id": "_:b9413", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16071", + "@id": "_:b16822", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12710", + "@id": "_:b9416", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "result": { - "@id": "_:b26975", + "@id": "_:b1169", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12712", + "@id": "_:b9412", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26776", + "@id": "_:b14994", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12704", + "@id": "_:b9414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13358", + "@id": "_:b21078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12711", + "@id": "_:b9418", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "result": { - "@id": "_:b26903", + "@id": "_:b24683", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12702", + "@id": "_:b9411", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "result": { - "@id": "_:b12703", + "@id": "_:b13026", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12707", + "@id": "_:b9408", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", "result": { - "@id": "_:b19220", + "@id": "_:b9409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0087-out.jsonld", + "title": "Do not expand [@graph, @id] container if value is a graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0087-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e067-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e067-out.nq", - "title": "prefix:://sufffix not a compact IRI", - "rdfs:comment": "RDF version of expand-0067", "assertions": [ { - "@id": "_:b9617", + "@id": "_:b1862", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "result": { - "@id": "_:b24631", + "@id": "_:b1872", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9619", + "@id": "_:b1870", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26291", + "@id": "_:b1880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9611", + "@id": "_:b1864", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9612", + "@id": "_:b1874", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9614", + "@id": "_:b1868", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18064", + "@id": "_:b1878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9618", + "@id": "_:b1865", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "result": { - "@id": "_:b25170", + "@id": "_:b1875", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9615", + "@id": "_:b1866", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20814", + "@id": "_:b1876", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9620", + "@id": "_:b1863", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24014", + "@id": "_:b1873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9621", + "@id": "_:b1869", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "result": { - "@id": "_:b22379", + "@id": "_:b1879", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9616", + "@id": "_:b1871", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "result": { - "@id": "_:b24211", + "@id": "_:b1881", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9613", + "@id": "_:b1867", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", "result": { - "@id": "_:b12931", + "@id": "_:b1877", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0088-out.jsonld", + "title": "Do not expand native values to IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0088-in.jsonld", + "rdfs:comment": "Value Expansion does not expand native values, such as booleans, to a node object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e068-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e068-out.nq", - "title": "_::sufffix not a compact IRI", - "rdfs:comment": "RDF version of expand-0068", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10915", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example/base/" + } + }, "assertions": [ { - "@id": "_:b10545", + "@id": "_:b11800", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "result": { - "@id": "_:b13705", + "@id": "_:b14522", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10541", + "@id": "_:b11796", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17026", + "@id": "_:b22222", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10537", + "@id": "_:b11791", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3410", + "@id": "_:b11792", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10543", + "@id": "_:b11799", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17028", + "@id": "_:b26799", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10538", + "@id": "_:b11794", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "result": { - "@id": "_:b8796", + "@id": "_:b19841", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10540", + "@id": "_:b11793", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17025", + "@id": "_:b15537", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10535", + "@id": "_:b11798", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10536", + "@id": "_:b26590", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10539", + "@id": "_:b11795", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "result": { - "@id": "_:b17024", + "@id": "_:b20856", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10542", + "@id": "_:b11797", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "result": { - "@id": "_:b17027", + "@id": "_:b17878", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10544", + "@id": "_:b11801", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", "result": { - "@id": "_:b4245", + "@id": "_:b24814", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0089-out.jsonld", + "title": "empty @base applied to the base option", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0089-in.jsonld", + "rdfs:comment": "Use of an empty @base is applied to the base option" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e069-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e069-out.nq", - "title": "Compact IRI as term with type mapping", - "rdfs:comment": "RDF version of expand-0069", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5292", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example/base/" + } + }, "assertions": [ { - "@id": "_:b8594", + "@id": "_:b5301", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "result": { - "@id": "_:b19579", + "@id": "_:b25164", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8591", + "@id": "_:b5296", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16056", + "@id": "_:b24083", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8590", + "@id": "_:b5300", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19577", + "@id": "_:b25163", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8593", + "@id": "_:b5290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2763", + "@id": "_:b5291", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8589", + "@id": "_:b5293", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "result": { - "@id": "_:b19213", + "@id": "_:b7209", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8587", + "@id": "_:b5297", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8588", + "@id": "_:b25162", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8597", + "@id": "_:b5294", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19582", + "@id": "_:b13998", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8595", + "@id": "_:b5299", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "result": { - "@id": "_:b19580", + "@id": "_:b23278", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8592", + "@id": "_:b5298", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "result": { - "@id": "_:b19578", + "@id": "_:b14647", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8596", + "@id": "_:b5295", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", "result": { - "@id": "_:b19581", + "@id": "_:b17840", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0090-out.jsonld", + "title": "relative @base overrides base option and document location", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0090-in.jsonld", + "rdfs:comment": "Use of a relative @base overrides base option and document location" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e070-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e070-out.nq", - "title": "Redefine compact IRI with itself", - "rdfs:comment": "RDF version of expand-0070", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b11001", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example/base/" + } + }, "assertions": [ { - "@id": "_:b8783", + "@id": "_:b11003", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "result": { - "@id": "_:b8792", + "@id": "_:b11093", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8785", + "@id": "_:b11006", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8794", + "@id": "_:b18999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8784", + "@id": "_:b11000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8793", + "@id": "_:b8329", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8779", + "@id": "_:b11002", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8788", + "@id": "_:b18996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8782", + "@id": "_:b11005", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "result": { - "@id": "_:b8791", + "@id": "_:b18998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8780", + "@id": "_:b11004", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8789", + "@id": "_:b18997", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8776", + "@id": "_:b11009", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8520", + "@id": "_:b19002", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8778", + "@id": "_:b11008", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "result": { - "@id": "_:b8787", + "@id": "_:b19001", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8777", + "@id": "_:b11010", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "result": { - "@id": "_:b8786", + "@id": "_:b19003", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8781", + "@id": "_:b11007", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", "result": { - "@id": "_:b8790", + "@id": "_:b19000", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0091-out.jsonld", + "title": "relative and absolute @base overrides base option and document location", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0091-in.jsonld", + "rdfs:comment": "Use of a relative and absolute @base overrides base option and document location" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e072-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e072-out.nq", - "title": "Redefine term using @vocab, not itself", - "rdfs:comment": "RDF version of expand-0072", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b21396", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5977", + "@id": "_:b21403", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "result": { - "@id": "_:b26396", + "@id": "_:b4944", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5975", + "@id": "_:b21402", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26395", + "@id": "_:b23794", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5968", + "@id": "_:b21398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5969", + "@id": "_:b6451", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5972", + "@id": "_:b21400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8616", + "@id": "_:b24282", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5971", + "@id": "_:b21401", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "result": { - "@id": "_:b13961", + "@id": "_:b19998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5974", + "@id": "_:b21397", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26271", + "@id": "_:b22182", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5976", + "@id": "_:b21404", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17479", + "@id": "_:b21314", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5970", + "@id": "_:b21395", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "result": { - "@id": "_:b12066", + "@id": "_:b14219", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5978", + "@id": "_:b21405", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "result": { - "@id": "_:b25123", + "@id": "_:b25026", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5973", + "@id": "_:b21399", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", "result": { - "@id": "_:b25662", + "@id": "_:b23876", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0092-out.jsonld", + "title": "Various relative IRIs as properties with with @vocab: ''", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0092-in.jsonld", + "rdfs:comment": "Pathological relative property IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e073-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e073-out.nq", - "title": "@context not first property", - "rdfs:comment": "Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4038", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10944", + "@id": "_:b4040", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "result": { - "@id": "_:b19045", + "@id": "_:b19386", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10941", + "@id": "_:b4041", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16334", + "@id": "_:b11994", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10943", + "@id": "_:b4044", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13471", + "@id": "_:b21703", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10947", + "@id": "_:b4036", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18004", + "@id": "_:b4037", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10945", + "@id": "_:b4047", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "result": { - "@id": "_:b26404", + "@id": "_:b10857", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10939", + "@id": "_:b4042", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10940", + "@id": "_:b18584", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10949", + "@id": "_:b4039", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23362", + "@id": "_:b19632", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10942", + "@id": "_:b4046", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "result": { - "@id": "_:b23605", + "@id": "_:b25324", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10946", + "@id": "_:b4043", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "result": { - "@id": "_:b26683", + "@id": "_:b25322", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10948", + "@id": "_:b4045", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", "result": { - "@id": "_:b26950", + "@id": "_:b25323", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0093-out.jsonld", + "title": "expand @graph container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0093-in.jsonld", + "rdfs:comment": "Use of @graph containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e074-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e074-out.nq", - "title": "@id not first property", - "rdfs:comment": "Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4072", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6975", + "@id": "_:b4080", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "result": { - "@id": "_:b18060", + "@id": "_:b5091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6977", + "@id": "_:b4076", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25159", + "@id": "_:b24472", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6972", + "@id": "_:b4074", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6973", + "@id": "_:b13776", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6980", + "@id": "_:b4070", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26936", + "@id": "_:b4071", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6974", + "@id": "_:b4079", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "result": { - "@id": "_:b20096", + "@id": "_:b25342", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6979", + "@id": "_:b4075", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22453", + "@id": "_:b23639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6976", + "@id": "_:b4078", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25146", + "@id": "_:b25341", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6982", + "@id": "_:b4073", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "result": { - "@id": "_:b25954", + "@id": "_:b5610", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6981", + "@id": "_:b4077", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "result": { - "@id": "_:b8798", + "@id": "_:b25340", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6978", + "@id": "_:b4081", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", "result": { - "@id": "_:b26559", + "@id": "_:b22647", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0094-out.jsonld", + "title": "expand [@graph, @set] container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0094-in.jsonld", + "rdfs:comment": "Use of [@graph, @set] containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21997", - "https://w3c.github.io/json-ld-api/tests/vocab#produceGeneralizedRdf": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b10728", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e075-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e075-out.nq", - "https://w3c.github.io/json-ld-api/tests/vocab#requires": "GeneralizedRdf", - "title": "@vocab as blank node identifier", - "rdfs:comment": "Use @vocab to map all properties to blank node identifiers", "assertions": [ { - "@id": "_:b22003", + "@id": "_:b14590", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "result": { - "@id": "_:b2055", + "@id": "_:b18350", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22000", + "@id": "_:b14595", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26282", + "@id": "_:b21542", "@type": "TestResult", - "outcome": "earl:inapplicable" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22004", + "@id": "_:b14597", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", + "mode": "earl:automatic", "result": { - "@id": "_:b26962", + "@id": "_:b3036", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22001", + "@id": "_:b14592", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23507", + "@id": "_:b21540", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22002", + "@id": "_:b14588", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "result": { - "@id": "_:b24975", + "@id": "_:b14589", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21995", + "@id": "_:b14594", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21996", + "@id": "_:b11482", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21998", + "@id": "_:b14593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8575", + "@id": "_:b21541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22006", + "@id": "_:b14596", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "result": { - "@id": "_:b22205", + "@id": "_:b21543", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b21999", + "@id": "_:b14591", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "result": { - "@id": "_:b23922", + "@id": "_:b20296", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22005", + "@id": "_:b14598", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", "result": { - "@id": "_:b20922", + "@id": "_:b15474", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0095-out.jsonld", + "title": "Creates an @graph container if value is a graph (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0095-in.jsonld", + "rdfs:comment": "Double-expand an already expanded graph" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14260", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example/base/" - } + "@id": "_:b16496", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e076-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e076-out.nq", - "title": "base option overrides document location", - "rdfs:comment": "Use of the base option overrides the document location", "assertions": [ { - "@id": "_:b14263", + "@id": "_:b16495", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "result": { - "@id": "_:b22312", + "@id": "_:b1941", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14265", + "@id": "_:b16502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22313", + "@id": "_:b18060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14266", + "@id": "_:b16503", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17234", + "@id": "_:b18061", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14262", + "@id": "_:b16500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22311", + "@id": "_:b18058", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14269", + "@id": "_:b16498", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "result": { - "@id": "_:b22315", + "@id": "_:b18056", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14267", + "@id": "_:b16501", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22314", + "@id": "_:b18059", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14268", + "@id": "_:b16505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21853", + "@id": "_:b18063", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14264", + "@id": "_:b16499", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "result": { - "@id": "_:b17629", + "@id": "_:b18057", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14258", + "@id": "_:b16497", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "result": { - "@id": "_:b14259", + "@id": "_:b17628", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14261", + "@id": "_:b16504", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", "result": { - "@id": "_:b21703", + "@id": "_:b18062", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0096-out.jsonld", + "title": "expand [@graph, @index] container (multiple indexed objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0096-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1981", - "https://w3c.github.io/json-ld-api/tests/vocab#expandContext": { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf/e077-context.jsonld" - } + "@id": "_:b15690", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e077-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e077-out.nq", - "title": "expandContext option", - "rdfs:comment": "Use of the expandContext option to expand the input document", "assertions": [ { - "@id": "_:b1979", + "@id": "_:b15697", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "result": { - "@id": "_:b1980", + "@id": "_:b21589", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1987", + "@id": "_:b15695", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17448", + "@id": "_:b23919", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1986", + "@id": "_:b15694", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17447", + "@id": "_:b26252", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1990", + "@id": "_:b15693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17450", + "@id": "_:b24753", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1989", + "@id": "_:b15691", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "result": { - "@id": "_:b17449", + "@id": "_:b19597", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1984", + "@id": "_:b15696", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15649", + "@id": "_:b26856", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1988", + "@id": "_:b15688", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4290", + "@id": "_:b15689", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1983", + "@id": "_:b15698", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "result": { - "@id": "_:b14628", + "@id": "_:b23280", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1982", + "@id": "_:b15699", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "result": { - "@id": "_:b12597", + "@id": "_:b26836", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1985", + "@id": "_:b15692", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", "result": { - "@id": "_:b17446", + "@id": "_:b9676", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0097-out.jsonld", + "title": "expand [@graph, @index, @set] container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0097-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e078-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e078-out.nq", - "title": "multiple reverse properties", - "rdfs:comment": "Use of multiple reverse properties", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16163", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12135", + "@id": "_:b16169", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "result": { - "@id": "_:b25335", + "@id": "_:b22603", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12132", + "@id": "_:b16170", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5930", + "@id": "_:b4387", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12133", + "@id": "_:b16161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16867", + "@id": "_:b16162", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12139", + "@id": "_:b16168", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25157", + "@id": "_:b26242", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12134", + "@id": "_:b16165", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "result": { - "@id": "_:b18343", + "@id": "_:b23686", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12136", + "@id": "_:b16164", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25336", + "@id": "_:b21277", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12140", + "@id": "_:b16166", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25337", + "@id": "_:b19565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12138", + "@id": "_:b16172", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "result": { - "@id": "_:b24878", + "@id": "_:b10118", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12137", + "@id": "_:b16167", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "result": { - "@id": "_:b23346", + "@id": "_:b14906", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12130", + "@id": "_:b16171", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", "result": { - "@id": "_:b12131", + "@id": "_:b25196", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0098-out.jsonld", + "title": "Do not expand [@graph, @index] container if value is a graph (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0098-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13060", + "@id": "_:b8403", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e079-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e079-out.nq", - "title": "expand @graph container", - "rdfs:comment": "Use of @graph containers", "assertions": [ { - "@id": "_:b13061", + "@id": "_:b8407", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "result": { - "@id": "_:b14472", + "@id": "_:b24266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13064", + "@id": "_:b8405", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21544", + "@id": "_:b24264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13066", + "@id": "_:b8409", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21546", + "@id": "_:b24139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13062", + "@id": "_:b8406", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21543", + "@id": "_:b24265", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13068", + "@id": "_:b8401", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "result": { - "@id": "_:b21547", + "@id": "_:b8402", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13065", + "@id": "_:b8411", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21545", + "@id": "_:b24268", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13063", + "@id": "_:b8410", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16601", + "@id": "_:b24267", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13058", + "@id": "_:b8404", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "result": { - "@id": "_:b13059", + "@id": "_:b18867", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13069", + "@id": "_:b8408", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "result": { - "@id": "_:b21548", + "@id": "_:b5608", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13067", + "@id": "_:b8412", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", "result": { - "@id": "_:b15201", + "@id": "_:b24269", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0099-out.jsonld", + "title": "expand [@graph, @id] container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0099-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1897", + "@id": "_:b18593", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e080-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e080-out.nq", - "title": "expand [@graph, @set] container", - "rdfs:comment": "Use of [@graph, @set] containers", "assertions": [ { - "@id": "_:b1907", + "@id": "_:b18595", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "result": { - "@id": "_:b1917", + "@id": "_:b23088", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1905", + "@id": "_:b18598", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1915", + "@id": "_:b26961", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1898", + "@id": "_:b18602", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1908", + "@id": "_:b27021", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1901", + "@id": "_:b18596", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1911", + "@id": "_:b26423", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1906", + "@id": "_:b18591", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "result": { - "@id": "_:b1916", + "@id": "_:b18592", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1903", + "@id": "_:b18594", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1913", + "@id": "_:b19298", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1904", + "@id": "_:b18599", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1914", + "@id": "_:b26354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1902", + "@id": "_:b18601", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "result": { - "@id": "_:b1912", + "@id": "_:b4750", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1900", + "@id": "_:b18597", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "result": { - "@id": "_:b1910", + "@id": "_:b26321", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1899", + "@id": "_:b18600", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", "result": { - "@id": "_:b1909", + "@id": "_:b26518", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0100-out.jsonld", + "title": "expand [@graph, @id, @set] container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0100-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6902", + "@id": "_:b14911", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e081-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e081-out.nq", - "title": "Creates an @graph container if value is a graph", - "rdfs:comment": "Don't double-expand an already expanded graph", "assertions": [ { - "@id": "_:b6905", + "@id": "_:b14914", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "result": { - "@id": "_:b14981", + "@id": "_:b25155", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6900", + "@id": "_:b14913", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6901", + "@id": "_:b21823", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6903", + "@id": "_:b14915", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19958", + "@id": "_:b13222", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6906", + "@id": "_:b14912", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21719", + "@id": "_:b19520", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6911", + "@id": "_:b14918", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "result": { - "@id": "_:b19344", + "@id": "_:b25207", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6907", + "@id": "_:b14917", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26007", + "@id": "_:b26860", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6909", + "@id": "_:b14921", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21750", + "@id": "_:b25762", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6908", + "@id": "_:b14916", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "result": { - "@id": "_:b15720", + "@id": "_:b9267", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6910", + "@id": "_:b14920", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "result": { - "@id": "_:b24180", + "@id": "_:b26735", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6904", + "@id": "_:b14919", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", "result": { - "@id": "_:b23726", + "@id": "_:b2522", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0101-out.jsonld", + "title": "Do not expand [@graph, @id] container if value is a graph (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0101-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4334", + "@id": "_:b6557", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e082-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e082-out.nq", - "title": "expand [@graph, @index] container", - "rdfs:comment": "Use of @graph containers with @index", "assertions": [ { - "@id": "_:b4332", + "@id": "_:b6559", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "result": { - "@id": "_:b4333", + "@id": "_:b19667", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4338", + "@id": "_:b6565", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16035", + "@id": "_:b21830", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4341", + "@id": "_:b6558", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16038", + "@id": "_:b16997", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4340", + "@id": "_:b6564", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16037", + "@id": "_:b21829", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4342", + "@id": "_:b6560", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "result": { - "@id": "_:b16039", + "@id": "_:b18924", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4339", + "@id": "_:b6562", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16036", + "@id": "_:b16775", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4337", + "@id": "_:b6555", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16034", + "@id": "_:b6556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4343", + "@id": "_:b6561", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "result": { - "@id": "_:b16040", + "@id": "_:b21828", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4335", + "@id": "_:b6566", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "result": { - "@id": "_:b15704", + "@id": "_:b18604", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4336", + "@id": "_:b6563", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", "result": { - "@id": "_:b7654", + "@id": "_:b16247", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0102-out.jsonld", + "title": "Expand @graph container if value is a graph (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0102-in.jsonld", + "rdfs:comment": "Creates a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1418", + "@id": "_:b7687", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e083-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e083-out.nq", - "title": "expand [@graph, @index, @set] container", - "rdfs:comment": "Use of @graph containers with @index and @set", "assertions": [ { - "@id": "_:b1416", + "@id": "_:b7695", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "result": { - "@id": "_:b1417", + "@id": "_:b21910", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1420", + "@id": "_:b7691", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16826", + "@id": "_:b13589", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1427", + "@id": "_:b7690", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23539", + "@id": "_:b21906", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1423", + "@id": "_:b7685", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16264", + "@id": "_:b7686", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1425", + "@id": "_:b7694", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "result": { - "@id": "_:b26714", + "@id": "_:b21909", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1421", + "@id": "_:b7693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22560", + "@id": "_:b21908", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1426", + "@id": "_:b7696", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23896", + "@id": "_:b9865", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1422", + "@id": "_:b7689", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "result": { - "@id": "_:b24780", + "@id": "_:b20793", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1424", + "@id": "_:b7692", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "result": { - "@id": "_:b21297", + "@id": "_:b21907", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1419", + "@id": "_:b7688", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", "result": { - "@id": "_:b6503", + "@id": "_:b16746", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0103-out.jsonld", + "title": "Expand @graph container if value is a graph (multiple graphs)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0103-in.jsonld", + "rdfs:comment": "Creates a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8731", + "@id": "_:b203", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e084-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e084-out.nq", - "title": "Do not expand [@graph, @index] container if value is a graph", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b8735", + "@id": "_:b213", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "result": { - "@id": "_:b22988", + "@id": "_:b1628", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8736", + "@id": "_:b209", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24029", + "@id": "_:b18513", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8729", + "@id": "_:b208", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8730", + "@id": "_:b21086", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8733", + "@id": "_:b207", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16630", + "@id": "_:b20469", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8740", + "@id": "_:b212", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "result": { - "@id": "_:b15385", + "@id": "_:b26896", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8734", + "@id": "_:b210", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9653", + "@id": "_:b25704", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8732", + "@id": "_:b206", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15510", + "@id": "_:b15266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8738", + "@id": "_:b204", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "result": { - "@id": "_:b16975", + "@id": "_:b3940", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8737", + "@id": "_:b205", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "result": { - "@id": "_:b25630", + "@id": "_:b6860", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8739", + "@id": "_:b211", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", "result": { - "@id": "_:b25210", + "@id": "_:b26513", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0104-out.jsonld", + "title": "Creates an @graph container if value is a graph (mixed graph and object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0104-in.jsonld", + "rdfs:comment": "Double-expand an already expanded graph" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18844", + "@id": "_:b3582", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e085-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e085-out.nq", - "title": "expand [@graph, @id] container", - "rdfs:comment": "Use of @graph containers with @id", "assertions": [ { - "@id": "_:b18849", + "@id": "_:b3588", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "result": { - "@id": "_:b25838", + "@id": "_:b26087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18851", + "@id": "_:b3589", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26670", + "@id": "_:b22801", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18845", + "@id": "_:b3584", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19450", + "@id": "_:b15350", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18853", + "@id": "_:b3587", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21591", + "@id": "_:b24898", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18848", + "@id": "_:b3586", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "result": { - "@id": "_:b22509", + "@id": "_:b25413", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18846", + "@id": "_:b3583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23598", + "@id": "_:b8527", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18852", + "@id": "_:b3580", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26718", + "@id": "_:b3581", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18847", + "@id": "_:b3590", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "result": { - "@id": "_:b24769", + "@id": "_:b9743", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b18850", + "@id": "_:b3585", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "result": { - "@id": "_:b26097", + "@id": "_:b11625", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18842", + "@id": "_:b3591", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", "result": { - "@id": "_:b18843", + "@id": "_:b20158", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0105-out.jsonld", + "title": "Do not expand [@graph, @index] container if value is a graph (mixed graph and object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0105-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2400", + "@id": "_:b4464", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e086-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e086-out.nq", - "title": "expand [@graph, @id, @set] container", - "rdfs:comment": "Use of @graph containers with @id and @set", "assertions": [ { - "@id": "_:b2404", + "@id": "_:b4470", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "result": { - "@id": "_:b18883", + "@id": "_:b25675", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2398", + "@id": "_:b4467", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2399", + "@id": "_:b19144", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2403", + "@id": "_:b4472", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18882", + "@id": "_:b25676", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2402", + "@id": "_:b4471", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18881", + "@id": "_:b20037", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2401", + "@id": "_:b4466", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "result": { - "@id": "_:b8862", + "@id": "_:b10483", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2405", + "@id": "_:b4465", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16820", + "@id": "_:b18320", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2408", + "@id": "_:b4462", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18885", + "@id": "_:b4463", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2407", + "@id": "_:b4468", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "result": { - "@id": "_:b18884", + "@id": "_:b25674", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2406", + "@id": "_:b4469", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "result": { - "@id": "_:b16796", + "@id": "_:b17290", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2409", + "@id": "_:b4473", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", "result": { - "@id": "_:b18886", + "@id": "_:b25677", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0106-out.jsonld", + "title": "Do not expand [@graph, @id] container if value is a graph (mixed graph and object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0106-in.jsonld", + "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7761", + "@id": "_:b7671", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e087-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e087-out.nq", - "title": "Do not expand [@graph, @id] container if value is a graph", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b8771", + "@id": "_:b7672", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "result": { - "@id": "_:b23090", + "@id": "_:b13025", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8773", + "@id": "_:b7678", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23091", + "@id": "_:b26642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8770", + "@id": "_:b7680", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21362", + "@id": "_:b21895", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8767", + "@id": "_:b7676", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18375", + "@id": "_:b22702", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8768", + "@id": "_:b7679", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "result": { - "@id": "_:b20854", + "@id": "_:b25950", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8765", + "@id": "_:b7675", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8766", + "@id": "_:b20345", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8774", + "@id": "_:b7674", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23092", + "@id": "_:b17933", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8769", + "@id": "_:b7673", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "result": { - "@id": "_:b17862", + "@id": "_:b15701", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8772", + "@id": "_:b7677", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "result": { - "@id": "_:b17032", + "@id": "_:b24198", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8775", + "@id": "_:b7681", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", "result": { - "@id": "_:b12291", + "@id": "_:b23976", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0107-out.jsonld", + "title": "expand [@graph, @index] container (indexes with multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0107-in.jsonld", + "rdfs:comment": "Use of @graph containers with @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e088-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e088-out.nq", - "title": "Do not expand native values to IRIs", - "rdfs:comment": "Value Expansion does not expand native values, such as booleans, to a node object", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1741", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b13834", + "@id": "_:b1739", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "result": { - "@id": "_:b8668", + "@id": "_:b1740", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13835", + "@id": "_:b1742", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23528", + "@id": "_:b2785", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13830", + "@id": "_:b1745", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19116", + "@id": "_:b2788", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13838", + "@id": "_:b1746", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23144", + "@id": "_:b2789", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13837", + "@id": "_:b1747", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "result": { - "@id": "_:b18593", + "@id": "_:b2790", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13832", + "@id": "_:b1744", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9639", + "@id": "_:b2787", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13833", + "@id": "_:b1743", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6112", + "@id": "_:b2786", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13831", + "@id": "_:b1749", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "result": { - "@id": "_:b23527", + "@id": "_:b2792", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13828", + "@id": "_:b1748", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "result": { - "@id": "_:b13829", + "@id": "_:b2791", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13836", + "@id": "_:b1750", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", "result": { - "@id": "_:b8741", + "@id": "_:b2793", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0108-out.jsonld", + "title": "expand [@graph, @id] container (multiple ids and objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0108-in.jsonld", + "rdfs:comment": "Use of @graph containers with @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9221", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example/base/" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e089-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e089-out.nq", - "title": "empty @base applied to the base option", - "rdfs:comment": "Use of an empty @base is applied to the base option", "assertions": [ { - "@id": "_:b9225", + "@id": "_:b9985", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "result": { - "@id": "_:b25602", + "@id": "_:b9986", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9224", + "@id": "_:b9992", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22904", + "@id": "_:b18870", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9222", + "@id": "_:b9987", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18022", + "@id": "_:b21643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9230", + "@id": "_:b9990", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26901", + "@id": "_:b20321", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9219", + "@id": "_:b9995", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "result": { - "@id": "_:b9220", + "@id": "_:b20814", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9226", + "@id": "_:b9989", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23120", + "@id": "_:b16959", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9229", + "@id": "_:b9994", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22467", + "@id": "_:b26046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9223", + "@id": "_:b9993", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "result": { - "@id": "_:b22310", + "@id": "_:b19393", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9228", + "@id": "_:b9988", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "result": { - "@id": "_:b23685", + "@id": "_:b23798", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9227", + "@id": "_:b9991", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", "result": { - "@id": "_:b26497", + "@id": "_:b22220", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0109-out.jsonld", + "title": "IRI expansion of fragments including ':'", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0109-in.jsonld", + "rdfs:comment": "Do not treat as absolute IRIs values that look like compact IRIs if they're not absolute" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16986", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example/base/" - } + "@id": "_:b5509", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e090-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e090-out.nq", - "title": "relative @base overrides base option and document location", - "rdfs:comment": "Use of a relative @base overrides base option and document location", "assertions": [ { - "@id": "_:b16987", + "@id": "_:b5515", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "result": { - "@id": "_:b17151", + "@id": "_:b26791", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16995", + "@id": "_:b5517", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13432", + "@id": "_:b26313", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16993", + "@id": "_:b5513", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10578", + "@id": "_:b19551", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16994", + "@id": "_:b5511", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23476", + "@id": "_:b16227", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16989", + "@id": "_:b5512", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "result": { - "@id": "_:b21516", + "@id": "_:b18370", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16990", + "@id": "_:b5516", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24865", + "@id": "_:b25470", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16988", + "@id": "_:b5510", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21059", + "@id": "_:b13918", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16996", + "@id": "_:b5507", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "result": { - "@id": "_:b26278", + "@id": "_:b5508", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16991", + "@id": "_:b5514", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "result": { - "@id": "_:b21026", + "@id": "_:b25705", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16992", + "@id": "_:b5518", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", "result": { - "@id": "_:b25789", + "@id": "_:b12748", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0110-out.jsonld", + "title": "Various relative IRIs as properties with with relative @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0110-in.jsonld", + "rdfs:comment": "Pathological relative property IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3906", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example/base/" - } + "@id": "_:b12752", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e091-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e091-out.nq", - "title": "relative and absolute @base overrides base option and document location", - "rdfs:comment": "Use of a relative and absolute @base overrides base option and document location", "assertions": [ { - "@id": "_:b3911", + "@id": "_:b12757", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "result": { - "@id": "_:b24479", + "@id": "_:b14205", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3914", + "@id": "_:b12750", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24481", + "@id": "_:b12751", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3908", + "@id": "_:b12754", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12480", + "@id": "_:b20968", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3912", + "@id": "_:b12760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20681", + "@id": "_:b20970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3910", + "@id": "_:b12756", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "result": { - "@id": "_:b24478", + "@id": "_:b19983", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3907", + "@id": "_:b12758", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7061", + "@id": "_:b18605", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3915", + "@id": "_:b12761", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14536", + "@id": "_:b5556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3904", + "@id": "_:b12755", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "result": { - "@id": "_:b3905", + "@id": "_:b20969", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3913", + "@id": "_:b12753", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "result": { - "@id": "_:b24480", + "@id": "_:b13771", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3909", + "@id": "_:b12759", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", "result": { - "@id": "_:b24477", + "@id": "_:b20700", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0111-out.jsonld", + "title": "Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0111-in.jsonld", + "rdfs:comment": "Pathological relative property IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3260", + "@id": "_:b17199", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e092-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e092-out.nq", - "title": "Various relative IRIs as properties with with @vocab: ''", - "rdfs:comment": "Pathological relative property IRIs", "assertions": [ { - "@id": "_:b3266", + "@id": "_:b17201", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "result": { - "@id": "_:b23714", + "@id": "_:b21185", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3262", + "@id": "_:b17206", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15179", + "@id": "_:b23213", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3267", + "@id": "_:b17203", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8110", + "@id": "_:b18857", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3263", + "@id": "_:b17204", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18869", + "@id": "_:b22822", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3268", + "@id": "_:b17202", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "result": { - "@id": "_:b3890", + "@id": "_:b23211", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3265", + "@id": "_:b17205", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25352", + "@id": "_:b23212", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3269", + "@id": "_:b17200", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8617", + "@id": "_:b19460", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3258", + "@id": "_:b17208", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "result": { - "@id": "_:b3259", + "@id": "_:b17292", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3261", + "@id": "_:b17197", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "result": { - "@id": "_:b7305", + "@id": "_:b17198", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3264", + "@id": "_:b17207", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", "result": { - "@id": "_:b25467", + "@id": "_:b21926", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0112-out.jsonld", + "title": "Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0112-in.jsonld", + "rdfs:comment": "Pathological relative property IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19247", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e093-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e093-out.nq", - "title": "expand @graph container (multiple objects)", - "rdfs:comment": "Use of @graph containers", "assertions": [ { - "@id": "_:b19249", + "@id": "_:b12566", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "result": { - "@id": "_:b23107", + "@id": "_:b12575", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19252", + "@id": "_:b12559", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22753", + "@id": "_:b12569", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19253", + "@id": "_:b12565", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23110", + "@id": "_:b12574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19255", + "@id": "_:b12567", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23112", + "@id": "_:b12576", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19245", + "@id": "_:b12558", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "result": { - "@id": "_:b19246", + "@id": "_:b12568", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19250", + "@id": "_:b12564", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23108", + "@id": "_:b12573", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19251", + "@id": "_:b12560", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23109", + "@id": "_:b12570", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19256", + "@id": "_:b12561", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "result": { - "@id": "_:b23113", + "@id": "_:b12571", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b19254", + "@id": "_:b12563", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "result": { - "@id": "_:b23111", + "@id": "_:b12572", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19248", + "@id": "_:b12562", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", "result": { - "@id": "_:b10167", + "@id": "_:b10173", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0113-out.jsonld", + "title": "context with JavaScript Object property names", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0113-in.jsonld", + "rdfs:comment": "Expand with context including JavaScript Object property names" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3062", + "@id": "_:b3981", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e094-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e094-out.nq", - "title": "expand [@graph, @set] container (multiple objects)", - "rdfs:comment": "Use of [@graph, @set] containers", "assertions": [ { - "@id": "_:b3068", + "@id": "_:b3987", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "result": { - "@id": "_:b26378", + "@id": "_:b25012", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3066", + "@id": "_:b3982", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24104", + "@id": "_:b11028", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3065", + "@id": "_:b3983", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10196", + "@id": "_:b23942", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3067", + "@id": "_:b3988", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16384", + "@id": "_:b26951", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3063", + "@id": "_:b3989", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "result": { - "@id": "_:b19438", + "@id": "_:b12837", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3064", + "@id": "_:b3979", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22117", + "@id": "_:b3980", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3071", + "@id": "_:b3984", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26535", + "@id": "_:b21559", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3069", + "@id": "_:b3986", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "result": { - "@id": "_:b26533", + "@id": "_:b26759", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3060", + "@id": "_:b3985", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "result": { - "@id": "_:b3061", + "@id": "_:b26244", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3070", + "@id": "_:b3990", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", "result": { - "@id": "_:b26534", + "@id": "_:b25661", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0114-out.jsonld", + "title": "Expansion allows multiple properties expanding to @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0114-in.jsonld", + "rdfs:comment": "An exception for the colliding keywords error is made for @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8368", + "@id": "_:b5045", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e095-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e095-out.nq", - "title": "Creates an @graph container if value is a graph (multiple objects)", - "rdfs:comment": "Don't double-expand an already expanded graph", "assertions": [ { - "@id": "_:b8369", + "@id": "_:b5048", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "result": { - "@id": "_:b12891", + "@id": "_:b10458", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8373", + "@id": "_:b5050", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25643", + "@id": "_:b10460", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8370", + "@id": "_:b5043", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22558", + "@id": "_:b5044", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8374", + "@id": "_:b5052", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25644", + "@id": "_:b10462", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8376", + "@id": "_:b5054", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "result": { - "@id": "_:b25645", + "@id": "_:b10464", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8375", + "@id": "_:b5051", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18093", + "@id": "_:b10461", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8377", + "@id": "_:b5047", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11284", + "@id": "_:b10457", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8371", + "@id": "_:b5053", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "result": { - "@id": "_:b24727", + "@id": "_:b10463", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8372", + "@id": "_:b5049", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "result": { - "@id": "_:b20637", + "@id": "_:b10459", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8366", + "@id": "_:b5046", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", "result": { - "@id": "_:b8367", + "@id": "_:b6299", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0117-out.jsonld", + "title": "A term starting with a colon can expand to a different IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0117-in.jsonld", + "rdfs:comment": "Terms may begin with a colon and not be treated as IRIs." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6301", + "@id": "_:b6659", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e096-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e096-out.nq", - "title": "expand [@graph, @index] container (multiple indexed objects)", - "rdfs:comment": "Use of @graph containers with @index", "assertions": [ { - "@id": "_:b6311", + "@id": "_:b6667", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "result": { - "@id": "_:b7581", + "@id": "_:b23487", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6305", + "@id": "_:b6661", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23397", + "@id": "_:b15972", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6307", + "@id": "_:b6664", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25218", + "@id": "_:b23223", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6306", + "@id": "_:b6668", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20954", + "@id": "_:b26757", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6303", + "@id": "_:b6665", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "result": { - "@id": "_:b11939", + "@id": "_:b21985", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6304", + "@id": "_:b6663", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17971", + "@id": "_:b21528", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6308", + "@id": "_:b6662", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26206", + "@id": "_:b18873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6310", + "@id": "_:b6660", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "result": { - "@id": "_:b25304", + "@id": "_:b9932", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6302", + "@id": "_:b6666", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "result": { - "@id": "_:b6402", + "@id": "_:b24870", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6309", + "@id": "_:b6657", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", "result": { - "@id": "_:b19721", + "@id": "_:b6658", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0118-out.jsonld", + "title": "Expanding a value staring with a colon does not treat that value as an IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0118-in.jsonld", + "rdfs:comment": "Terms may begin with a colon and not be treated as IRIs." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3791", + "@id": "_:b2304", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e097-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e097-out.nq", - "title": "expand [@graph, @index, @set] container (multiple objects)", - "rdfs:comment": "Use of @graph containers with @index and @set", "assertions": [ { - "@id": "_:b3798", + "@id": "_:b2308", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "result": { - "@id": "_:b26370", + "@id": "_:b23922", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3794", + "@id": "_:b2312", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21025", + "@id": "_:b25760", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3793", + "@id": "_:b2305", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18325", + "@id": "_:b13028", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3789", + "@id": "_:b2306", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3790", + "@id": "_:b19060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3795", + "@id": "_:b2310", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "result": { - "@id": "_:b24432", + "@id": "_:b24558", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3797", + "@id": "_:b2307", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26023", + "@id": "_:b21354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3796", + "@id": "_:b2302", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26014", + "@id": "_:b2303", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3792", + "@id": "_:b2313", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "result": { - "@id": "_:b4534", + "@id": "_:b24017", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3799", + "@id": "_:b2311", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "result": { - "@id": "_:b18186", + "@id": "_:b25817", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3800", + "@id": "_:b2309", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", "result": { - "@id": "_:b26199", + "@id": "_:b21646", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0119-out.jsonld", + "title": "Ignore some terms with @, allow others.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0119-in.jsonld", + "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5535", + "@id": "_:b9199", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e098-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e098-out.nq", - "title": "Do not expand [@graph, @index] container if value is a graph (multiple objects)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b9809", + "@id": "_:b9200", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "result": { - "@id": "_:b9818", + "@id": "_:b20782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9811", + "@id": "_:b9205", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9820", + "@id": "_:b16627", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9812", + "@id": "_:b9208", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9821", + "@id": "_:b26684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9813", + "@id": "_:b9202", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9822", + "@id": "_:b25519", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9805", + "@id": "_:b9206", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "result": { - "@id": "_:b9815", + "@id": "_:b24736", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9806", + "@id": "_:b9203", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9816", + "@id": "_:b25751", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9810", + "@id": "_:b9201", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9819", + "@id": "_:b24820", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9807", + "@id": "_:b9207", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "result": { - "@id": "_:b1330", + "@id": "_:b15223", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9808", + "@id": "_:b9197", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "result": { - "@id": "_:b9817", + "@id": "_:b9198", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9814", + "@id": "_:b9204", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", "result": { - "@id": "_:b1995", + "@id": "_:b19457", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0120-out.jsonld", + "title": "Ignore some values of @id with @, allow others.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0120-in.jsonld", + "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8267", + "@id": "_:b2540", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e099-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e099-out.nq", - "title": "expand [@graph, @id] container (multiple objects)", - "rdfs:comment": "Use of @graph containers with @id", "assertions": [ { - "@id": "_:b8276", + "@id": "_:b2542", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "result": { - "@id": "_:b26513", + "@id": "_:b2552", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8270", + "@id": "_:b2544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7542", + "@id": "_:b2554", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8273", + "@id": "_:b2546", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23713", + "@id": "_:b2556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8272", + "@id": "_:b2543", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23137", + "@id": "_:b2553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8265", + "@id": "_:b2545", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "result": { - "@id": "_:b8266", + "@id": "_:b2555", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8268", + "@id": "_:b2547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8653", + "@id": "_:b2557", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8271", + "@id": "_:b2549", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22035", + "@id": "_:b2559", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8274", + "@id": "_:b2541", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "result": { - "@id": "_:b23965", + "@id": "_:b2551", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8275", + "@id": "_:b2548", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "result": { - "@id": "_:b26332", + "@id": "_:b2558", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8269", + "@id": "_:b2550", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", "result": { - "@id": "_:b10415", + "@id": "_:b2560", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0121-out.jsonld", + "title": "Ignore some values of @reverse with @, allow others.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0121-in.jsonld", + "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6960", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b14181", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e100-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e100-out.nq", - "title": "expand [@graph, @id, @set] container (multiple objects)", - "rdfs:comment": "Use of @graph containers with @id and @set", "assertions": [ { - "@id": "_:b6962", + "@id": "_:b14183", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "result": { - "@id": "_:b22976", + "@id": "_:b17541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6961", + "@id": "_:b14190", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21352", + "@id": "_:b26318", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6964", + "@id": "_:b14186", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25866", + "@id": "_:b19197", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6958", + "@id": "_:b14191", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6959", + "@id": "_:b26034", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6963", + "@id": "_:b14184", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "result": { - "@id": "_:b24539", + "@id": "_:b24028", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6967", + "@id": "_:b14188", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25793", + "@id": "_:b21145", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6969", + "@id": "_:b14185", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26990", + "@id": "_:b24610", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6966", + "@id": "_:b14189", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "result": { - "@id": "_:b21462", + "@id": "_:b25427", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6965", + "@id": "_:b14182", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "result": { - "@id": "_:b21696", + "@id": "_:b15533", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6968", + "@id": "_:b14187", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", "result": { - "@id": "_:b7996", + "@id": "_:b25954", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0122-out.jsonld", + "title": "Ignore some IRIs when that start with @ when expanding.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0122-in.jsonld", + "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword. (Note: the resulting document will not be valid JSON-LD, due to the `null` value for `@id`)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13305", + "@id": "_:b11207", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e101-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e101-out.nq", - "title": "Do not expand [@graph, @id] container if value is a graph (multiple objects)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b13311", + "@id": "_:b11211", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "result": { - "@id": "_:b13320", + "@id": "_:b15305", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13307", + "@id": "_:b11214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13317", + "@id": "_:b25459", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13313", + "@id": "_:b11212", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13322", + "@id": "_:b24323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13309", + "@id": "_:b11209", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13318", + "@id": "_:b18252", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13310", + "@id": "_:b11213", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "result": { - "@id": "_:b13319", + "@id": "_:b18321", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13314", + "@id": "_:b11210", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13323", + "@id": "_:b20883", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13312", + "@id": "_:b11216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13321", + "@id": "_:b26015", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13308", + "@id": "_:b11208", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "result": { - "@id": "_:b3350", + "@id": "_:b14667", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13315", + "@id": "_:b11205", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "result": { - "@id": "_:b13324", + "@id": "_:b11206", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13306", + "@id": "_:b11215", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", "result": { - "@id": "_:b13316", + "@id": "_:b26571", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid typed value", + "title": "Value objects including invalid literal datatype IRIs are rejected", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0123-in.jsonld", + "rdfs:comment": "Processors MUST validate datatype IRIs." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4980", + "@id": "_:b3398", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e102-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e102-out.nq", - "title": "Expand @graph container if value is a graph (multiple objects)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b4978", + "@id": "_:b3406", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "result": { - "@id": "_:b4979", + "@id": "_:b25298", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4983", + "@id": "_:b3399", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22617", + "@id": "_:b17355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4985", + "@id": "_:b3401", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22619", + "@id": "_:b22043", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4987", + "@id": "_:b3404", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22621", + "@id": "_:b7377", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4981", + "@id": "_:b3396", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "result": { - "@id": "_:b21386", + "@id": "_:b3397", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4989", + "@id": "_:b3402", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4444", + "@id": "_:b17330", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4984", + "@id": "_:b3403", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22618", + "@id": "_:b25297", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4982", + "@id": "_:b3405", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "result": { - "@id": "_:b22616", + "@id": "_:b18949", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4986", + "@id": "_:b3400", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "result": { - "@id": "_:b22620", + "@id": "_:b20145", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4988", + "@id": "_:b3407", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", "result": { - "@id": "_:b22622", + "@id": "_:b16974", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0124-out.jsonld", + "title": "compact IRI as @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0124-in.jsonld", + "rdfs:comment": "Verifies that @vocab defined as a compact IRI expands properly" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b745", + "@id": "_:b10487", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e103-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e103-out.nq", - "title": "Expand @graph container if value is a graph (multiple graphs)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b749", + "@id": "_:b10491", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "result": { - "@id": "_:b2277", + "@id": "_:b26107", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b751", + "@id": "_:b10493", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23839", + "@id": "_:b26339", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b747", + "@id": "_:b10488", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16977", + "@id": "_:b21188", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b750", + "@id": "_:b10489", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24410", + "@id": "_:b22151", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b746", + "@id": "_:b10486", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "result": { - "@id": "_:b4686", + "@id": "_:b1073", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b753", + "@id": "_:b10494", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14908", + "@id": "_:b26540", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b752", + "@id": "_:b10490", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24183", + "@id": "_:b25927", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b754", + "@id": "_:b10495", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "result": { - "@id": "_:b21780", + "@id": "_:b16731", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b755", + "@id": "_:b10492", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "result": { - "@id": "_:b24411", + "@id": "_:b20718", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b748", + "@id": "_:b10496", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", "result": { - "@id": "_:b2788", + "@id": "_:b26541", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0125-out.jsonld", + "title": "term as @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0125-in.jsonld", + "rdfs:comment": "Verifies that @vocab defined as a term expands properly" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5664", + "@id": "_:b7311", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e104-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e104-out.nq", - "title": "Creates an @graph container if value is a graph (mixed graph and object)", - "rdfs:comment": "Don't double-expand an already expanded graph", "assertions": [ { - "@id": "_:b9353", + "@id": "_:b7319", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "result": { - "@id": "_:b23954", + "@id": "_:b18955", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9356", + "@id": "_:b7318", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25652", + "@id": "_:b27031", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9352", + "@id": "_:b7320", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22902", + "@id": "_:b26605", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9359", + "@id": "_:b7309", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22912", + "@id": "_:b7310", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9354", + "@id": "_:b7315", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "result": { - "@id": "_:b25439", + "@id": "_:b23306", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9355", + "@id": "_:b7312", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20535", + "@id": "_:b11912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9350", + "@id": "_:b7316", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9351", + "@id": "_:b26175", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9360", + "@id": "_:b7317", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "result": { - "@id": "_:b26270", + "@id": "_:b26907", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9358", + "@id": "_:b7313", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "result": { - "@id": "_:b24421", + "@id": "_:b18106", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9357", + "@id": "_:b7314", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", "result": { - "@id": "_:b14254", + "@id": "_:b23456", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0126-out.jsonld", + "title": "A scoped context may include itself recursively (direct)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0126-in.jsonld", + "rdfs:comment": "Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10676", + "@id": "_:b9187", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e105-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e105-out.nq", - "title": "Do not expand [@graph, @index] container if value is a graph (mixed graph and object)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b10685", + "@id": "_:b9185", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://kasei.us/about/#greg", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "result": { - "@id": "_:b24635", + "@id": "_:b9186", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10683", + "@id": "_:b9191", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24523", + "@id": "_:b26180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10682", + "@id": "_:b9195", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26977", + "@id": "_:b19367", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10674", + "@id": "_:b9193", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10675", + "@id": "_:b13808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10681", + "@id": "_:b9189", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "result": { - "@id": "_:b26804", + "@id": "_:b19435", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10678", + "@id": "_:b9192", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22161", + "@id": "_:b26181", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10677", + "@id": "_:b9196", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13458", + "@id": "_:b26182", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10679", + "@id": "_:b9190", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "result": { - "@id": "_:b20350", + "@id": "_:b23511", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10680", + "@id": "_:b9188", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "result": { - "@id": "_:b24422", + "@id": "_:b17175", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10684", + "@id": "_:b9194", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", "result": { - "@id": "_:b24386", + "@id": "_:b17460", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0127-out.jsonld", + "title": "A scoped context may include itself recursively (indirect)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0127-in.jsonld", + "rdfs:comment": "Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3525", + "@id": "_:b15556", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e106-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e106-out.nq", - "title": "Do not expand [@graph, @id] container if value is a graph (mixed graph and object)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b3523", + "@id": "_:b15558", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "result": { - "@id": "_:b3524", + "@id": "_:b22667", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3528", + "@id": "_:b15560", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18432", + "@id": "_:b18903", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3526", + "@id": "_:b15554", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9904", + "@id": "_:b15555", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3527", + "@id": "_:b15564", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2826", + "@id": "_:b26094", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3533", + "@id": "_:b15559", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "result": { - "@id": "_:b26902", + "@id": "_:b23003", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3534", + "@id": "_:b15561", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18386", + "@id": "_:b26093", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3530", + "@id": "_:b15563", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21552", + "@id": "_:b25727", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3532", + "@id": "_:b15557", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "result": { - "@id": "_:b24988", + "@id": "_:b21891", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3531", + "@id": "_:b15562", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "result": { - "@id": "_:b22501", + "@id": "_:b23506", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3529", + "@id": "_:b15565", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", "result": { - "@id": "_:b20772", + "@id": "_:b17768", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0128-out.jsonld", + "title": "Two scoped context may include a shared context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0128-in.jsonld", + "rdfs:comment": "Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18618", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e107-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e107-out.nq", - "title": "expand [@graph, @index] container (indexes with multiple objects)", - "rdfs:comment": "Use of @graph containers with @index", "assertions": [ { - "@id": "_:b18626", + "@id": "_:b21465", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://kasei.us/about/#greg", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "result": { - "@id": "_:b20661", + "@id": "_:b26266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18619", + "@id": "_:b21463", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19119", + "@id": "_:b26115", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18625", + "@id": "_:b21458", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20660", + "@id": "_:b21459", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18620", + "@id": "_:b21466", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20655", + "@id": "_:b26956", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18623", + "@id": "_:b21461", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "result": { - "@id": "_:b20658", + "@id": "_:b14909", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18624", + "@id": "_:b21462", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20659", + "@id": "_:b24721", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18616", + "@id": "_:b21468", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18617", + "@id": "_:b26078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18627", + "@id": "_:b21464", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "result": { - "@id": "_:b20144", + "@id": "_:b25096", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b18621", + "@id": "_:b21467", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "result": { - "@id": "_:b20656", + "@id": "_:b26955", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18622", + "@id": "_:b21460", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", "result": { - "@id": "_:b20657", + "@id": "_:b5145", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0129-out.jsonld", + "title": "Base without trailing slash, without path", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0129-in.jsonld", + "rdfs:comment": "Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14510", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e108-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e108-out.nq", - "title": "expand [@graph, @id] container (multiple ids and objects)", - "rdfs:comment": "Use of @graph containers with @id", "assertions": [ { - "@id": "_:b14518", + "@id": "_:b20536", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "result": { - "@id": "_:b15729", + "@id": "_:b26338", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14516", + "@id": "_:b20531", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11154", + "@id": "_:b23833", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14519", + "@id": "_:b20529", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24455", + "@id": "_:b23351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14513", + "@id": "_:b20534", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24452", + "@id": "_:b14662", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14511", + "@id": "_:b20537", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "result": { - "@id": "_:b17482", + "@id": "_:b23972", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14515", + "@id": "_:b20533", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24454", + "@id": "_:b26942", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14512", + "@id": "_:b20532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24420", + "@id": "_:b26783", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14514", + "@id": "_:b20530", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "result": { - "@id": "_:b24453", + "@id": "_:b24565", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14517", + "@id": "_:b20535", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "result": { - "@id": "_:b15079", + "@id": "_:b25790", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14508", + "@id": "_:b20538", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", "result": { - "@id": "_:b14509", + "@id": "_:b26957", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0130-out.jsonld", + "title": "Base without trailing slash, with path", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0130-in.jsonld", + "rdfs:comment": "Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e109-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e109-out.nq", - "title": "IRI expansion of fragments including ':'", - "rdfs:comment": "Do not treat as absolute IRIs values that look like compact IRIs if they're not absolute", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3527", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b9041", + "@id": "_:b3531", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "result": { - "@id": "_:b9051", + "@id": "_:b13751", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9043", + "@id": "_:b3529", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9053", + "@id": "_:b20825", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9042", + "@id": "_:b3535", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9052", + "@id": "_:b18180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9040", + "@id": "_:b3530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9050", + "@id": "_:b19128", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9045", + "@id": "_:b3525", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "result": { - "@id": "_:b9055", + "@id": "_:b3526", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9039", + "@id": "_:b3533", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9049", + "@id": "_:b6423", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9047", + "@id": "_:b3532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9057", + "@id": "_:b24134", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9046", + "@id": "_:b3534", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "result": { - "@id": "_:b9056", + "@id": "_:b20436", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9044", + "@id": "_:b3536", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "result": { - "@id": "_:b9054", + "@id": "_:b24135", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9038", + "@id": "_:b3528", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", "result": { - "@id": "_:b9048", + "@id": "_:b11802", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c001-out.jsonld", + "title": "adding new term", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c001-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5086", + "@id": "_:b9504", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e110-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e110-out.nq", - "title": "Various relative IRIs as properties with with relative @vocab", - "rdfs:comment": "Pathological relative property IRIs", "assertions": [ { - "@id": "_:b13976", + "@id": "_:b9511", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "result": { - "@id": "_:b20197", + "@id": "_:b9521", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13973", + "@id": "_:b9510", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22414", + "@id": "_:b9520", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13975", + "@id": "_:b9513", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23920", + "@id": "_:b9523", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13972", + "@id": "_:b9507", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26694", + "@id": "_:b9517", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13966", + "@id": "_:b9514", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "result": { - "@id": "_:b13967", + "@id": "_:b9524", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13970", + "@id": "_:b9509", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12438", + "@id": "_:b9519", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13974", + "@id": "_:b9505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21663", + "@id": "_:b9515", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13968", + "@id": "_:b9512", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "result": { - "@id": "_:b20913", + "@id": "_:b9522", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13971", + "@id": "_:b9506", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "result": { - "@id": "_:b26542", + "@id": "_:b9516", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13969", + "@id": "_:b9508", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", "result": { - "@id": "_:b25225", + "@id": "_:b9518", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c002-out.jsonld", + "title": "overriding a term", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c002-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1067", + "@id": "_:b16647", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e111-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e111-out.nq", - "title": "Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base", - "rdfs:comment": "Pathological relative property IRIs", "assertions": [ { - "@id": "_:b1068", + "@id": "_:b16651", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "result": { - "@id": "_:b6928", + "@id": "_:b22285", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1075", + "@id": "_:b16654", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15174", + "@id": "_:b19265", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1073", + "@id": "_:b16656", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", + "mode": "earl:automatic", "result": { - "@id": "_:b15172", + "@id": "_:b22289", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1076", + "@id": "_:b16652", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15175", + "@id": "_:b22286", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1069", + "@id": "_:b16646", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "result": { - "@id": "_:b15168", + "@id": "_:b15747", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1070", + "@id": "_:b16650", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15169", + "@id": "_:b22284", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1074", + "@id": "_:b16655", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15173", + "@id": "_:b22288", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1071", + "@id": "_:b16653", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "result": { - "@id": "_:b15170", + "@id": "_:b22287", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1072", + "@id": "_:b16648", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "result": { - "@id": "_:b15171", + "@id": "_:b22282", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1077", + "@id": "_:b16649", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", "result": { - "@id": "_:b15176", + "@id": "_:b22283", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c003-out.jsonld", + "title": "property and value with different terms mapping to the same expanded property", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c003-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10283", + "@id": "_:b8499", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e112-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e112-out.nq", - "title": "Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base", - "rdfs:comment": "Pathological relative property IRIs", "assertions": [ { - "@id": "_:b10289", + "@id": "_:b8503", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "result": { - "@id": "_:b10298", + "@id": "_:b23377", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10287", + "@id": "_:b8500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10296", + "@id": "_:b15945", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10291", + "@id": "_:b8501", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", + "mode": "earl:automatic", "result": { - "@id": "_:b10300", + "@id": "_:b21824", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10292", + "@id": "_:b8506", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10301", + "@id": "_:b21551", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10284", + "@id": "_:b8497", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "result": { - "@id": "_:b1655", + "@id": "_:b8498", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10285", + "@id": "_:b8505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10294", + "@id": "_:b22665", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10288", + "@id": "_:b8502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10297", + "@id": "_:b22788", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10293", + "@id": "_:b8504", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "result": { - "@id": "_:b9468", + "@id": "_:b20425", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10290", + "@id": "_:b8508", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "result": { - "@id": "_:b10299", + "@id": "_:b26600", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10286", + "@id": "_:b8507", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", "result": { - "@id": "_:b10295", + "@id": "_:b21501", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c004-out.jsonld", + "title": "deep @context affects nested nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c004-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e113-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e113-out.nq", - "title": "context with JavaScript Object property names", - "rdfs:comment": "Expand with context including JavaScript Object property names", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6107", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6779", + "@id": "_:b15573", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "result": { - "@id": "_:b24122", + "@id": "_:b24969", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6777", + "@id": "_:b15575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18644", + "@id": "_:b26898", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6775", + "@id": "_:b15571", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25831", + "@id": "_:b14874", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6776", + "@id": "_:b15577", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24612", + "@id": "_:b24918", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6778", + "@id": "_:b15576", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "result": { - "@id": "_:b9946", + "@id": "_:b4372", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6773", + "@id": "_:b15568", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22432", + "@id": "_:b15569", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6781", + "@id": "_:b15578", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20435", + "@id": "_:b25217", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6780", + "@id": "_:b15570", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "result": { - "@id": "_:b25800", + "@id": "_:b23160", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6774", + "@id": "_:b15572", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "result": { - "@id": "_:b23847", + "@id": "_:b24720", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6771", + "@id": "_:b15574", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", "result": { - "@id": "_:b6772", + "@id": "_:b22246", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c005-out.jsonld", + "title": "scoped context layers on intemediate contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c005-in.jsonld", + "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5947", + "@id": "_:b2527", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e114-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e114-out.nq", - "title": "Expansion allows multiple properties expanding to @type", - "rdfs:comment": "An exception for the colliding keywords error is made for @type", "assertions": [ { - "@id": "_:b5954", + "@id": "_:b2531", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "result": { - "@id": "_:b8612", + "@id": "_:b21695", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5953", + "@id": "_:b2529", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24352", + "@id": "_:b21544", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5945", + "@id": "_:b2532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5946", + "@id": "_:b18451", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5956", + "@id": "_:b2534", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24353", + "@id": "_:b21696", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5955", + "@id": "_:b2525", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "result": { - "@id": "_:b18002", + "@id": "_:b2526", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5950", + "@id": "_:b2528", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15026", + "@id": "_:b11928", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5949", + "@id": "_:b2535", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18748", + "@id": "_:b21697", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5952", + "@id": "_:b2533", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "result": { - "@id": "_:b23417", + "@id": "_:b19267", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5951", + "@id": "_:b2536", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "result": { - "@id": "_:b18631", + "@id": "_:b21698", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5948", + "@id": "_:b2530", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", "result": { - "@id": "_:b16596", + "@id": "_:b21694", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c006-out.jsonld", + "title": "adding new term", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c006-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17350", + "@id": "_:b5165", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e117-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e117-out.nq", - "title": "A term starting with a colon can expand to a different IRI", - "rdfs:comment": "Terms may begin with a colon and not be treated as IRIs.", "assertions": [ { - "@id": "_:b17358", + "@id": "_:b5173", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "result": { - "@id": "_:b17366", + "@id": "_:b26272", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17351", + "@id": "_:b5171", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17361", + "@id": "_:b18396", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17359", + "@id": "_:b5172", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17367", + "@id": "_:b26243", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17355", + "@id": "_:b5166", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6299", + "@id": "_:b18263", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17354", + "@id": "_:b5167", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "result": { - "@id": "_:b17364", + "@id": "_:b20491", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17352", + "@id": "_:b5163", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17362", + "@id": "_:b5164", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17353", + "@id": "_:b5168", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17363", + "@id": "_:b21110", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17356", + "@id": "_:b5170", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "result": { - "@id": "_:b17365", + "@id": "_:b1563", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17360", + "@id": "_:b5174", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "result": { - "@id": "_:b17368", + "@id": "_:b26852", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17357", + "@id": "_:b5169", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", "result": { - "@id": "_:b2642", + "@id": "_:b23016", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c007-out.jsonld", + "title": "overriding a term", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c007-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18809", + "@id": "_:b8188", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e118-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e118-out.nq", - "title": "Expanding a value staring with a colon does not treat that value as an IRI", - "rdfs:comment": "Terms may begin with a colon and not be treated as IRIs.", "assertions": [ { - "@id": "_:b18814", + "@id": "_:b8186", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "result": { - "@id": "_:b23818", + "@id": "_:b8187", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18817", + "@id": "_:b8195", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23821", + "@id": "_:b26943", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18815", + "@id": "_:b8189", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23819", + "@id": "_:b10546", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18816", + "@id": "_:b8194", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23820", + "@id": "_:b26990", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18807", + "@id": "_:b8191", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "result": { - "@id": "_:b18808", + "@id": "_:b22883", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18810", + "@id": "_:b8193", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20911", + "@id": "_:b26771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18811", + "@id": "_:b8196", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23815", + "@id": "_:b22490", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18813", + "@id": "_:b8190", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "result": { - "@id": "_:b23817", + "@id": "_:b13775", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b18812", + "@id": "_:b8192", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "result": { - "@id": "_:b23816", + "@id": "_:b26993", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18818", + "@id": "_:b8197", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", "result": { - "@id": "_:b23822", + "@id": "_:b15407", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c008-out.jsonld", + "title": "alias of @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c008-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6823", + "@id": "_:b782", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e119-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e119-out.nq", - "title": "Ignore some terms with @, allow others.", - "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword.", "assertions": [ { - "@id": "_:b6831", + "@id": "_:b2356", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "result": { - "@id": "_:b24305", + "@id": "_:b2357", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6826", + "@id": "_:b2358", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21752", + "@id": "_:b4166", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6827", + "@id": "_:b2365", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8443", + "@id": "_:b12584", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6821", + "@id": "_:b2360", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6822", + "@id": "_:b12580", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6824", + "@id": "_:b2363", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "result": { - "@id": "_:b11134", + "@id": "_:b12582", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6830", + "@id": "_:b2359", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24304", + "@id": "_:b12379", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6829", + "@id": "_:b2361", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24212", + "@id": "_:b12581", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6832", + "@id": "_:b2364", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "result": { - "@id": "_:b23026", + "@id": "_:b12583", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6828", + "@id": "_:b2362", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "result": { - "@id": "_:b24303", + "@id": "_:b11407", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6825", + "@id": "_:b2366", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", "result": { - "@id": "_:b18350", + "@id": "_:b12585", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c009-out.jsonld", + "title": "deep @type-scoped @context does NOT affect nested nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c009-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13979", + "@id": "_:b17744", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e120-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e120-out.nq", - "title": "Ignore some values of @id with @, allow others.", - "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword.", "assertions": [ { - "@id": "_:b13988", + "@id": "_:b17750", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "result": { - "@id": "_:b26429", + "@id": "_:b17759", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13982", + "@id": "_:b17748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24459", + "@id": "_:b17757", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13977", + "@id": "_:b17747", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13978", + "@id": "_:b17756", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13984", + "@id": "_:b17752", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25483", + "@id": "_:b3822", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13985", + "@id": "_:b17749", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "result": { - "@id": "_:b26389", + "@id": "_:b17758", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13981", + "@id": "_:b17753", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19136", + "@id": "_:b17761", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13986", + "@id": "_:b17754", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20424", + "@id": "_:b17762", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13983", + "@id": "_:b17751", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "result": { - "@id": "_:b25369", + "@id": "_:b17760", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13980", + "@id": "_:b17745", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "result": { - "@id": "_:b19692", + "@id": "_:b17755", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13987", + "@id": "_:b17746", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", "result": { - "@id": "_:b26428", + "@id": "_:b16280", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c010-out.jsonld", + "title": "scoped context layers on intemediate contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c010-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11220", + "@id": "_:b20792", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e121-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e121-out.nq", - "title": "Ignore some values of @reverse with @, allow others.", - "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword.", "assertions": [ { - "@id": "_:b11225", + "@id": "_:b23332", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "result": { - "@id": "_:b8084", + "@id": "_:b5158", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11223", + "@id": "_:b23333", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2606", + "@id": "_:b16773", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11224", + "@id": "_:b23334", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19111", + "@id": "_:b11505", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11226", + "@id": "_:b23331", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10590", + "@id": "_:b9998", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11218", + "@id": "_:b23335", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "result": { - "@id": "_:b11219", + "@id": "_:b19304", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11227", + "@id": "_:b23336", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26499", + "@id": "_:b26346", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11221", + "@id": "_:b23337", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12890", + "@id": "_:b24105", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11222", + "@id": "_:b23329", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "result": { - "@id": "_:b15335", + "@id": "_:b23330", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11228", + "@id": "_:b23339", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "result": { - "@id": "_:b14349", + "@id": "_:b21962", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11229", + "@id": "_:b23338", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", "result": { - "@id": "_:b16742", + "@id": "_:b23348", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c011-out.jsonld", + "title": "orders @type terms when applying scoped contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c011-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8073", + "@id": "_:b16580", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e122-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e122-out.nq", - "title": "Ignore some IRIs when that start with @ when expanding.", - "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword.", "assertions": [ { - "@id": "_:b8081", + "@id": "_:b16578", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "result": { - "@id": "_:b12103", + "@id": "_:b16579", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8079", + "@id": "_:b16585", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12101", + "@id": "_:b24830", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8075", + "@id": "_:b16582", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12097", + "@id": "_:b21390", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8080", + "@id": "_:b16583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12102", + "@id": "_:b19097", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8078", + "@id": "_:b16584", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "result": { - "@id": "_:b12100", + "@id": "_:b24646", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8071", + "@id": "_:b16581", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8072", + "@id": "_:b1523", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8076", + "@id": "_:b16589", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12098", + "@id": "_:b26678", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8074", + "@id": "_:b16586", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "result": { - "@id": "_:b11041", + "@id": "_:b17015", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8077", + "@id": "_:b16587", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "result": { - "@id": "_:b12099", + "@id": "_:b21530", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8082", + "@id": "_:b16588", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", "result": { - "@id": "_:b12104", + "@id": "_:b22616", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c012-out.jsonld", + "title": "deep property-term scoped @context in @type-scoped @context affects nested nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c012-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3954", + "@id": "_:b2147", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e123-in.jsonld", - "mf:result": "invalid typed value", - "title": "Value objects including invalid literal datatype IRIs are rejected", - "rdfs:comment": "Processors MUST validate datatype IRIs.", "assertions": [ { - "@id": "_:b3960", + "@id": "_:b2155", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "result": { - "@id": "_:b26167", + "@id": "_:b2165", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3958", + "@id": "_:b2153", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14837", + "@id": "_:b2163", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3959", + "@id": "_:b2156", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9824", + "@id": "_:b2166", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3956", + "@id": "_:b2157", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20629", + "@id": "_:b2167", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3961", + "@id": "_:b2149", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "result": { - "@id": "_:b9557", + "@id": "_:b2159", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3962", + "@id": "_:b2151", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15006", + "@id": "_:b2161", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3963", + "@id": "_:b2150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25302", + "@id": "_:b2160", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3952", + "@id": "_:b2148", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "result": { - "@id": "_:b3953", + "@id": "_:b2158", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3957", + "@id": "_:b2152", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "result": { - "@id": "_:b23024", + "@id": "_:b2162", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3955", + "@id": "_:b2154", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", "result": { - "@id": "_:b18632", + "@id": "_:b2164", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c013-out.jsonld", + "title": "type maps use scoped context from type index and not scoped context from containing", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c013-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2959", + "@id": "_:b4973", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": [ - "https://w3c.github.io/json-ld-api/tests/toRdf/e124-in.jsonld", - "https://w3c.github.io/json-ld-api/tests/toRdf/0124-in.jsonld" - ], - "testResult": [ - "https://w3c.github.io/json-ld-api/tests/toRdf/e124-out.nq", - "https://w3c.github.io/json-ld-api/tests/toRdf/0124-out.nq" - ], - "title": [ - "compact IRI as @vocab", - "IRI Resolution (4)" - ], - "rdfs:comment": [ - "IRI resolution according to RFC3986.", - "Verifies that @vocab defined as a compact IRI expands properly" - ], "assertions": [ { - "@id": "_:b2968", + "@id": "_:b4979", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "result": { - "@id": "_:b26927", + "@id": "_:b25477", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2963", + "@id": "_:b4978", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23848", + "@id": "_:b8778", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2960", + "@id": "_:b4974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18436", + "@id": "_:b15530", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2964", + "@id": "_:b4977", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24877", + "@id": "_:b24805", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2966", + "@id": "_:b4981", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "result": { - "@id": "_:b18282", + "@id": "_:b24946", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2961", + "@id": "_:b4972", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22938", + "@id": "_:b3189", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2965", + "@id": "_:b4976", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21688", + "@id": "_:b20402", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2969", + "@id": "_:b4975", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "result": { - "@id": "_:b4953", + "@id": "_:b19571", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2967", + "@id": "_:b4982", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "result": { - "@id": "_:b26864", + "@id": "_:b4425", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2962", + "@id": "_:b4980", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", "result": { - "@id": "_:b23599", + "@id": "_:b25592", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c014-out.jsonld", + "title": "type-scoped context nullification", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c014-in.jsonld", + "rdfs:comment": "type-scoped context nullification" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6015", + "@id": "_:b7709", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": [ - "https://w3c.github.io/json-ld-api/tests/toRdf/e125-in.jsonld", - "https://w3c.github.io/json-ld-api/tests/toRdf/0125-in.jsonld" - ], - "testResult": [ - "https://w3c.github.io/json-ld-api/tests/toRdf/e125-out.nq", - "https://w3c.github.io/json-ld-api/tests/toRdf/0125-out.nq" - ], - "title": [ - "term as @vocab", - "IRI Resolution (5)" - ], - "rdfs:comment": [ - "IRI resolution according to RFC3986.", - "Verifies that @vocab defined as a term expands properly" - ], "assertions": [ { - "@id": "_:b6025", + "@id": "_:b7707", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "result": { - "@id": "_:b25209", + "@id": "_:b7708", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6023", + "@id": "_:b7714", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25669", + "@id": "_:b17968", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6021", + "@id": "_:b7710", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22308", + "@id": "_:b25190", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6022", + "@id": "_:b7711", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22199", + "@id": "_:b24709", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6017", + "@id": "_:b7715", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "result": { - "@id": "_:b16682", + "@id": "_:b25373", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6018", + "@id": "_:b7713", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24983", + "@id": "_:b26218", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6016", + "@id": "_:b7712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10180", + "@id": "_:b25965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6019", + "@id": "_:b7716", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "result": { - "@id": "_:b24826", + "@id": "_:b26872", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6020", + "@id": "_:b7718", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "result": { - "@id": "_:b22681", + "@id": "_:b16136", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6024", + "@id": "_:b7717", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", "result": { - "@id": "_:b19319", + "@id": "_:b25839", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c015-out.jsonld", + "title": "type-scoped base", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c015-in.jsonld", + "rdfs:comment": "type-scoped base" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19092", + "@id": "_:b1099", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e126-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e126-out.nq", - "title": "A scoped context may include itself recursively (direct)", - "rdfs:comment": "Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly", "assertions": [ { - "@id": "_:b19100", + "@id": "_:b1102", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "result": { - "@id": "_:b11027", + "@id": "_:b17087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19099", + "@id": "_:b1101", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26819", + "@id": "_:b19017", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19097", + "@id": "_:b1104", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26613", + "@id": "_:b19019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19101", + "@id": "_:b1106", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26820", + "@id": "_:b19020", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19094", + "@id": "_:b1108", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "result": { - "@id": "_:b21902", + "@id": "_:b19022", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19098", + "@id": "_:b1105", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26783", + "@id": "_:b10053", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19090", + "@id": "_:b1100", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19091", + "@id": "_:b18735", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19095", + "@id": "_:b1103", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "result": { - "@id": "_:b23991", + "@id": "_:b19018", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b19093", + "@id": "_:b1097", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "result": { - "@id": "_:b20578", + "@id": "_:b1098", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19096", + "@id": "_:b1107", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", "result": { - "@id": "_:b25262", + "@id": "_:b19021", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c016-out.jsonld", + "title": "type-scoped vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c016-in.jsonld", + "rdfs:comment": "type-scoped vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6917", + "@id": "_:b2095", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e127-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e127-out.nq", - "title": "A scoped context may include itself recursively (indirect)", - "rdfs:comment": "Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly", "assertions": [ { - "@id": "_:b6920", + "@id": "_:b2099", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "result": { - "@id": "_:b25315", + "@id": "_:b25276", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6915", + "@id": "_:b2101", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6916", + "@id": "_:b25924", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6921", + "@id": "_:b2103", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25502", + "@id": "_:b22229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6919", + "@id": "_:b2100", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24306", + "@id": "_:b20224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6925", + "@id": "_:b2105", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "result": { - "@id": "_:b23177", + "@id": "_:b26345", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6922", + "@id": "_:b2097", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24070", + "@id": "_:b9058", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6926", + "@id": "_:b2102", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12670", + "@id": "_:b26344", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6918", + "@id": "_:b2104", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "result": { - "@id": "_:b22698", + "@id": "_:b23227", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6924", + "@id": "_:b2096", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "result": { - "@id": "_:b18821", + "@id": "_:b4373", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6923", + "@id": "_:b2098", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", "result": { - "@id": "_:b12497", + "@id": "_:b25008", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c017-out.jsonld", + "title": "multiple type-scoped contexts are properly reverted", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c017-in.jsonld", + "rdfs:comment": "multiple type-scoped contexts are property reverted" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3123", + "@id": "_:b10027", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e128-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e128-out.nq", - "title": "Two scoped context may include a shared context", - "rdfs:comment": "Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context", "assertions": [ { - "@id": "_:b3131", + "@id": "_:b10035", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "result": { - "@id": "_:b17680", + "@id": "_:b18621", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3124", + "@id": "_:b10031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22283", + "@id": "_:b23203", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3127", + "@id": "_:b10030", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24473", + "@id": "_:b22982", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3132", + "@id": "_:b10029", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4743", + "@id": "_:b23202", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3130", + "@id": "_:b10036", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "result": { - "@id": "_:b26877", + "@id": "_:b23206", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3126", + "@id": "_:b10032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25002", + "@id": "_:b23204", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3125", + "@id": "_:b10034", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24590", + "@id": "_:b23205", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3121", + "@id": "_:b10025", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "result": { - "@id": "_:b3122", + "@id": "_:b10026", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3128", + "@id": "_:b10028", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "result": { - "@id": "_:b26462", + "@id": "_:b16120", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3129", + "@id": "_:b10033", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", "result": { - "@id": "_:b22817", + "@id": "_:b20539", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c018-out.jsonld", + "title": "multiple type-scoped types resolved against previous context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c018-in.jsonld", + "rdfs:comment": "multiple type-scoped types resolved against previous context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13790", + "@id": "_:b9646", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e129-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e129-out.nq", - "title": "Base without trailing slash, without path", - "rdfs:comment": "Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986", "assertions": [ { - "@id": "_:b13792", + "@id": "_:b9655", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "result": { - "@id": "_:b20803", + "@id": "_:b22613", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13797", + "@id": "_:b9650", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25566", + "@id": "_:b23806", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13788", + "@id": "_:b9651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13789", + "@id": "_:b22199", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13795", + "@id": "_:b9648", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20875", + "@id": "_:b23625", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13798", + "@id": "_:b9649", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "result": { - "@id": "_:b26585", + "@id": "_:b23805", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13791", + "@id": "_:b9647", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16363", + "@id": "_:b22987", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13799", + "@id": "_:b9644", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22376", + "@id": "_:b9645", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13796", + "@id": "_:b9653", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "result": { - "@id": "_:b13778", + "@id": "_:b23808", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13794", + "@id": "_:b9652", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "result": { - "@id": "_:b6927", + "@id": "_:b23807", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13793", + "@id": "_:b9654", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", "result": { - "@id": "_:b22500", + "@id": "_:b23809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c019-out.jsonld", + "title": "type-scoped context with multiple property scoped terms", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c019-in.jsonld", + "rdfs:comment": "type-scoped context with multiple property scoped terms" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9472", + "@id": "_:b16306", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/e130-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/e130-out.nq", - "title": "Base without trailing slash, with path", - "rdfs:comment": "Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986", "assertions": [ { - "@id": "_:b9474", + "@id": "_:b16309", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "result": { - "@id": "_:b18045", + "@id": "_:b22340", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9475", + "@id": "_:b16308", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23061", + "@id": "_:b14620", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9470", + "@id": "_:b16310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9471", + "@id": "_:b25071", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9477", + "@id": "_:b16313", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23063", + "@id": "_:b25870", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9473", + "@id": "_:b16307", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "result": { - "@id": "_:b19690", + "@id": "_:b16960", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9476", + "@id": "_:b16315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23062", + "@id": "_:b25871", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9478", + "@id": "_:b16311", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23064", + "@id": "_:b25679", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9480", + "@id": "_:b16312", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "result": { - "@id": "_:b23066", + "@id": "_:b22985", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9481", + "@id": "_:b16314", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "result": { - "@id": "_:b9121", + "@id": "_:b23393", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9479", + "@id": "_:b16316", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", "result": { - "@id": "_:b23065", + "@id": "_:b19820", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c020-out.jsonld", + "title": "type-scoped value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c020-in.jsonld", + "rdfs:comment": "type-scoped value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b756", + "@id": "_:b11183", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/ec01-in.jsonld", - "mf:result": "invalid term definition", - "title": "Invalid keyword in term definition", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid term definition is found", "assertions": [ { - "@id": "_:b2114", + "@id": "_:b11188", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "result": { - "@id": "_:b3339", + "@id": "_:b11198", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2109", + "@id": "_:b11185", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2110", + "@id": "_:b11195", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2113", + "@id": "_:b11184", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3338", + "@id": "_:b11194", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2117", + "@id": "_:b11189", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3342", + "@id": "_:b11199", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2118", + "@id": "_:b11193", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "result": { - "@id": "_:b3343", + "@id": "_:b11203", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2112", + "@id": "_:b11192", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3337", + "@id": "_:b11202", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2111", + "@id": "_:b11186", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3336", + "@id": "_:b11196", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2115", + "@id": "_:b11191", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "result": { - "@id": "_:b3340", + "@id": "_:b11201", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2116", + "@id": "_:b11187", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "result": { - "@id": "_:b3341", + "@id": "_:b11197", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2119", + "@id": "_:b11190", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", "result": { - "@id": "_:b3344", + "@id": "_:b11200", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c021-out.jsonld", + "title": "type-scoped value mix", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c021-in.jsonld", + "rdfs:comment": "type-scoped value mix" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4163", + "@id": "_:b3886", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/ec02-in.jsonld", - "mf:result": "keyword redefinition", - "title": "Term definition on @type with empty map", - "rdfs:comment": "Verifies that an exception is raised if @type is defined as a term with an empty map", "assertions": [ { - "@id": "_:b4166", + "@id": "_:b3893", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "result": { - "@id": "_:b24567", + "@id": "_:b13321", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4165", + "@id": "_:b3891", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24566", + "@id": "_:b13319", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4167", + "@id": "_:b3884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24096", + "@id": "_:b3885", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4168", + "@id": "_:b3892", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22910", + "@id": "_:b13320", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4171", + "@id": "_:b3889", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "result": { - "@id": "_:b4193", + "@id": "_:b13317", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4161", + "@id": "_:b3888", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4162", + "@id": "_:b13316", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4170", + "@id": "_:b3894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4713", + "@id": "_:b13322", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4164", + "@id": "_:b3890", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "result": { - "@id": "_:b19067", + "@id": "_:b13318", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4169", + "@id": "_:b3887", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "result": { - "@id": "_:b21993", + "@id": "_:b8777", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4172", + "@id": "_:b3895", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", "result": { - "@id": "_:b24568", + "@id": "_:b13323", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c022-out.jsonld", + "title": "type-scoped property-scoped contexts including @type:@vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c022-in.jsonld", + "rdfs:comment": "type-scoped property-scoped contexts including @type:@vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7284", + "@id": "_:b8515", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/em01-in.jsonld", - "mf:result": "invalid container mapping", - "title": "Invalid container mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found", "assertions": [ { - "@id": "_:b7286", + "@id": "_:b8516", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "result": { - "@id": "_:b20476", + "@id": "_:b10789", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7290", + "@id": "_:b8522", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23116", + "@id": "_:b22608", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7287", + "@id": "_:b8524", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22256", + "@id": "_:b22609", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7288", + "@id": "_:b8523", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5024", + "@id": "_:b10997", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7293", + "@id": "_:b8517", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "result": { - "@id": "_:b23117", + "@id": "_:b18143", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7285", + "@id": "_:b8521", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16055", + "@id": "_:b21234", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7292", + "@id": "_:b8520", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16308", + "@id": "_:b22607", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7282", + "@id": "_:b8518", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "result": { - "@id": "_:b7283", + "@id": "_:b22605", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7291", + "@id": "_:b8519", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "result": { - "@id": "_:b12020", + "@id": "_:b22606", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7289", + "@id": "_:b8513", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", "result": { - "@id": "_:b23115", + "@id": "_:b8514", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c023-out.jsonld", + "title": "composed type-scoped property-scoped contexts including @type:@vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c023-in.jsonld", + "rdfs:comment": "composed type-scoped property-scoped contexts including @type:@vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13709", + "@id": "_:b15156", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en01-in.jsonld", - "mf:result": "invalid @nest value", - "title": "@nest MUST NOT have a string value", - "rdfs:comment": "container: @nest", "assertions": [ { - "@id": "_:b13714", + "@id": "_:b15160", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "result": { - "@id": "_:b17466", + "@id": "_:b26185", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13716", + "@id": "_:b15158", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17468", + "@id": "_:b23856", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13715", + "@id": "_:b15162", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17467", + "@id": "_:b26514", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13710", + "@id": "_:b15154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12518", + "@id": "_:b15155", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13717", + "@id": "_:b15164", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "result": { - "@id": "_:b17469", + "@id": "_:b22919", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13713", + "@id": "_:b15161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15723", + "@id": "_:b15207", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13718", + "@id": "_:b15165", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17470", + "@id": "_:b23855", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13711", + "@id": "_:b15163", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "result": { - "@id": "_:b17464", + "@id": "_:b26515", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13707", + "@id": "_:b15157", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "result": { - "@id": "_:b13708", + "@id": "_:b20798", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13712", + "@id": "_:b15159", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", "result": { - "@id": "_:b17465", + "@id": "_:b4563", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c024-out.jsonld", + "title": "type-scoped + property-scoped + values evaluates against previous context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c024-in.jsonld", + "rdfs:comment": "type-scoped + property-scoped + values evaluates against previous context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15841", + "@id": "_:b4489", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en02-in.jsonld", - "mf:result": "invalid @nest value", - "title": "@nest MUST NOT have a boolen value", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b15843", + "@id": "_:b4491", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "result": { - "@id": "_:b1682", + "@id": "_:b13045", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15844", + "@id": "_:b4495", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24397", + "@id": "_:b13049", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15846", + "@id": "_:b4496", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8346", + "@id": "_:b13050", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15847", + "@id": "_:b4487", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26912", + "@id": "_:b4488", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15850", + "@id": "_:b4492", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "result": { - "@id": "_:b25622", + "@id": "_:b13046", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15849", + "@id": "_:b4494", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25878", + "@id": "_:b13048", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15839", + "@id": "_:b4497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15840", + "@id": "_:b13051", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15848", + "@id": "_:b4493", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "result": { - "@id": "_:b26761", + "@id": "_:b13047", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15842", + "@id": "_:b4490", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "result": { - "@id": "_:b20379", + "@id": "_:b5740", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15845", + "@id": "_:b4498", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", "result": { - "@id": "_:b26672", + "@id": "_:b13052", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c025-out.jsonld", + "title": "type-scoped + graph container", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c025-in.jsonld", + "rdfs:comment": "type-scoped + graph container" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7704", + "@id": "_:b9883", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en03-in.jsonld", - "mf:result": "invalid @nest value", - "title": "@nest MUST NOT have a numeric value", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b7705", + "@id": "_:b9890", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "result": { - "@id": "_:b9162", + "@id": "_:b23173", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7712", + "@id": "_:b9889", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21241", + "@id": "_:b19111", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7708", + "@id": "_:b9888", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21239", + "@id": "_:b15930", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7702", + "@id": "_:b9887", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7703", + "@id": "_:b23172", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7711", + "@id": "_:b9885", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "result": { - "@id": "_:b21240", + "@id": "_:b17806", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7707", + "@id": "_:b9884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20641", + "@id": "_:b15265", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7713", + "@id": "_:b9892", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12096", + "@id": "_:b22755", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7710", + "@id": "_:b9891", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "result": { - "@id": "_:b4929", + "@id": "_:b23174", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7706", + "@id": "_:b9886", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "result": { - "@id": "_:b18738", + "@id": "_:b20399", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7709", + "@id": "_:b9881", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", "result": { - "@id": "_:b20169", + "@id": "_:b9882", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c026-out.jsonld", + "title": "@propagate: true on type-scoped context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c026-in.jsonld", + "rdfs:comment": "type-scoped context with @propagate: true survive node-objects" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9488", + "@id": "_:b1654", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en04-in.jsonld", - "mf:result": "invalid @nest value", - "title": "@nest MUST NOT have a value object value", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b9491", + "@id": "_:b1659", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "result": { - "@id": "_:b6138", + "@id": "_:b21386", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9489", + "@id": "_:b1657", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19378", + "@id": "_:b22868", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9493", + "@id": "_:b1655", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24667", + "@id": "_:b13984", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9490", + "@id": "_:b1656", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21479", + "@id": "_:b19933", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9486", + "@id": "_:b1658", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "result": { - "@id": "_:b9487", + "@id": "_:b24002", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9495", + "@id": "_:b1663", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24669", + "@id": "_:b24527", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9492", + "@id": "_:b1661", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24666", + "@id": "_:b24526", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9494", + "@id": "_:b1652", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "result": { - "@id": "_:b24668", + "@id": "_:b1653", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9496", + "@id": "_:b1660", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "result": { - "@id": "_:b24670", + "@id": "_:b24525", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9497", + "@id": "_:b1662", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", "result": { - "@id": "_:b24671", + "@id": "_:b18809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c027-out.jsonld", + "title": "@propagate: false on property-scoped context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c027-in.jsonld", + "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20605", + "@id": "_:b2658", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en05-in.jsonld", - "mf:result": "invalid @nest value", - "title": "does not allow a keyword other than @nest for the value of @nest", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b20608", + "@id": "_:b2663", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "result": { - "@id": "_:b26280", + "@id": "_:b24760", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20610", + "@id": "_:b2659", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13684", + "@id": "_:b3087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20609", + "@id": "_:b2656", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25765", + "@id": "_:b2657", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20606", + "@id": "_:b2667", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24071", + "@id": "_:b26685", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20614", + "@id": "_:b2666", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "result": { - "@id": "_:b16086", + "@id": "_:b25074", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20613", + "@id": "_:b2664", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22903", + "@id": "_:b24602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20607", + "@id": "_:b2665", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25806", + "@id": "_:b20302", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20603", + "@id": "_:b2660", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "result": { - "@id": "_:b20604", + "@id": "_:b14905", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b20612", + "@id": "_:b2661", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "result": { - "@id": "_:b1441", + "@id": "_:b16293", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20611", + "@id": "_:b2662", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", "result": { - "@id": "_:b26813", + "@id": "_:b26712", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c028-out.jsonld", + "title": "@propagate: false on embedded context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c028-in.jsonld", + "rdfs:comment": "embedded context with @propagate: false do not survive node-objects" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5560", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b12713", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/en06-in.jsonld", - "mf:result": "invalid reverse property", - "title": "does not allow @nest with @reverse", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b5563", + "@id": "_:b12716", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "result": { - "@id": "_:b23947", + "@id": "_:b19220", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5567", + "@id": "_:b12721", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26629", + "@id": "_:b25774", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5565", + "@id": "_:b12722", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26098", + "@id": "_:b13029", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5566", + "@id": "_:b12711", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11089", + "@id": "_:b12712", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5562", + "@id": "_:b12719", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "result": { - "@id": "_:b16801", + "@id": "_:b3177", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5568", + "@id": "_:b12717", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26711", + "@id": "_:b20221", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5569", + "@id": "_:b12718", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25564", + "@id": "_:b23417", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5558", + "@id": "_:b12720", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "result": { - "@id": "_:b5559", + "@id": "_:b25773", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5561", + "@id": "_:b12715", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "result": { - "@id": "_:b3145", + "@id": "_:b18379", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5564", + "@id": "_:b12714", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", "result": { - "@id": "_:b25340", + "@id": "_:b17259", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context entry", + "title": "@propagate is invalid in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c029-in.jsonld", + "rdfs:comment": "@propagate is invalid in 1.0" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8397", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b16394", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/ep02-in.jsonld", - "mf:result": "processing mode conflict", - "title": "processingMode json-ld-1.0 conflicts with @version: 1.1", - "rdfs:comment": "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features.", "assertions": [ { - "@id": "_:b8400", + "@id": "_:b16404", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "result": { - "@id": "_:b22110", + "@id": "_:b16412", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8398", + "@id": "_:b16399", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20405", + "@id": "_:b16407", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8402", + "@id": "_:b16395", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25004", + "@id": "_:b13065", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8404", + "@id": "_:b16398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22946", + "@id": "_:b16406", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8401", + "@id": "_:b16397", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "result": { - "@id": "_:b24514", + "@id": "_:b16405", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8405", + "@id": "_:b16401", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25005", + "@id": "_:b16409", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8399", + "@id": "_:b16400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21406", + "@id": "_:b16408", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8403", + "@id": "_:b16396", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "result": { - "@id": "_:b15853", + "@id": "_:b15940", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8406", + "@id": "_:b16403", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "result": { - "@id": "_:b21383", + "@id": "_:b16411", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8395", + "@id": "_:b16402", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", "result": { - "@id": "_:b8396", + "@id": "_:b16410", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @propagate value", + "title": "@propagate must be boolean valued", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c030-in.jsonld", + "rdfs:comment": "@propagate must be boolean valued" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20585", + "@id": "_:b5764", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/ep03-in.jsonld", - "mf:result": "invalid @version value", - "title": "@version must be 1.1", - "rdfs:comment": "If @version is specified, it must be 1.1", "assertions": [ { - "@id": "_:b20588", + "@id": "_:b5771", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "result": { - "@id": "_:b25020", + "@id": "_:b26471", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20583", + "@id": "_:b5765", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20584", + "@id": "_:b18317", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20590", + "@id": "_:b5772", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25648", + "@id": "_:b9858", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20594", + "@id": "_:b5769", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20864", + "@id": "_:b25749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20593", + "@id": "_:b5773", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "result": { - "@id": "_:b15200", + "@id": "_:b14377", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20586", + "@id": "_:b5762", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21303", + "@id": "_:b5763", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20592", + "@id": "_:b5768", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23320", + "@id": "_:b24149", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20587", + "@id": "_:b5766", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "result": { - "@id": "_:b23655", + "@id": "_:b17227", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b20591", + "@id": "_:b5767", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "result": { - "@id": "_:b24930", + "@id": "_:b23350", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20589", + "@id": "_:b5770", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", "result": { - "@id": "_:b25647", + "@id": "_:b24980", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c031-out.jsonld", + "title": "@context resolutions respects relative URLs.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c031-in.jsonld", + "rdfs:comment": "URL resolution follows RFC3986" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er01-in.jsonld", - "mf:result": "keyword redefinition", - "title": "Keywords cannot be aliased to other keywords", - "rdfs:comment": "Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b979", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b9187", + "@id": "_:b981", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "result": { - "@id": "_:b26196", + "@id": "_:b16179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9182", + "@id": "_:b985", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12467", + "@id": "_:b21780", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9180", + "@id": "_:b986", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12181", + "@id": "_:b1070", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9186", + "@id": "_:b983", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6502", + "@id": "_:b25986", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9188", + "@id": "_:b982", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "result": { - "@id": "_:b26061", + "@id": "_:b25613", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9183", + "@id": "_:b977", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24495", + "@id": "_:b978", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9178", + "@id": "_:b984", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9179", + "@id": "_:b25732", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9181", + "@id": "_:b987", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "result": { - "@id": "_:b15382", + "@id": "_:b3410", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9184", + "@id": "_:b980", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "result": { - "@id": "_:b26072", + "@id": "_:b12487", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9185", + "@id": "_:b988", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", "result": { - "@id": "_:b26155", + "@id": "_:b25987", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid scoped context", + "title": "Unused embedded context with error.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c032-in.jsonld", + "rdfs:comment": "An embedded context which is never used should still be checked." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er04-in.jsonld", - "mf:result": "loading remote context failed", - "title": "Error dereferencing a remote context", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context dereference results in an error", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b553", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8698", + "@id": "_:b1282", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "result": { - "@id": "_:b14162", + "@id": "_:b18550", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8700", + "@id": "_:b1281", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16494", + "@id": "_:b25394", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8699", + "@id": "_:b1283", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16493", + "@id": "_:b9301", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8702", + "@id": "_:b1279", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16496", + "@id": "_:b24271", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8703", + "@id": "_:b1274", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "result": { - "@id": "_:b16497", + "@id": "_:b1275", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8704", + "@id": "_:b1278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16498", + "@id": "_:b23975", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8701", + "@id": "_:b1276", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16495", + "@id": "_:b19394", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8697", + "@id": "_:b1277", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "result": { - "@id": "_:b12517", + "@id": "_:b23682", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8705", + "@id": "_:b1280", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "result": { - "@id": "_:b16499", + "@id": "_:b20364", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8695", + "@id": "_:b1284", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", "result": { - "@id": "_:b8696", + "@id": "_:b18921", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid scoped context", + "title": "Unused context with an embedded context error.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c033-in.jsonld", + "rdfs:comment": "An unused context with an embedded context should still be checked." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8865", + "@id": "_:b5386", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er05-in.jsonld", - "mf:result": "invalid remote context", - "title": "Invalid remote context", - "rdfs:comment": "Verifies that an exception is raised on expansion when a remote context is not an object containing @context", "assertions": [ { - "@id": "_:b8872", + "@id": "_:b5388", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "result": { - "@id": "_:b12797", + "@id": "_:b18335", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8868", + "@id": "_:b5384", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21698", + "@id": "_:b5385", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8873", + "@id": "_:b5391", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26852", + "@id": "_:b24567", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8867", + "@id": "_:b5387", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20632", + "@id": "_:b14936", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8874", + "@id": "_:b5394", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "result": { - "@id": "_:b21103", + "@id": "_:b15786", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8871", + "@id": "_:b5393", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18768", + "@id": "_:b25299", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8866", + "@id": "_:b5395", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16488", + "@id": "_:b24142", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8870", + "@id": "_:b5392", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "result": { - "@id": "_:b24735", + "@id": "_:b21761", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8863", + "@id": "_:b5389", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "result": { - "@id": "_:b8864", + "@id": "_:b23650", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8869", + "@id": "_:b5390", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", "result": { - "@id": "_:b23866", + "@id": "_:b24523", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c034-out.jsonld", + "title": "Remote scoped context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c034-in.jsonld", + "rdfs:comment": "Scoped contexts may be externally loaded." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er06-in.jsonld", - "mf:result": "invalid local context", - "title": "Invalid local context", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context is not a string or object", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b13288", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8181", + "@id": "_:b13289", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "result": { - "@id": "_:b8236", + "@id": "_:b15073", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8183", + "@id": "_:b13291", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8238", + "@id": "_:b23140", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8177", + "@id": "_:b13292", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8232", + "@id": "_:b22791", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8175", + "@id": "_:b13295", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8176", + "@id": "_:b23947", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8179", + "@id": "_:b13294", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "result": { - "@id": "_:b8234", + "@id": "_:b25809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8184", + "@id": "_:b13293", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8239", + "@id": "_:b14876", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8180", + "@id": "_:b13290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8235", + "@id": "_:b19231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8178", + "@id": "_:b13297", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "result": { - "@id": "_:b8233", + "@id": "_:b22841", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8185", + "@id": "_:b13296", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "result": { - "@id": "_:b8240", + "@id": "_:b26972", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8182", + "@id": "_:b13286", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", "result": { - "@id": "_:b8237", + "@id": "_:b13287", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c035-out.jsonld", + "title": "Term scoping with embedded contexts.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c035-in.jsonld", + "rdfs:comment": "Terms should make use of @vocab relative to the scope in which the term was defined." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er07-in.jsonld", - "mf:result": "invalid base IRI", - "title": "Invalid base IRI", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @base", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16181", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10338", + "@id": "_:b16180", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "result": { - "@id": "_:b18947", + "@id": "_:b8414", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10342", + "@id": "_:b16185", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18950", + "@id": "_:b24327", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10336", + "@id": "_:b16188", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16728", + "@id": "_:b26971", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10339", + "@id": "_:b16187", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18948", + "@id": "_:b25726", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10345", + "@id": "_:b16189", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "result": { - "@id": "_:b18953", + "@id": "_:b26568", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10343", + "@id": "_:b16184", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18951", + "@id": "_:b21524", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10340", + "@id": "_:b16183", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1204", + "@id": "_:b22478", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10341", + "@id": "_:b16182", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "result": { - "@id": "_:b18949", + "@id": "_:b16718", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10337", + "@id": "_:b16186", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "result": { - "@id": "_:b18866", + "@id": "_:b26723", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10344", + "@id": "_:b16190", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", "result": { - "@id": "_:b18952", + "@id": "_:b26659", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di01-out.jsonld", + "title": "Expand string using default and term directions", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di01-in.jsonld", + "rdfs:comment": "Strings are coerced to have @direction based on default and term direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er08-in.jsonld", - "mf:result": "invalid vocab mapping", - "title": "Invalid vocab mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9966", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8971", + "@id": "_:b19316", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "result": { - "@id": "_:b8981", + "@id": "_:b20649", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8973", + "@id": "_:b19311", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7878", + "@id": "_:b23220", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8970", + "@id": "_:b19312", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8980", + "@id": "_:b24202", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8977", + "@id": "_:b19317", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8985", + "@id": "_:b9905", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8976", + "@id": "_:b19307", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "result": { - "@id": "_:b8984", + "@id": "_:b19308", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8974", + "@id": "_:b19314", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5026", + "@id": "_:b24234", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8978", + "@id": "_:b19315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8986", + "@id": "_:b6998", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8969", + "@id": "_:b19313", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "result": { - "@id": "_:b8979", + "@id": "_:b24233", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8972", + "@id": "_:b19309", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "result": { - "@id": "_:b8982", + "@id": "_:b18660", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8975", + "@id": "_:b19310", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", "result": { - "@id": "_:b8983", + "@id": "_:b22952", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di02-out.jsonld", + "title": "Expand string using default and term directions and languages", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di02-in.jsonld", + "rdfs:comment": "Strings are coerced to have @direction based on default and term direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er09-in.jsonld", - "mf:result": "invalid default language", - "title": "Invalid default language", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @language", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10204", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8430", + "@id": "_:b10210", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "result": { - "@id": "_:b26822", + "@id": "_:b8791", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8429", + "@id": "_:b10202", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26955", + "@id": "_:b10203", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8425", + "@id": "_:b10206", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24608", + "@id": "_:b21484", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8420", + "@id": "_:b10209", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8421", + "@id": "_:b14482", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8426", + "@id": "_:b10205", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "result": { - "@id": "_:b25568", + "@id": "_:b20134", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8424", + "@id": "_:b10211", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22703", + "@id": "_:b24848", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8427", + "@id": "_:b10212", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25608", + "@id": "_:b26828", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8423", + "@id": "_:b10207", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "result": { - "@id": "_:b21804", + "@id": "_:b18264", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8428", + "@id": "_:b10208", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "result": { - "@id": "_:b26634", + "@id": "_:b5231", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8422", + "@id": "_:b10213", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", "result": { - "@id": "_:b12653", + "@id": "_:b26934", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di03-out.jsonld", + "title": "expand list values with @direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di03-in.jsonld", + "rdfs:comment": "List values where the term has @direction are used in expansion." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er10-in.jsonld", - "mf:result": "cyclic IRI mapping", - "title": "Cyclic IRI mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a cyclic IRI mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1980", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7974", + "@id": "_:b1989", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "result": { - "@id": "_:b19449", + "@id": "_:b2078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7978", + "@id": "_:b1984", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23002", + "@id": "_:b11462", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7980", + "@id": "_:b1983", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16843", + "@id": "_:b15778", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7972", + "@id": "_:b1987", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7973", + "@id": "_:b15781", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7977", + "@id": "_:b1988", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "result": { - "@id": "_:b22483", + "@id": "_:b15782", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7979", + "@id": "_:b1986", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24066", + "@id": "_:b15780", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7976", + "@id": "_:b1985", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21699", + "@id": "_:b15779", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7982", + "@id": "_:b1982", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "result": { - "@id": "_:b14540", + "@id": "_:b11228", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7981", + "@id": "_:b1978", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "result": { - "@id": "_:b9686", + "@id": "_:b1979", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7975", + "@id": "_:b1981", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", "result": { - "@id": "_:b21109", + "@id": "_:b9147", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di04-out.jsonld", + "title": "simple language map with term direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di04-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er11-in.jsonld", - "mf:result": "invalid term definition", - "title": "Invalid term definition", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid term definition is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5148", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b22837", + "@id": "_:b5155", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "result": { - "@id": "_:b18007", + "@id": "_:b18795", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22832", + "@id": "_:b5152", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18129", + "@id": "_:b19880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22833", + "@id": "_:b5156", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23038", + "@id": "_:b21965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22834", + "@id": "_:b5154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23145", + "@id": "_:b16468", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22835", + "@id": "_:b5146", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "result": { - "@id": "_:b6684", + "@id": "_:b5147", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22827", + "@id": "_:b5150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22828", + "@id": "_:b22476", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22829", + "@id": "_:b5157", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24300", + "@id": "_:b26070", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22831", + "@id": "_:b5151", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "result": { - "@id": "_:b24301", + "@id": "_:b8562", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b22830", + "@id": "_:b5153", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "result": { - "@id": "_:b10402", + "@id": "_:b25367", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22836", + "@id": "_:b5149", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", "result": { - "@id": "_:b24302", + "@id": "_:b19438", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di05-out.jsonld", + "title": "simple language mapwith overriding term direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di05-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er12-in.jsonld", - "mf:result": "invalid type mapping", - "title": "Invalid type mapping (not a string)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14924", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b1399", + "@id": "_:b14927", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "result": { - "@id": "_:b1409", + "@id": "_:b23126", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1400", + "@id": "_:b14925", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1410", + "@id": "_:b19387", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1393", + "@id": "_:b14929", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1403", + "@id": "_:b25657", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1394", + "@id": "_:b14932", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1404", + "@id": "_:b23002", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1397", + "@id": "_:b14930", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "result": { - "@id": "_:b1407", + "@id": "_:b13377", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1398", + "@id": "_:b14928", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1408", + "@id": "_:b24538", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1402", + "@id": "_:b14926", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1412", + "@id": "_:b20541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1401", + "@id": "_:b14931", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "result": { - "@id": "_:b1411", + "@id": "_:b20033", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1396", + "@id": "_:b14922", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "result": { - "@id": "_:b1406", + "@id": "_:b14923", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1395", + "@id": "_:b14933", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", "result": { - "@id": "_:b1405", + "@id": "_:b24406", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di06-out.jsonld", + "title": "simple language mapwith overriding null direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di06-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er13-in.jsonld", - "mf:result": "invalid type mapping", - "title": "Invalid type mapping (not absolute IRI)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4099", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b1585", + "@id": "_:b4108", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "result": { - "@id": "_:b1595", + "@id": "_:b26235", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1589", + "@id": "_:b4097", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1599", + "@id": "_:b4098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1587", + "@id": "_:b4104", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1597", + "@id": "_:b26299", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1591", + "@id": "_:b4102", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1601", + "@id": "_:b23894", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1590", + "@id": "_:b4107", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "result": { - "@id": "_:b1600", + "@id": "_:b7082", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1592", + "@id": "_:b4105", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1602", + "@id": "_:b9803", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1593", + "@id": "_:b4101", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1603", + "@id": "_:b19463", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1588", + "@id": "_:b4106", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "result": { - "@id": "_:b1598", + "@id": "_:b24811", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1594", + "@id": "_:b4100", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "result": { - "@id": "_:b1604", + "@id": "_:b10117", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1586", + "@id": "_:b4103", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", "result": { - "@id": "_:b1596", + "@id": "_:b25778", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di07-out.jsonld", + "title": "simple language map with mismatching term direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di07-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er14-in.jsonld", - "mf:result": "invalid reverse property", - "title": "Invalid reverse property (contains @id)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid reverse property is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5233", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10354", + "@id": "_:b5236", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "result": { - "@id": "_:b23877", + "@id": "_:b5246", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10355", + "@id": "_:b5237", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25318", + "@id": "_:b5247", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10350", + "@id": "_:b5240", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17147", + "@id": "_:b5250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10356", + "@id": "_:b5234", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21030", + "@id": "_:b5244", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10358", + "@id": "_:b5239", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "result": { - "@id": "_:b24181", + "@id": "_:b5249", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10357", + "@id": "_:b5238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16350", + "@id": "_:b5248", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10348", + "@id": "_:b5242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10349", + "@id": "_:b5252", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10351", + "@id": "_:b5235", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "result": { - "@id": "_:b17845", + "@id": "_:b5245", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10353", + "@id": "_:b5241", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "result": { - "@id": "_:b21473", + "@id": "_:b5251", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10352", + "@id": "_:b5243", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", "result": { - "@id": "_:b19027", + "@id": "_:b5253", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid base direction", + "title": "@direction must be one of ltr or rtl", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di08-in.jsonld", + "rdfs:comment": "Generate an error if @direction has illegal value." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er15-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid IRI mapping (@reverse not a string)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1075", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8250", + "@id": "_:b1081", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "result": { - "@id": "_:b26706", + "@id": "_:b1091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8241", + "@id": "_:b1085", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8242", + "@id": "_:b1095", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8247", + "@id": "_:b1080", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25472", + "@id": "_:b1090", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8251", + "@id": "_:b1076", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7599", + "@id": "_:b1086", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8243", + "@id": "_:b1079", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "result": { - "@id": "_:b13359", + "@id": "_:b1089", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8244", + "@id": "_:b1077", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10883", + "@id": "_:b1087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8245", + "@id": "_:b1083", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23106", + "@id": "_:b1093", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8246", + "@id": "_:b1084", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "result": { - "@id": "_:b23646", + "@id": "_:b1094", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8249", + "@id": "_:b1078", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "result": { - "@id": "_:b26318", + "@id": "_:b1088", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8248", + "@id": "_:b1082", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", "result": { - "@id": "_:b25249", + "@id": "_:b1092", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object", + "title": "@direction is incompatible with @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di09-in.jsonld", + "rdfs:comment": "Value objects can have either @type but not @language or @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er17-in.jsonld", - "mf:result": "invalid reverse property", - "title": "Invalid reverse property (invalid @container)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid reverse property is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14940", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7560", + "@id": "_:b14949", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "result": { - "@id": "_:b21508", + "@id": "_:b19519", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7558", + "@id": "_:b14938", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25071", + "@id": "_:b14939", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7556", + "@id": "_:b14944", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22970", + "@id": "_:b19515", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7559", + "@id": "_:b14941", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24027", + "@id": "_:b19232", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7555", + "@id": "_:b14948", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "result": { - "@id": "_:b14521", + "@id": "_:b19518", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7562", + "@id": "_:b14945", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19051", + "@id": "_:b19516", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7554", + "@id": "_:b14943", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1203", + "@id": "_:b15766", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7561", + "@id": "_:b14942", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "result": { - "@id": "_:b25029", + "@id": "_:b19514", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7563", + "@id": "_:b14946", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "result": { - "@id": "_:b22322", + "@id": "_:b19517", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7557", + "@id": "_:b14947", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", "result": { - "@id": "_:b25070", + "@id": "_:b19074", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "Invalid keyword in term definition", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/ec01-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid term definition is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er18-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid IRI mapping (@id not a string)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14881", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2029", + "@id": "_:b14884", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "result": { - "@id": "_:b25408", + "@id": "_:b1474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2025", + "@id": "_:b14879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23921", + "@id": "_:b14880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2030", + "@id": "_:b14885", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25409", + "@id": "_:b24474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2027", + "@id": "_:b14883", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25406", + "@id": "_:b18077", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2024", + "@id": "_:b14890", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "result": { - "@id": "_:b16083", + "@id": "_:b24478", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2021", + "@id": "_:b14889", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2022", + "@id": "_:b24477", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2023", + "@id": "_:b14887", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6682", + "@id": "_:b8328", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2028", + "@id": "_:b14888", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "result": { - "@id": "_:b25407", + "@id": "_:b24476", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2031", + "@id": "_:b14882", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "result": { - "@id": "_:b24199", + "@id": "_:b16013", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2026", + "@id": "_:b14886", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", "result": { - "@id": "_:b25140", + "@id": "_:b24475", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "keyword redefinition", + "title": "Term definition on @type with empty map", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/ec02-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised if @type is defined as a term with an empty map" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er19-in.jsonld", - "mf:result": "invalid keyword alias", - "title": "Invalid keyword alias (@context)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid keyword alias is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2763", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7383", + "@id": "_:b2764", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "result": { - "@id": "_:b8581", + "@id": "_:b2774", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7379", + "@id": "_:b2770", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8577", + "@id": "_:b2780", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7384", + "@id": "_:b2772", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8582", + "@id": "_:b2782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7385", + "@id": "_:b2765", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8583", + "@id": "_:b2775", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7380", + "@id": "_:b2773", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "result": { - "@id": "_:b8578", + "@id": "_:b2783", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7382", + "@id": "_:b2769", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8580", + "@id": "_:b2779", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7387", + "@id": "_:b2768", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8585", + "@id": "_:b2778", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7386", + "@id": "_:b2767", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "result": { - "@id": "_:b8584", + "@id": "_:b2777", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7377", + "@id": "_:b2771", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "result": { - "@id": "_:b7378", + "@id": "_:b2781", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7381", + "@id": "_:b2766", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", "result": { - "@id": "_:b8579", + "@id": "_:b2776", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "title": "Invalid container mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/em01-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er20-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid IRI mapping (no vocab mapping)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2646", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2231", + "@id": "_:b2647", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "result": { - "@id": "_:b23302", + "@id": "_:b14120", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2229", + "@id": "_:b2653", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21509", + "@id": "_:b22949", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2233", + "@id": "_:b2644", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10731", + "@id": "_:b2645", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2234", + "@id": "_:b2651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20451", + "@id": "_:b17965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2236", + "@id": "_:b2648", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "result": { - "@id": "_:b23304", + "@id": "_:b20005", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2228", + "@id": "_:b2652", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6955", + "@id": "_:b22948", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2230", + "@id": "_:b2649", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21073", + "@id": "_:b22946", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2226", + "@id": "_:b2650", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "result": { - "@id": "_:b2227", + "@id": "_:b22947", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2235", + "@id": "_:b2655", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "result": { - "@id": "_:b23303", + "@id": "_:b22951", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2232", + "@id": "_:b2654", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", "result": { - "@id": "_:b17986", + "@id": "_:b22950", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "@nest MUST NOT have a string value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en01-in.jsonld", + "rdfs:comment": "container: @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4320", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b9111", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er21-in.jsonld", - "mf:result": "invalid container mapping", - "title": "Invalid container mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found", "assertions": [ { - "@id": "_:b4328", + "@id": "_:b9121", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "result": { - "@id": "_:b11625", + "@id": "_:b24439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4324", + "@id": "_:b9114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11621", + "@id": "_:b20433", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4327", + "@id": "_:b9115", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11624", + "@id": "_:b22104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4321", + "@id": "_:b9112", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11619", + "@id": "_:b11986", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4322", + "@id": "_:b9120", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "result": { - "@id": "_:b10474", + "@id": "_:b25177", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4325", + "@id": "_:b9119", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11622", + "@id": "_:b25176", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4329", + "@id": "_:b9118", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11626", + "@id": "_:b25175", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4326", + "@id": "_:b9116", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "result": { - "@id": "_:b11623", + "@id": "_:b16470", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4318", + "@id": "_:b9117", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "result": { - "@id": "_:b4319", + "@id": "_:b24935", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4323", + "@id": "_:b9113", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", "result": { - "@id": "_:b11620", + "@id": "_:b16644", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "@nest MUST NOT have a boolen value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en02-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er22-in.jsonld", - "mf:result": "invalid language mapping", - "title": "Invalid language mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid language mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2795", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b9847", + "@id": "_:b2803", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "result": { - "@id": "_:b2069", + "@id": "_:b22688", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9850", + "@id": "_:b2799", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5273", + "@id": "_:b24402", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9846", + "@id": "_:b2802", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17291", + "@id": "_:b22470", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9845", + "@id": "_:b2801", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17290", + "@id": "_:b24745", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9849", + "@id": "_:b2805", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "result": { - "@id": "_:b17293", + "@id": "_:b20576", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9841", + "@id": "_:b2796", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9842", + "@id": "_:b17274", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9844", + "@id": "_:b2804", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17289", + "@id": "_:b23019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9843", + "@id": "_:b2797", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "result": { - "@id": "_:b10501", + "@id": "_:b7223", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9851", + "@id": "_:b2798", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "result": { - "@id": "_:b17294", + "@id": "_:b22787", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9848", + "@id": "_:b2800", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", "result": { - "@id": "_:b17292", + "@id": "_:b19351", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "@nest MUST NOT have a numeric value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en03-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er23-in.jsonld", - "mf:result": "invalid type mapping", - "title": "Invalid IRI mapping (relative IRI in @type)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8263", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b4703", + "@id": "_:b8268", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "result": { - "@id": "_:b10529", + "@id": "_:b23860", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4702", + "@id": "_:b8269", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9906", + "@id": "_:b23108", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4710", + "@id": "_:b8266", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8348", + "@id": "_:b6264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4709", + "@id": "_:b8264", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21887", + "@id": "_:b14439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4705", + "@id": "_:b8271", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "result": { - "@id": "_:b21883", + "@id": "_:b26416", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4704", + "@id": "_:b8270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4179", + "@id": "_:b26632", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4700", + "@id": "_:b8272", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4701", + "@id": "_:b13253", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4708", + "@id": "_:b8265", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "result": { - "@id": "_:b21886", + "@id": "_:b12836", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4706", + "@id": "_:b8267", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "result": { - "@id": "_:b21884", + "@id": "_:b3425", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4707", + "@id": "_:b8261", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", "result": { - "@id": "_:b21885", + "@id": "_:b8262", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "@nest MUST NOT have a value object value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en04-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er25-in.jsonld", - "mf:result": "invalid reverse property map", - "title": "Invalid reverse property map", - "rdfs:comment": "Verifies that an exception is raised in Expansion when a invalid reverse property map is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2133", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b14373", + "@id": "_:b2135", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "result": { - "@id": "_:b24383", + "@id": "_:b16155", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14371", + "@id": "_:b2139", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12495", + "@id": "_:b24679", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14375", + "@id": "_:b2142", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26157", + "@id": "_:b24681", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14377", + "@id": "_:b2136", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23649", + "@id": "_:b22371", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14372", + "@id": "_:b2137", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "result": { - "@id": "_:b24942", + "@id": "_:b20859", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14367", + "@id": "_:b2134", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14368", + "@id": "_:b13252", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14369", + "@id": "_:b2131", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22803", + "@id": "_:b2132", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14374", + "@id": "_:b2140", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "result": { - "@id": "_:b20539", + "@id": "_:b23513", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14370", + "@id": "_:b2141", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "result": { - "@id": "_:b24917", + "@id": "_:b24680", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14376", + "@id": "_:b2138", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", "result": { - "@id": "_:b18595", + "@id": "_:b24678", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "title": "does not allow a keyword other than @nest for the value of @nest", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en05-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er26-in.jsonld", - "mf:result": "colliding keywords", - "title": "Colliding keywords", - "rdfs:comment": "Verifies that an exception is raised in Expansion when colliding keywords are found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4700", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10850", + "@id": "_:b4708", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "result": { - "@id": "_:b23893", + "@id": "_:b18723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10849", + "@id": "_:b4701", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23287", + "@id": "_:b9777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10854", + "@id": "_:b4698", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25154", + "@id": "_:b4699", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10857", + "@id": "_:b4704", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22435", + "@id": "_:b18720", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10856", + "@id": "_:b4709", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "result": { - "@id": "_:b24225", + "@id": "_:b18724", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10853", + "@id": "_:b4702", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16573", + "@id": "_:b18380", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10848", + "@id": "_:b4705", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22502", + "@id": "_:b18721", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10852", + "@id": "_:b4707", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "result": { - "@id": "_:b26631", + "@id": "_:b17326", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10851", + "@id": "_:b4703", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "result": { - "@id": "_:b26522", + "@id": "_:b18719", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10855", + "@id": "_:b4706", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", "result": { - "@id": "_:b26487", + "@id": "_:b18722", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property", + "title": "does not allow @nest with @reverse", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en06-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er27-in.jsonld", - "mf:result": "invalid @id value", - "title": "Invalid @id value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @id value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b13457", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b3872", + "@id": "_:b13461", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "result": { - "@id": "_:b25169", + "@id": "_:b10021", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3875", + "@id": "_:b13465", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23736", + "@id": "_:b13474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3869", + "@id": "_:b13462", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20315", + "@id": "_:b13471", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3870", + "@id": "_:b13459", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21774", + "@id": "_:b13469", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3877", + "@id": "_:b13466", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "result": { - "@id": "_:b23330", + "@id": "_:b13475", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3873", + "@id": "_:b13464", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25416", + "@id": "_:b13473", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3876", + "@id": "_:b13463", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25417", + "@id": "_:b13472", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3874", + "@id": "_:b13467", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "result": { - "@id": "_:b20077", + "@id": "_:b13476", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3871", + "@id": "_:b13460", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "result": { - "@id": "_:b24374", + "@id": "_:b13470", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3868", + "@id": "_:b13458", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", "result": { - "@id": "_:b10726", + "@id": "_:b13468", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "processing mode conflict", + "title": "processingMode json-ld-1.0 conflicts with @version: 1.1", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/ep02-in.jsonld", + "rdfs:comment": "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er28-in.jsonld", - "mf:result": "invalid type value", - "title": "Invalid type value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid type value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4871", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b13263", + "@id": "_:b4872", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "result": { - "@id": "_:b13273", + "@id": "_:b8964", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13261", + "@id": "_:b4873", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13271", + "@id": "_:b13574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13262", + "@id": "_:b4875", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13272", + "@id": "_:b24792", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13268", + "@id": "_:b4880", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13278", + "@id": "_:b24794", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13269", + "@id": "_:b4878", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "result": { - "@id": "_:b8046", + "@id": "_:b23219", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13260", + "@id": "_:b4876", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13270", + "@id": "_:b17769", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13266", + "@id": "_:b4879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13276", + "@id": "_:b8473", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13264", + "@id": "_:b4877", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "result": { - "@id": "_:b13274", + "@id": "_:b24793", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13265", + "@id": "_:b4869", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "result": { - "@id": "_:b13275", + "@id": "_:b4870", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13267", + "@id": "_:b4874", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", "result": { - "@id": "_:b13277", + "@id": "_:b20855", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @version value", + "title": "@version must be 1.1", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/ep03-in.jsonld", + "rdfs:comment": "If @version is specified, it must be 1.1" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er29-in.jsonld", - "mf:result": "invalid value object value", - "title": "Invalid value object value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object value is found", "assertions": [ { - "@id": "_:b8210", + "@id": "_:b8790", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "result": { - "@id": "_:b1356", + "@id": "_:b19037", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8211", + "@id": "_:b8783", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10281", + "@id": "_:b14551", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8212", + "@id": "_:b8782", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16058", + "@id": "_:b10119", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8217", + "@id": "_:b8785", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26581", + "@id": "_:b19034", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8218", + "@id": "_:b8788", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "result": { - "@id": "_:b26392", + "@id": "_:b19036", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8216", + "@id": "_:b8786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15628", + "@id": "_:b19035", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8215", + "@id": "_:b8780", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5502", + "@id": "_:b8781", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8214", + "@id": "_:b8787", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "result": { - "@id": "_:b24941", + "@id": "_:b13268", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8213", + "@id": "_:b8784", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "result": { - "@id": "_:b22070", + "@id": "_:b19033", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8219", + "@id": "_:b8789", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", "result": { - "@id": "_:b24390", + "@id": "_:b14291", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "keyword redefinition", + "title": "Keywords cannot be aliased to other keywords", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er01-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er30-in.jsonld", - "mf:result": "invalid language-tagged string", - "title": "Invalid language-tagged string", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found", "assertions": [ { - "@id": "_:b4426", + "@id": "_:b17794", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "result": { - "@id": "_:b19799", + "@id": "_:b21493", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4424", + "@id": "_:b17787", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13483", + "@id": "_:b4521", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4422", + "@id": "_:b17789", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4423", + "@id": "_:b21489", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4427", + "@id": "_:b17793", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24340", + "@id": "_:b21492", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4430", + "@id": "_:b17784", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "result": { - "@id": "_:b21824", + "@id": "_:b17785", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4429", + "@id": "_:b17792", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24795", + "@id": "_:b21491", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4428", + "@id": "_:b17786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24794", + "@id": "_:b19755", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4432", + "@id": "_:b17791", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "result": { - "@id": "_:b4725", + "@id": "_:b21490", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4431", + "@id": "_:b17788", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "result": { - "@id": "_:b20341", + "@id": "_:b20834", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4425", + "@id": "_:b17790", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", "result": { - "@id": "_:b10747", + "@id": "_:b18603", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "loading remote context failed", + "title": "Error dereferencing a remote context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er04-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context dereference results in an error" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er31-in.jsonld", - "mf:result": "invalid @index value", - "title": "Invalid @index value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @index value value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10338", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b234", + "@id": "_:b17937", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "result": { - "@id": "_:b21359", + "@id": "_:b22741", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b225", + "@id": "_:b17939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12021", + "@id": "_:b24999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b231", + "@id": "_:b17942", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20858", + "@id": "_:b25672", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b229", + "@id": "_:b17936", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21356", + "@id": "_:b17967", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b228", + "@id": "_:b17944", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "result": { - "@id": "_:b21355", + "@id": "_:b26904", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b232", + "@id": "_:b17941", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21357", + "@id": "_:b15013", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b226", + "@id": "_:b17934", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21354", + "@id": "_:b17935", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b230", + "@id": "_:b17943", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "result": { - "@id": "_:b8649", + "@id": "_:b27018", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b233", + "@id": "_:b17938", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "result": { - "@id": "_:b21358", + "@id": "_:b24588", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b227", + "@id": "_:b17940", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", "result": { - "@id": "_:b19075", + "@id": "_:b14663", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid remote context", + "title": "Invalid remote context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er05-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a remote context is not an object containing @context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er33-in.jsonld", - "mf:result": "invalid @reverse value", - "title": "Invalid @reverse value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @reverse value is found", "assertions": [ { - "@id": "_:b7791", + "@id": "_:b15508", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "result": { - "@id": "_:b23032", + "@id": "_:b20546", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7790", + "@id": "_:b15513", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22780", + "@id": "_:b26102", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7793", + "@id": "_:b15510", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13417", + "@id": "_:b25240", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7795", + "@id": "_:b15516", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23035", + "@id": "_:b19075", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7797", + "@id": "_:b15514", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "result": { - "@id": "_:b23036", + "@id": "_:b26103", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7796", + "@id": "_:b15511", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17860", + "@id": "_:b25614", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7794", + "@id": "_:b15506", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23034", + "@id": "_:b15507", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7789", + "@id": "_:b15515", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "result": { - "@id": "_:b13770", + "@id": "_:b23970", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7792", + "@id": "_:b15512", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "result": { - "@id": "_:b23033", + "@id": "_:b25707", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7787", + "@id": "_:b15509", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", "result": { - "@id": "_:b7788", + "@id": "_:b3778", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid local context", + "title": "Invalid local context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er06-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context is not a string or object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er34-in.jsonld", - "mf:result": "invalid reverse property value", - "title": "Invalid reverse property value (in @reverse)", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid reverse property value is found", "assertions": [ { - "@id": "_:b1281", + "@id": "_:b7054", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "result": { - "@id": "_:b22978", + "@id": "_:b11742", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1277", + "@id": "_:b7056", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22285", + "@id": "_:b11744", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1278", + "@id": "_:b7050", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26232", + "@id": "_:b7620", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1275", + "@id": "_:b7052", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19439", + "@id": "_:b11740", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1282", + "@id": "_:b7058", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "result": { - "@id": "_:b14616", + "@id": "_:b11746", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1280", + "@id": "_:b7051", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26470", + "@id": "_:b11739", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1279", + "@id": "_:b7057", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25670", + "@id": "_:b11745", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1276", + "@id": "_:b7055", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "result": { - "@id": "_:b22782", + "@id": "_:b11743", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1272", + "@id": "_:b7048", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "result": { - "@id": "_:b1273", + "@id": "_:b7049", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1274", + "@id": "_:b7053", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", "result": { - "@id": "_:b18658", + "@id": "_:b11741", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid base IRI", + "title": "Invalid base IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er07-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @base" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er35-in.jsonld", - "mf:result": "invalid language map value", - "title": "Invalid language map value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language map value is found", "assertions": [ { - "@id": "_:b13760", + "@id": "_:b5837", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "result": { - "@id": "_:b26090", + "@id": "_:b13540", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13758", + "@id": "_:b5834", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1232", + "@id": "_:b13537", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13761", + "@id": "_:b5835", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18701", + "@id": "_:b13538", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13762", + "@id": "_:b5833", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24972", + "@id": "_:b13536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13759", + "@id": "_:b5839", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "result": { - "@id": "_:b24232", + "@id": "_:b13542", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13757", + "@id": "_:b5831", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24001", + "@id": "_:b13535", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13755", + "@id": "_:b5838", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17008", + "@id": "_:b13541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13756", + "@id": "_:b5832", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "result": { - "@id": "_:b19328", + "@id": "_:b4790", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13753", + "@id": "_:b5836", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "result": { - "@id": "_:b13754", + "@id": "_:b13539", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13763", + "@id": "_:b5830", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", "result": { - "@id": "_:b18553", + "@id": "_:b13534", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid vocab mapping", + "title": "Invalid vocab mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er08-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er36-in.jsonld", - "mf:result": "invalid reverse property value", - "title": "Invalid reverse property value (through coercion)", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid reverse property value is found", "assertions": [ { - "@id": "_:b13955", + "@id": "_:b433", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "result": { - "@id": "_:b26752", + "@id": "_:b443", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13951", + "@id": "_:b431", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24441", + "@id": "_:b441", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13952", + "@id": "_:b432", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25980", + "@id": "_:b442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13949", + "@id": "_:b436", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13950", + "@id": "_:b446", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13953", + "@id": "_:b429", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "result": { - "@id": "_:b25286", + "@id": "_:b439", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13956", + "@id": "_:b430", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26753", + "@id": "_:b440", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13958", + "@id": "_:b434", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23770", + "@id": "_:b444", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13959", + "@id": "_:b435", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "result": { - "@id": "_:b26373", + "@id": "_:b445", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13954", + "@id": "_:b428", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "result": { - "@id": "_:b25990", + "@id": "_:b438", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13957", + "@id": "_:b427", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", "result": { - "@id": "_:b19999", + "@id": "_:b437", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid default language", + "title": "Invalid default language", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er09-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er37-in.jsonld", - "mf:result": "invalid value object", - "title": "Invalid value object (unexpected keyword)", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object is found", "assertions": [ { - "@id": "_:b3717", + "@id": "_:b14485", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "result": { - "@id": "_:b23682", + "@id": "_:b14486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3712", + "@id": "_:b14493", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5190", + "@id": "_:b25372", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3714", + "@id": "_:b14490", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16920", + "@id": "_:b22700", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3719", + "@id": "_:b14491", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23515", + "@id": "_:b26116", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3710", + "@id": "_:b14495", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "result": { - "@id": "_:b3711", + "@id": "_:b18797", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3715", + "@id": "_:b14487", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20075", + "@id": "_:b15211", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3718", + "@id": "_:b14488", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24347", + "@id": "_:b23131", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3713", + "@id": "_:b14494", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "result": { - "@id": "_:b14661", + "@id": "_:b26663", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3716", + "@id": "_:b14492", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "result": { - "@id": "_:b9879", + "@id": "_:b22141", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3720", + "@id": "_:b14489", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", "result": { - "@id": "_:b13357", + "@id": "_:b25152", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "cyclic IRI mapping", + "title": "Cyclic IRI mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er10-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a cyclic IRI mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er38-in.jsonld", - "mf:result": "invalid value object", - "title": "Invalid value object (@type and @language)", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object is found", "assertions": [ { - "@id": "_:b6291", + "@id": "_:b488", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "result": { - "@id": "_:b22436", + "@id": "_:b24955", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6288", + "@id": "_:b489", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6289", + "@id": "_:b24956", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6296", + "@id": "_:b484", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22072", + "@id": "_:b18102", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6295", + "@id": "_:b480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24463", + "@id": "_:b1861", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6298", + "@id": "_:b486", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "result": { - "@id": "_:b23758", + "@id": "_:b24840", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6293", + "@id": "_:b487", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25152", + "@id": "_:b23244", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6290", + "@id": "_:b483", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18188", + "@id": "_:b20818", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6297", + "@id": "_:b482", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "result": { - "@id": "_:b25153", + "@id": "_:b19225", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6294", + "@id": "_:b481", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "result": { - "@id": "_:b22469", + "@id": "_:b16598", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6292", + "@id": "_:b485", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", "result": { - "@id": "_:b23612", + "@id": "_:b20154", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "Invalid term definition", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er11-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid term definition is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er39-in.jsonld", - "mf:result": "invalid language-tagged value", - "title": "Invalid language-tagged value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language-tagged value is found", "assertions": [ { - "@id": "_:b8195", + "@id": "_:b13596", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "result": { - "@id": "_:b20377", + "@id": "_:b13605", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8191", + "@id": "_:b13597", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23317", + "@id": "_:b13606", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8196", + "@id": "_:b13592", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24868", + "@id": "_:b13602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8189", + "@id": "_:b13593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11066", + "@id": "_:b13603", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8194", + "@id": "_:b13594", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "result": { - "@id": "_:b16472", + "@id": "_:b4109", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8188", + "@id": "_:b13591", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17288", + "@id": "_:b13601", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8190", + "@id": "_:b13599", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24398", + "@id": "_:b13608", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8186", + "@id": "_:b13598", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "result": { - "@id": "_:b8187", + "@id": "_:b13607", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8192", + "@id": "_:b13590", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "result": { - "@id": "_:b25414", + "@id": "_:b13600", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8193", + "@id": "_:b13595", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", "result": { - "@id": "_:b25415", + "@id": "_:b13604", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "Invalid type mapping (not a string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er12-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er40-in.jsonld", - "mf:result": "invalid typed value", - "title": "Invalid typed value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid typed value is found", "assertions": [ { - "@id": "_:b10965", + "@id": "_:b5730", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "result": { - "@id": "_:b10975", + "@id": "_:b8224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10968", + "@id": "_:b5731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10978", + "@id": "_:b8225", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10970", + "@id": "_:b5737", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10979", + "@id": "_:b8231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10967", + "@id": "_:b5728", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10977", + "@id": "_:b5729", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10971", + "@id": "_:b5733", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "result": { - "@id": "_:b10980", + "@id": "_:b8227", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10963", + "@id": "_:b5735", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10973", + "@id": "_:b8229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10966", + "@id": "_:b5734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10976", + "@id": "_:b8228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10969", + "@id": "_:b5736", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "result": { - "@id": "_:b7321", + "@id": "_:b8230", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10962", + "@id": "_:b5732", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "result": { - "@id": "_:b10972", + "@id": "_:b8226", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10964", + "@id": "_:b5738", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", "result": { - "@id": "_:b10974", + "@id": "_:b8232", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "Invalid type mapping (not absolute IRI)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er13-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er41-in.jsonld", - "mf:result": "invalid set or list object", - "title": "Invalid set or list object", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid set or list object is found", "assertions": [ { - "@id": "_:b4086", + "@id": "_:b18486", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "result": { - "@id": "_:b7115", + "@id": "_:b14102", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4082", + "@id": "_:b18488", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4083", + "@id": "_:b23286", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4085", + "@id": "_:b18487", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7114", + "@id": "_:b23121", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4091", + "@id": "_:b18492", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7120", + "@id": "_:b19888", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4090", + "@id": "_:b18482", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "result": { - "@id": "_:b7119", + "@id": "_:b18483", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4089", + "@id": "_:b18490", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7118", + "@id": "_:b24578", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4092", + "@id": "_:b18484", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7121", + "@id": "_:b18918", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4084", + "@id": "_:b18485", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "result": { - "@id": "_:b4470", + "@id": "_:b17137", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4088", + "@id": "_:b18489", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "result": { - "@id": "_:b7117", + "@id": "_:b21680", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4087", + "@id": "_:b18491", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", "result": { - "@id": "_:b7116", + "@id": "_:b26528", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property", + "title": "Invalid reverse property (contains @id)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er14-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid reverse property is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14554", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er42-in.jsonld", - "mf:result": "keyword redefinition", - "title": "Keywords may not be redefined in 1.0", - "rdfs:comment": "Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword", "assertions": [ { - "@id": "_:b14559", + "@id": "_:b4289", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "result": { - "@id": "_:b25971", + "@id": "_:b12136", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14552", + "@id": "_:b4293", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14553", + "@id": "_:b13480", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14557", + "@id": "_:b4292", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22507", + "@id": "_:b13479", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14562", + "@id": "_:b4290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25994", + "@id": "_:b13477", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14555", + "@id": "_:b4288", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "result": { - "@id": "_:b16143", + "@id": "_:b3821", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14556", + "@id": "_:b4291", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17767", + "@id": "_:b13478", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14563", + "@id": "_:b4296", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22559", + "@id": "_:b13483", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14558", + "@id": "_:b4295", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "result": { - "@id": "_:b4630", + "@id": "_:b13482", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14561", + "@id": "_:b4294", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "result": { - "@id": "_:b15384", + "@id": "_:b13481", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14560", + "@id": "_:b4297", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", "result": { - "@id": "_:b22058", + "@id": "_:b13484", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid IRI mapping (@reverse not a string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er15-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15238", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er43-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Term definition with @id: @type", - "rdfs:comment": "Expanding term mapping to @type uses @type syntax now illegal", "assertions": [ { - "@id": "_:b15245", + "@id": "_:b9050", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "result": { - "@id": "_:b17842", + "@id": "_:b25089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15241", + "@id": "_:b9057", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22626", + "@id": "_:b26422", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15243", + "@id": "_:b9047", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22628", + "@id": "_:b9048", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15247", + "@id": "_:b9049", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22631", + "@id": "_:b24164", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15244", + "@id": "_:b9051", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "result": { - "@id": "_:b22629", + "@id": "_:b25529", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15236", + "@id": "_:b9056", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15237", + "@id": "_:b1940", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15240", + "@id": "_:b9053", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5532", + "@id": "_:b26310", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15246", + "@id": "_:b9055", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "result": { - "@id": "_:b22630", + "@id": "_:b16987", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15239", + "@id": "_:b9052", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "result": { - "@id": "_:b17157", + "@id": "_:b25808", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15242", + "@id": "_:b9054", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", "result": { - "@id": "_:b22627", + "@id": "_:b25461", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property", + "title": "Invalid reverse property (invalid @container)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er17-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid reverse property is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9660", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er44-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Redefine terms looking like compact IRIs", - "rdfs:comment": "Term definitions may look like compact IRIs, but must be consistent.", "assertions": [ { - "@id": "_:b9658", + "@id": "_:b4402", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "result": { - "@id": "_:b9659", + "@id": "_:b4403", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9666", + "@id": "_:b4407", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25682", + "@id": "_:b10352", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9663", + "@id": "_:b4410", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24191", + "@id": "_:b10355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9667", + "@id": "_:b4411", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19293", + "@id": "_:b10356", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9661", + "@id": "_:b4405", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "result": { - "@id": "_:b18392", + "@id": "_:b10350", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9665", + "@id": "_:b4408", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20021", + "@id": "_:b10353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9662", + "@id": "_:b4412", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20454", + "@id": "_:b10357", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9668", + "@id": "_:b4409", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "result": { - "@id": "_:b26712", + "@id": "_:b10354", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9669", + "@id": "_:b4406", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "result": { - "@id": "_:b25162", + "@id": "_:b10351", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9664", + "@id": "_:b4404", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", "result": { - "@id": "_:b23523", + "@id": "_:b7702", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid IRI mapping (@id not a string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er18-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15693", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er48-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid term as relative IRI", - "rdfs:comment": "Verifies that a relative IRI cannot be used as a term.", "assertions": [ { - "@id": "_:b15699", + "@id": "_:b21263", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "result": { - "@id": "_:b26172", + "@id": "_:b25315", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15697", + "@id": "_:b21261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23975", + "@id": "_:b24487", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15691", + "@id": "_:b21260", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15692", + "@id": "_:b24047", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15698", + "@id": "_:b21265", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25599", + "@id": "_:b21945", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15700", + "@id": "_:b21259", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "result": { - "@id": "_:b26000", + "@id": "_:b23281", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15696", + "@id": "_:b21264", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19178", + "@id": "_:b24931", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15694", + "@id": "_:b21258", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18597", + "@id": "_:b20417", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15702", + "@id": "_:b21262", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "result": { - "@id": "_:b25104", + "@id": "_:b24582", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15701", + "@id": "_:b21267", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "result": { - "@id": "_:b14366", + "@id": "_:b25316", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15695", + "@id": "_:b21266", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", "result": { - "@id": "_:b19952", + "@id": "_:b24075", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid keyword alias", + "title": "Invalid keyword alias (@context)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er19-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid keyword alias is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12630", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er49-in.jsonld", - "mf:result": "invalid term definition", - "title": "A relative IRI cannot be used as a prefix", - "rdfs:comment": "Verifies that a relative IRI cannot be used as a term.", "assertions": [ { - "@id": "_:b12633", + "@id": "_:b14028", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "result": { - "@id": "_:b24417", + "@id": "_:b19775", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12635", + "@id": "_:b14018", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23451", + "@id": "_:b14019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12638", + "@id": "_:b14020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26213", + "@id": "_:b18686", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12637", + "@id": "_:b14022", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26179", + "@id": "_:b20548", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12628", + "@id": "_:b14024", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "result": { - "@id": "_:b12629", + "@id": "_:b25828", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12631", + "@id": "_:b14023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18209", + "@id": "_:b24991", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12632", + "@id": "_:b14021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22459", + "@id": "_:b19154", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12639", + "@id": "_:b14025", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "result": { - "@id": "_:b19543", + "@id": "_:b24860", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12636", + "@id": "_:b14027", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "result": { - "@id": "_:b25972", + "@id": "_:b14387", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12634", + "@id": "_:b14026", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", "result": { - "@id": "_:b25310", + "@id": "_:b18954", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid IRI mapping (no vocab mapping)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er20-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er50-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid reverse id", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b870", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b1877", + "@id": "_:b868", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "result": { - "@id": "_:b10045", + "@id": "_:b869", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1875", + "@id": "_:b871", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10043", + "@id": "_:b19899", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1881", + "@id": "_:b874", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10049", + "@id": "_:b23785", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1880", + "@id": "_:b878", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10048", + "@id": "_:b25549", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1876", + "@id": "_:b876", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "result": { - "@id": "_:b10044", + "@id": "_:b25548", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1873", + "@id": "_:b877", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1874", + "@id": "_:b10785", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1882", + "@id": "_:b875", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3231", + "@id": "_:b15085", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1879", + "@id": "_:b879", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "result": { - "@id": "_:b10047", + "@id": "_:b18135", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1878", + "@id": "_:b873", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "result": { - "@id": "_:b10046", + "@id": "_:b24489", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1883", + "@id": "_:b872", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", "result": { - "@id": "_:b10050", + "@id": "_:b20811", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "title": "Invalid container mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er21-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er51-in.jsonld", - "mf:result": "invalid value object value", - "title": "Invalid value object value using a value alias", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias", "assertions": [ { - "@id": "_:b3603", + "@id": "_:b6011", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "result": { - "@id": "_:b24914", + "@id": "_:b26351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3601", + "@id": "_:b6007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22919", + "@id": "_:b25003", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3596", + "@id": "_:b6005", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3597", + "@id": "_:b10784", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3605", + "@id": "_:b6008", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24102", + "@id": "_:b25746", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3604", + "@id": "_:b6004", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "result": { - "@id": "_:b5317", + "@id": "_:b19094", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3600", + "@id": "_:b6003", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2132", + "@id": "_:b13903", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3602", + "@id": "_:b6012", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20810", + "@id": "_:b20157", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3598", + "@id": "_:b6006", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "result": { - "@id": "_:b11821", + "@id": "_:b23867", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3599", + "@id": "_:b6009", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "result": { - "@id": "_:b16382", + "@id": "_:b20093", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3606", + "@id": "_:b6010", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", "result": { - "@id": "_:b26897", + "@id": "_:b22875", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid language mapping", + "title": "Invalid language mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er22-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid language mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er52-in.jsonld", - "mf:result": "invalid term definition", - "title": "Definition for the empty term", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains a definition for the empty term", "assertions": [ { - "@id": "_:b16097", + "@id": "_:b16000", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "result": { - "@id": "_:b23979", + "@id": "_:b18066", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16094", + "@id": "_:b16007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24787", + "@id": "_:b26991", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16091", + "@id": "_:b16008", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20634", + "@id": "_:b25993", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16096", + "@id": "_:b15998", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24521", + "@id": "_:b15999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16087", + "@id": "_:b16005", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "result": { - "@id": "_:b16088", + "@id": "_:b23299", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16093", + "@id": "_:b16004", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24204", + "@id": "_:b13285", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16092", + "@id": "_:b16002", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22336", + "@id": "_:b24285", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16095", + "@id": "_:b16003", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "result": { - "@id": "_:b17814", + "@id": "_:b25578", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16089", + "@id": "_:b16006", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "result": { - "@id": "_:b2181", + "@id": "_:b26644", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16090", + "@id": "_:b16001", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", "result": { - "@id": "_:b19794", + "@id": "_:b17286", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "Invalid IRI mapping (relative IRI in @type)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er23-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/er53-in.jsonld", - "mf:result": "invalid @prefix value", - "title": "Invalid prefix value", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @prefix value", "assertions": [ { - "@id": "_:b1972", + "@id": "_:b1815", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "result": { - "@id": "_:b21190", + "@id": "_:b1825", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1968", + "@id": "_:b1820", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1969", + "@id": "_:b1830", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1971", + "@id": "_:b1818", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19567", + "@id": "_:b1828", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1974", + "@id": "_:b1819", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21192", + "@id": "_:b1829", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1970", + "@id": "_:b1822", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "result": { - "@id": "_:b12686", + "@id": "_:b1832", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1973", + "@id": "_:b1814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21191", + "@id": "_:b1824", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1976", + "@id": "_:b1821", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21193", + "@id": "_:b1831", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1977", + "@id": "_:b1813", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "result": { - "@id": "_:b21194", + "@id": "_:b1823", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1978", + "@id": "_:b1817", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "result": { - "@id": "_:b2186", + "@id": "_:b1827", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1975", + "@id": "_:b1816", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", "result": { - "@id": "_:b7914", + "@id": "_:b1826", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property map", + "title": "Invalid reverse property map", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er25-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when a invalid reverse property map is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3724", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in01-out.nq", - "title": "Basic Included array", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b3725", + "@id": "_:b8730", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "result": { - "@id": "_:b10527", + "@id": "_:b21715", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3727", + "@id": "_:b8732", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20358", + "@id": "_:b26389", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3732", + "@id": "_:b8731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24595", + "@id": "_:b16337", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3726", + "@id": "_:b8724", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17071", + "@id": "_:b8725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3722", + "@id": "_:b8727", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "result": { - "@id": "_:b3723", + "@id": "_:b22126", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3731", + "@id": "_:b8734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19796", + "@id": "_:b9971", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3733", + "@id": "_:b8726", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26812", + "@id": "_:b20514", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3730", + "@id": "_:b8728", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "result": { - "@id": "_:b26436", + "@id": "_:b11898", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3728", + "@id": "_:b8729", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "result": { - "@id": "_:b25129", + "@id": "_:b26198", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3729", + "@id": "_:b8733", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", "result": { - "@id": "_:b22258", + "@id": "_:b23457", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "colliding keywords", + "title": "Colliding keywords", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er26-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when colliding keywords are found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15049", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in02-out.nq", - "title": "Basic Included object", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b15058", + "@id": "_:b11305", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "result": { - "@id": "_:b25082", + "@id": "_:b25106", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15051", + "@id": "_:b11306", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23148", + "@id": "_:b25107", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15054", + "@id": "_:b11307", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25080", + "@id": "_:b25108", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15053", + "@id": "_:b11309", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25079", + "@id": "_:b25110", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15056", + "@id": "_:b11308", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "result": { - "@id": "_:b22572", + "@id": "_:b25109", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15052", + "@id": "_:b11303", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25078", + "@id": "_:b22625", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15047", + "@id": "_:b11299", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15048", + "@id": "_:b11300", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15055", + "@id": "_:b11304", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "result": { - "@id": "_:b22907", + "@id": "_:b25105", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15050", + "@id": "_:b11301", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "result": { - "@id": "_:b12920", + "@id": "_:b11389", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15057", + "@id": "_:b11302", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", "result": { - "@id": "_:b25081", + "@id": "_:b22679", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @id value", + "title": "Invalid @id value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er27-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @id value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12366", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in03-out.nq", - "title": "Multiple properties mapping to @included are folded together", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b12373", + "@id": "_:b15824", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "result": { - "@id": "_:b15414", + "@id": "_:b5775", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12367", + "@id": "_:b15827", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23735", + "@id": "_:b25928", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12370", + "@id": "_:b15829", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21466", + "@id": "_:b11573", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12369", + "@id": "_:b15828", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26141", + "@id": "_:b26944", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12371", + "@id": "_:b15822", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "result": { - "@id": "_:b20351", + "@id": "_:b24106", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12374", + "@id": "_:b15825", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23754", + "@id": "_:b22984", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12375", + "@id": "_:b15830", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23497", + "@id": "_:b26643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12364", + "@id": "_:b15821", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "result": { - "@id": "_:b12365", + "@id": "_:b20420", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12372", + "@id": "_:b15826", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "result": { - "@id": "_:b7423", + "@id": "_:b25855", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12368", + "@id": "_:b15823", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", "result": { - "@id": "_:b21154", + "@id": "_:b25511", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type value", + "title": "Invalid type value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er28-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid type value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2072", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in04-out.nq", - "title": "Included containing @included", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b2081", + "@id": "_:b4270", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "result": { - "@id": "_:b22331", + "@id": "_:b9669", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2080", + "@id": "_:b4268", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22330", + "@id": "_:b20912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2079", + "@id": "_:b4264", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22329", + "@id": "_:b4265", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2078", + "@id": "_:b4272", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20347", + "@id": "_:b24850", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2070", + "@id": "_:b4266", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "result": { - "@id": "_:b2071", + "@id": "_:b10973", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2077", + "@id": "_:b4267", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22328", + "@id": "_:b16893", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2075", + "@id": "_:b4269", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22327", + "@id": "_:b10870", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2073", + "@id": "_:b4274", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "result": { - "@id": "_:b4613", + "@id": "_:b16156", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2074", + "@id": "_:b4273", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "result": { - "@id": "_:b15149", + "@id": "_:b23863", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2076", + "@id": "_:b4271", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", "result": { - "@id": "_:b15511", + "@id": "_:b25829", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object value", + "title": "Invalid value object value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er29-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b882", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in05-out.nq", - "title": "Property value with @included", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b17092", + "@id": "_:b17250", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "result": { - "@id": "_:b17101", + "@id": "_:b21085", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17089", + "@id": "_:b17253", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17098", + "@id": "_:b19670", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17090", + "@id": "_:b17248", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17099", + "@id": "_:b17249", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17091", + "@id": "_:b17251", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17100", + "@id": "_:b23482", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17087", + "@id": "_:b17258", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "result": { - "@id": "_:b17097", + "@id": "_:b22515", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17088", + "@id": "_:b17256", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6899", + "@id": "_:b9866", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17094", + "@id": "_:b17257", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1458", + "@id": "_:b23127", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17096", + "@id": "_:b17255", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "result": { - "@id": "_:b17104", + "@id": "_:b17952", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17093", + "@id": "_:b17252", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "result": { - "@id": "_:b17102", + "@id": "_:b23952", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17095", + "@id": "_:b17254", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", "result": { - "@id": "_:b17103", + "@id": "_:b24959", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid language-tagged string", + "title": "Invalid language-tagged string", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er30-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6516", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/in06-out.nq", - "title": "json.api example", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b6525", + "@id": "_:b12298", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "result": { - "@id": "_:b6535", + "@id": "_:b21092", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6517", + "@id": "_:b12294", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6527", + "@id": "_:b12295", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6521", + "@id": "_:b12299", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6531", + "@id": "_:b23619", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6518", + "@id": "_:b12302", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6528", + "@id": "_:b25351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6523", + "@id": "_:b12303", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "result": { - "@id": "_:b6533", + "@id": "_:b12609", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6520", + "@id": "_:b12301", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6530", + "@id": "_:b25350", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6519", + "@id": "_:b12304", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6529", + "@id": "_:b24887", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6522", + "@id": "_:b12297", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "result": { - "@id": "_:b6532", + "@id": "_:b22119", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6526", + "@id": "_:b12296", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "result": { - "@id": "_:b6536", + "@id": "_:b16774", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6524", + "@id": "_:b12300", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", "result": { - "@id": "_:b6534", + "@id": "_:b25349", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @index value", + "title": "Invalid @index value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er31-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @index value value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6039", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in07-in.jsonld", - "mf:result": "invalid @included value", - "title": "Error if @included value is a string", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b6045", + "@id": "_:b2810", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "result": { - "@id": "_:b15718", + "@id": "_:b15379", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6047", + "@id": "_:b2812", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26010", + "@id": "_:b21180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6044", + "@id": "_:b2809", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23396", + "@id": "_:b17038", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6043", + "@id": "_:b2813", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22932", + "@id": "_:b15773", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6048", + "@id": "_:b2814", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "result": { - "@id": "_:b23048", + "@id": "_:b26834", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6041", + "@id": "_:b2811", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20050", + "@id": "_:b23763", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6049", + "@id": "_:b2806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23165", + "@id": "_:b2807", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6042", + "@id": "_:b2808", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "result": { - "@id": "_:b22261", + "@id": "_:b12016", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6046", + "@id": "_:b2815", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "result": { - "@id": "_:b26009", + "@id": "_:b25501", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6040", + "@id": "_:b2816", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", "result": { - "@id": "_:b6084", + "@id": "_:b26885", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @reverse value", + "title": "Invalid @reverse value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er33-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @reverse value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b864", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in08-in.jsonld", - "mf:result": "invalid @included value", - "title": "Error if @included value is a value object", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b14244", + "@id": "_:b16210", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "result": { - "@id": "_:b24786", + "@id": "_:b16220", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14239", + "@id": "_:b16216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23047", + "@id": "_:b16226", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14243", + "@id": "_:b16214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b27005", + "@id": "_:b16224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14237", + "@id": "_:b16211", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14238", + "@id": "_:b16221", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14246", + "@id": "_:b16207", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "result": { - "@id": "_:b23913", + "@id": "_:b16217", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14240", + "@id": "_:b16213", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22537", + "@id": "_:b16223", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14247", + "@id": "_:b16215", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23441", + "@id": "_:b16225", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14245", + "@id": "_:b16212", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "result": { - "@id": "_:b22856", + "@id": "_:b16222", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14241", + "@id": "_:b16208", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "result": { - "@id": "_:b24617", + "@id": "_:b16218", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14242", + "@id": "_:b16209", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", "result": { - "@id": "_:b25650", + "@id": "_:b16219", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property value", + "title": "Invalid reverse property value (in @reverse)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er34-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15890", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/in09-in.jsonld", - "mf:result": "invalid @included value", - "title": "Error if @included value is a list object", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b15899", + "@id": "_:b7486", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "result": { - "@id": "_:b26273", + "@id": "_:b21563", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15888", + "@id": "_:b7484", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15889", + "@id": "_:b20506", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15895", + "@id": "_:b7491", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24115", + "@id": "_:b17597", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15891", + "@id": "_:b7487", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17914", + "@id": "_:b21564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15897", + "@id": "_:b7481", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "result": { - "@id": "_:b4197", + "@id": "_:b7482", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15894", + "@id": "_:b7485", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22983", + "@id": "_:b21562", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15892", + "@id": "_:b7489", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19955", + "@id": "_:b21566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15893", + "@id": "_:b7488", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "result": { - "@id": "_:b21032", + "@id": "_:b21565", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15896", + "@id": "_:b7483", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "result": { - "@id": "_:b25239", + "@id": "_:b20524", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15898", + "@id": "_:b7490", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", "result": { - "@id": "_:b15934", + "@id": "_:b20860", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid language map value", + "title": "Invalid language map value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er35-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language map value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b536", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js01-out.nq", - "title": "Transform JSON literal (boolean true)", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (boolean true).", "assertions": [ { - "@id": "_:b537", + "@id": "_:b3395", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "result": { - "@id": "_:b547", + "@id": "_:b26229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b545", + "@id": "_:b3393", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b555", + "@id": "_:b22527", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b542", + "@id": "_:b3385", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b552", + "@id": "_:b3386", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b539", + "@id": "_:b3392", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b549", + "@id": "_:b23078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b546", + "@id": "_:b3387", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "result": { - "@id": "_:b556", + "@id": "_:b9690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b541", + "@id": "_:b3388", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b551", + "@id": "_:b13103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b544", + "@id": "_:b3391", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b554", + "@id": "_:b23587", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b540", + "@id": "_:b3394", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "result": { - "@id": "_:b550", + "@id": "_:b6578", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b543", + "@id": "_:b3390", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "result": { - "@id": "_:b553", + "@id": "_:b7778", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b538", + "@id": "_:b3389", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", "result": { - "@id": "_:b548", + "@id": "_:b14825", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid reverse property value", + "title": "Invalid reverse property value (through coercion)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er36-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12660", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js02-out.nq", - "title": "Transform JSON literal (boolean false)", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (boolean false).", "assertions": [ { - "@id": "_:b12665", + "@id": "_:b15493", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "result": { - "@id": "_:b14857", + "@id": "_:b22549", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12662", + "@id": "_:b15492", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14854", + "@id": "_:b22548", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12664", + "@id": "_:b15494", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14856", + "@id": "_:b22550", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12663", + "@id": "_:b15496", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14855", + "@id": "_:b12445", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12667", + "@id": "_:b15497", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "result": { - "@id": "_:b14859", + "@id": "_:b22551", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12659", + "@id": "_:b15489", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7913", + "@id": "_:b20615", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12668", + "@id": "_:b15491", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14860", + "@id": "_:b22547", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12666", + "@id": "_:b15490", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "result": { - "@id": "_:b14858", + "@id": "_:b22546", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12661", + "@id": "_:b15488", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "result": { - "@id": "_:b14800", + "@id": "_:b18783", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12669", + "@id": "_:b15495", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", "result": { - "@id": "_:b13497", + "@id": "_:b17998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object", + "title": "Invalid value object (unexpected keyword)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er37-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4362", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js03-out.nq", - "title": "Transform JSON literal (double)", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (double).", "assertions": [ { - "@id": "_:b4368", + "@id": "_:b19089", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "result": { - "@id": "_:b22682", + "@id": "_:b25819", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4365", + "@id": "_:b19085", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22786", + "@id": "_:b23692", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4370", + "@id": "_:b19083", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26558", + "@id": "_:b25652", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4367", + "@id": "_:b19080", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23516", + "@id": "_:b12099", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4371", + "@id": "_:b19087", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "result": { - "@id": "_:b21488", + "@id": "_:b19840", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4366", + "@id": "_:b19088", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15938", + "@id": "_:b24817", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4369", + "@id": "_:b19086", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21820", + "@id": "_:b25818", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4363", + "@id": "_:b19084", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "result": { - "@id": "_:b17749", + "@id": "_:b19318", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4364", + "@id": "_:b19081", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "result": { - "@id": "_:b21518", + "@id": "_:b20600", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4360", + "@id": "_:b19082", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", "result": { - "@id": "_:b4361", + "@id": "_:b9151", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object", + "title": "Invalid value object (@type and @language)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er38-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4917", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js04-out.nq", - "title": "Transform JSON literal (double-zero)", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (double-zero).", "assertions": [ { - "@id": "_:b4920", + "@id": "_:b2049", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "result": { - "@id": "_:b19576", + "@id": "_:b3953", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4921", + "@id": "_:b2051", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21374", + "@id": "_:b18728", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4924", + "@id": "_:b2054", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26527", + "@id": "_:b18730", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4922", + "@id": "_:b2046", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23040", + "@id": "_:b12553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4925", + "@id": "_:b2050", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "result": { - "@id": "_:b25272", + "@id": "_:b18727", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4923", + "@id": "_:b2047", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16979", + "@id": "_:b18725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4926", + "@id": "_:b2052", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15010", + "@id": "_:b18436", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4915", + "@id": "_:b2044", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "result": { - "@id": "_:b4916", + "@id": "_:b2045", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4919", + "@id": "_:b2053", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "result": { - "@id": "_:b13465", + "@id": "_:b18729", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4918", + "@id": "_:b2048", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", "result": { - "@id": "_:b11512", + "@id": "_:b18726", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid language-tagged value", + "title": "Invalid language-tagged value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er39-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language-tagged value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b867", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js05-out.nq", - "title": "Transform JSON literal (integer)", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (integer).", "assertions": [ { - "@id": "_:b874", + "@id": "_:b15415", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "result": { - "@id": "_:b19388", + "@id": "_:b21225", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b865", + "@id": "_:b15414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b866", + "@id": "_:b20094", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b869", + "@id": "_:b15413", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19684", + "@id": "_:b16440", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b875", + "@id": "_:b15420", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5189", + "@id": "_:b16065", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b873", + "@id": "_:b15419", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "result": { - "@id": "_:b19687", + "@id": "_:b22617", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b872", + "@id": "_:b15418", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19686", + "@id": "_:b26591", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b868", + "@id": "_:b15421", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19683", + "@id": "_:b11365", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b870", + "@id": "_:b15416", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "result": { - "@id": "_:b19685", + "@id": "_:b24366", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b871", + "@id": "_:b15417", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "result": { - "@id": "_:b18041", + "@id": "_:b24978", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b876", + "@id": "_:b15411", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", "result": { - "@id": "_:b7983", + "@id": "_:b15412", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid typed value", + "title": "Invalid typed value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er40-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid typed value is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17491", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js06-out.nq", - "title": "Transform JSON literal (object)", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (object).", "assertions": [ { - "@id": "_:b17492", + "@id": "_:b916", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "result": { - "@id": "_:b7281", + "@id": "_:b5422", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17495", + "@id": "_:b922", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22989", + "@id": "_:b3009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17496", + "@id": "_:b921", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25517", + "@id": "_:b23998", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17489", + "@id": "_:b925", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17490", + "@id": "_:b26636", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17500", + "@id": "_:b918", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "result": { - "@id": "_:b24246", + "@id": "_:b20727", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17499", + "@id": "_:b920", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22419", + "@id": "_:b25192", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17493", + "@id": "_:b924", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14309", + "@id": "_:b4638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17497", + "@id": "_:b917", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "result": { - "@id": "_:b1722", + "@id": "_:b14074", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17498", + "@id": "_:b923", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "result": { - "@id": "_:b25101", + "@id": "_:b17120", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17494", + "@id": "_:b919", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", "result": { - "@id": "_:b9623", + "@id": "_:b26394", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid set or list object", + "title": "Invalid set or list object", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er41-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid set or list object is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7656", + "@id": "_:b9491", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js07-out.nq", - "title": "Transform JSON literal (array)", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (array).", "assertions": [ { - "@id": "_:b7665", + "@id": "_:b9493", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "result": { - "@id": "_:b7675", + "@id": "_:b20092", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7660", + "@id": "_:b9494", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7670", + "@id": "_:b19829", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7657", + "@id": "_:b9492", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7667", + "@id": "_:b19458", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7663", + "@id": "_:b9500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7673", + "@id": "_:b26703", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7661", + "@id": "_:b9489", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "result": { - "@id": "_:b7671", + "@id": "_:b9490", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7659", + "@id": "_:b9498", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7669", + "@id": "_:b9600", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7662", + "@id": "_:b9497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7672", + "@id": "_:b26701", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7664", + "@id": "_:b9495", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "result": { - "@id": "_:b7674", + "@id": "_:b1602", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7658", + "@id": "_:b9496", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "result": { - "@id": "_:b7668", + "@id": "_:b22850", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7666", + "@id": "_:b9499", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", "result": { - "@id": "_:b7676", + "@id": "_:b26702", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "keyword redefinition", + "title": "Keywords may not be redefined in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er42-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10144", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b10039", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js08-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js08-out.nq", - "title": "Transform JSON literal with array canonicalization", - "rdfs:comment": "Tests transforming JSON literal with array canonicalization.", "assertions": [ { - "@id": "_:b10150", + "@id": "_:b10041", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "result": { - "@id": "_:b5486", + "@id": "_:b20960", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10142", + "@id": "_:b10044", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10143", + "@id": "_:b20963", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10152", + "@id": "_:b10043", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22852", + "@id": "_:b20962", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10153", + "@id": "_:b10046", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26580", + "@id": "_:b20965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10148", + "@id": "_:b10047", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "result": { - "@id": "_:b18242", + "@id": "_:b20966", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10149", + "@id": "_:b10037", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16162", + "@id": "_:b10038", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10145", + "@id": "_:b10045", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16508", + "@id": "_:b20964", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10146", + "@id": "_:b10040", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "result": { - "@id": "_:b8328", + "@id": "_:b20642", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10147", + "@id": "_:b10048", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "result": { - "@id": "_:b21300", + "@id": "_:b20967", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10151", + "@id": "_:b10042", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", "result": { - "@id": "_:b11138", + "@id": "_:b20961", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Term definition with @id: @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er43-in.jsonld", + "rdfs:comment": "Expanding term mapping to @type uses @type syntax now illegal" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11474", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b13660", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js09-out.nq", - "title": "Transform JSON literal with string canonicalization", - "rdfs:comment": "Tests transforming JSON literal with string canonicalization.", "assertions": [ { - "@id": "_:b11483", + "@id": "_:b13662", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "result": { - "@id": "_:b25677", + "@id": "_:b17713", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11475", + "@id": "_:b13661", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12548", + "@id": "_:b17712", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11479", + "@id": "_:b13658", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25674", + "@id": "_:b13659", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11472", + "@id": "_:b13667", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11473", + "@id": "_:b17717", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11482", + "@id": "_:b13669", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "result": { - "@id": "_:b18451", + "@id": "_:b17718", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11481", + "@id": "_:b13666", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25676", + "@id": "_:b15267", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11477", + "@id": "_:b13663", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22995", + "@id": "_:b17714", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11480", + "@id": "_:b13668", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "result": { - "@id": "_:b25675", + "@id": "_:b15405", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11478", + "@id": "_:b13665", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "result": { - "@id": "_:b25673", + "@id": "_:b17716", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11476", + "@id": "_:b13664", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", "result": { - "@id": "_:b20357", + "@id": "_:b17715", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Redefine terms looking like compact IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er44-in.jsonld", + "rdfs:comment": "Term definitions may look like compact IRIs, but must be consistent." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2816", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b11055", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js10-out.nq", - "title": "Transform JSON literal with structural canonicalization", - "rdfs:comment": "Tests transforming JSON literal with structural canonicalization.", "assertions": [ { - "@id": "_:b2820", + "@id": "_:b11064", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "result": { - "@id": "_:b14924", + "@id": "_:b12486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2818", + "@id": "_:b11056", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7576", + "@id": "_:b22030", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2817", + "@id": "_:b11062", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13800", + "@id": "_:b22746", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2819", + "@id": "_:b11057", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23315", + "@id": "_:b19869", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2821", + "@id": "_:b11053", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "result": { - "@id": "_:b25436", + "@id": "_:b11054", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2823", + "@id": "_:b11058", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25437", + "@id": "_:b24304", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2825", + "@id": "_:b11059", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24405", + "@id": "_:b24897", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2822", + "@id": "_:b11063", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "result": { - "@id": "_:b7178", + "@id": "_:b25633", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2814", + "@id": "_:b11060", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "result": { - "@id": "_:b2815", + "@id": "_:b21285", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2824", + "@id": "_:b11061", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", "result": { - "@id": "_:b24369", + "@id": "_:b23086", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid term as relative IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er48-in.jsonld", + "rdfs:comment": "Verifies that a relative IRI cannot be used as a term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b22272", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b6413", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js11-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js11-out.nq", - "title": "Transform JSON literal with unicode canonicalization", - "rdfs:comment": "Tests transforming JSON literal with unicode canonicalization.", "assertions": [ { - "@id": "_:b22280", + "@id": "_:b6411", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "result": { - "@id": "_:b25706", + "@id": "_:b6412", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22276", + "@id": "_:b6417", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19682", + "@id": "_:b19785", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22270", + "@id": "_:b6414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22271", + "@id": "_:b8080", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22274", + "@id": "_:b6419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24009", + "@id": "_:b22232", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22281", + "@id": "_:b6416", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "result": { - "@id": "_:b25707", + "@id": "_:b4751", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22273", + "@id": "_:b6415", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24637", + "@id": "_:b12889", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22278", + "@id": "_:b6422", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25529", + "@id": "_:b22263", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22275", + "@id": "_:b6420", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "result": { - "@id": "_:b9554", + "@id": "_:b25282", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b22277", + "@id": "_:b6418", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "result": { - "@id": "_:b25704", + "@id": "_:b20412", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22279", + "@id": "_:b6421", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", "result": { - "@id": "_:b25705", + "@id": "_:b17039", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "A relative IRI cannot be used as a prefix", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er49-in.jsonld", + "rdfs:comment": "Verifies that a relative IRI cannot be used as a term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4349", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js12-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js12-out.nq", - "title": "Transform JSON literal with value canonicalization", - "rdfs:comment": "Tests transforming JSON literal with value canonicalization.", "assertions": [ { - "@id": "_:b4356", + "@id": "_:b10249", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "result": { - "@id": "_:b2182", + "@id": "_:b25464", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4347", + "@id": "_:b10247", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4348", + "@id": "_:b6166", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4354", + "@id": "_:b10250", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18395", + "@id": "_:b6168", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4357", + "@id": "_:b10248", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9672", + "@id": "_:b1233", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4352", + "@id": "_:b10251", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "result": { - "@id": "_:b2185", + "@id": "_:b25465", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4351", + "@id": "_:b10246", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5434", + "@id": "_:b19721", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4358", + "@id": "_:b10252", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18316", + "@id": "_:b25466", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4355", + "@id": "_:b10243", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "result": { - "@id": "_:b24698", + "@id": "_:b11681", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4353", + "@id": "_:b10244", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "result": { - "@id": "_:b21246", + "@id": "_:b15050", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4350", + "@id": "_:b10245", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", "result": { - "@id": "_:b18300", + "@id": "_:b16178", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid IRI mapping", + "title": "Invalid reverse id", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er50-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4690", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js13-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js13-out.nq", - "title": "Transform JSON literal with wierd canonicalization", - "rdfs:comment": "Tests transforming JSON literal with wierd canonicalization.", "assertions": [ { - "@id": "_:b4698", + "@id": "_:b12530", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "result": { - "@id": "_:b18381", + "@id": "_:b12531", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4691", + "@id": "_:b12534", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8629", + "@id": "_:b20209", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4692", + "@id": "_:b12535", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18377", + "@id": "_:b26051", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4693", + "@id": "_:b12537", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6985", + "@id": "_:b22370", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4694", + "@id": "_:b12539", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "result": { - "@id": "_:b18378", + "@id": "_:b17329", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4688", + "@id": "_:b12532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4689", + "@id": "_:b15012", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4697", + "@id": "_:b12540", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18380", + "@id": "_:b26228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4696", + "@id": "_:b12538", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "result": { - "@id": "_:b18379", + "@id": "_:b26227", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4695", + "@id": "_:b12536", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "result": { - "@id": "_:b15082", + "@id": "_:b25187", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4699", + "@id": "_:b12533", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", "result": { - "@id": "_:b18382", + "@id": "_:b13362", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object value", + "title": "Invalid value object value using a value alias", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er51-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16205", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js14-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js14-out.nq", - "title": "Transform JSON literal without expanding contents", - "rdfs:comment": "Tests transforming JSON literal does not expand terms inside json.", "assertions": [ { - "@id": "_:b16208", + "@id": "_:b8817", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "result": { - "@id": "_:b23661", + "@id": "_:b19436", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16211", + "@id": "_:b8816", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10614", + "@id": "_:b17166", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16209", + "@id": "_:b8813", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24427", + "@id": "_:b24108", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16212", + "@id": "_:b8814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20512", + "@id": "_:b25615", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16210", + "@id": "_:b8819", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "result": { - "@id": "_:b9654", + "@id": "_:b8950", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16207", + "@id": "_:b8812", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20278", + "@id": "_:b21256", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16215", + "@id": "_:b8810", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24606", + "@id": "_:b9751", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16214", + "@id": "_:b8811", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "result": { - "@id": "_:b21082", + "@id": "_:b13749", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16213", + "@id": "_:b8818", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "result": { - "@id": "_:b23549", + "@id": "_:b13777", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16206", + "@id": "_:b8815", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", "result": { - "@id": "_:b14363", + "@id": "_:b24717", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "Definition for the empty term", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er52-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains a definition for the empty term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6658", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js15-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js15-out.nq", - "title": "Transform JSON literal aleady in expanded form", - "rdfs:comment": "Tests transforming JSON literal in expanded form.", "assertions": [ { - "@id": "_:b6666", + "@id": "_:b11557", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "result": { - "@id": "_:b20263", + "@id": "_:b21756", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6663", + "@id": "_:b11556", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17230", + "@id": "_:b21755", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6659", + "@id": "_:b11555", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8134", + "@id": "_:b19344", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6667", + "@id": "_:b11552", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20264", + "@id": "_:b21752", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6662", + "@id": "_:b11559", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "result": { - "@id": "_:b20260", + "@id": "_:b18209", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6664", + "@id": "_:b11560", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20261", + "@id": "_:b21758", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6665", + "@id": "_:b11554", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20262", + "@id": "_:b21754", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6656", + "@id": "_:b11558", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "result": { - "@id": "_:b6657", + "@id": "_:b21757", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6660", + "@id": "_:b11553", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "result": { - "@id": "_:b18698", + "@id": "_:b21753", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6661", + "@id": "_:b11551", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", "result": { - "@id": "_:b20259", + "@id": "_:b17618", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @prefix value", + "title": "Invalid prefix value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er53-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @prefix value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5836", + "@id": "_:b12840", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js16-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js16-out.nq", - "title": "Transform JSON literal aleady in expanded form with aliased keys", - "rdfs:comment": "Tests transforming JSON literal in expanded form with aliased keys in value object.", "assertions": [ { - "@id": "_:b6786", + "@id": "_:b12843", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "result": { - "@id": "_:b14520", + "@id": "_:b21652", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6790", + "@id": "_:b12848", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24948", + "@id": "_:b21657", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6787", + "@id": "_:b12842", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b863", + "@id": "_:b16467", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6789", + "@id": "_:b12841", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12307", + "@id": "_:b11163", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6791", + "@id": "_:b12847", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "result": { - "@id": "_:b24949", + "@id": "_:b21656", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6788", + "@id": "_:b12845", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24947", + "@id": "_:b21654", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6793", + "@id": "_:b12846", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14997", + "@id": "_:b21655", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6784", + "@id": "_:b12838", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "result": { - "@id": "_:b6785", + "@id": "_:b12839", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6792", + "@id": "_:b12844", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "result": { - "@id": "_:b24950", + "@id": "_:b21653", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6794", + "@id": "_:b12849", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", "result": { - "@id": "_:b24951", + "@id": "_:b12365", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "title": "Using an array value for @context is illegal in JSON-LD 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/es01-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b440", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b13842", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js17-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js17-out.nq", - "title": "Transform JSON literal (string)", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (string).", "assertions": [ { - "@id": "_:b450", + "@id": "_:b13851", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "result": { - "@id": "_:b460", + "@id": "_:b22707", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b447", + "@id": "_:b13849", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b457", + "@id": "_:b22705", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b446", + "@id": "_:b13848", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b456", + "@id": "_:b7492", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b448", + "@id": "_:b13850", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b458", + "@id": "_:b22706", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b445", + "@id": "_:b13845", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "result": { - "@id": "_:b455", + "@id": "_:b18701", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b442", + "@id": "_:b13846", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b452", + "@id": "_:b22703", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b449", + "@id": "_:b13847", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b459", + "@id": "_:b22704", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b441", + "@id": "_:b13843", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "result": { - "@id": "_:b451", + "@id": "_:b17296", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b444", + "@id": "_:b13840", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "result": { - "@id": "_:b454", + "@id": "_:b13841", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b443", + "@id": "_:b13844", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", "result": { - "@id": "_:b453", + "@id": "_:b18546", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "title": "Mapping @container: [@list, @set] is invalid", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/es02-in.jsonld", + "rdfs:comment": "Testing legal combinations of @set with other container values" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2099", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b4934", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js18-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js18-out.nq", - "title": "Transform JSON literal (null)", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (null).", "assertions": [ { - "@id": "_:b2104", + "@id": "_:b4932", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "result": { - "@id": "_:b26460", + "@id": "_:b4933", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2101", + "@id": "_:b4937", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19052", + "@id": "_:b9921", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2107", + "@id": "_:b4943", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26668", + "@id": "_:b9927", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2108", + "@id": "_:b4936", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15180", + "@id": "_:b9920", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2103", + "@id": "_:b4939", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "result": { - "@id": "_:b4180", + "@id": "_:b9923", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2106", + "@id": "_:b4940", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24451", + "@id": "_:b9924", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2102", + "@id": "_:b4942", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6550", + "@id": "_:b9926", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2100", + "@id": "_:b4935", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "result": { - "@id": "_:b16127", + "@id": "_:b5759", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2105", + "@id": "_:b4938", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "result": { - "@id": "_:b24370", + "@id": "_:b9922", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2097", + "@id": "_:b4941", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", "result": { - "@id": "_:b2098", + "@id": "_:b9925", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in01-out.jsonld", + "title": "Basic Included array", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in01-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1344", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b647", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js19-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js19-out.nq", - "title": "Transform JSON literal with aliased @type", - "rdfs:comment": "Tests transforming JSON literal with aliased @type.", "assertions": [ { - "@id": "_:b1350", + "@id": "_:b8713", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "result": { - "@id": "_:b23297", + "@id": "_:b16143", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1352", + "@id": "_:b8714", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23299", + "@id": "_:b16144", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1345", + "@id": "_:b8711", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3351", + "@id": "_:b16141", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1353", + "@id": "_:b8717", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23300", + "@id": "_:b16147", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1347", + "@id": "_:b8720", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "result": { - "@id": "_:b14092", + "@id": "_:b16149", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1349", + "@id": "_:b8715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23296", + "@id": "_:b16145", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1348", + "@id": "_:b8718", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23295", + "@id": "_:b16148", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1346", + "@id": "_:b8719", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "result": { - "@id": "_:b10746", + "@id": "_:b4096", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1342", + "@id": "_:b8716", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "result": { - "@id": "_:b1343", + "@id": "_:b16146", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1351", + "@id": "_:b8712", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", "result": { - "@id": "_:b23298", + "@id": "_:b16142", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in02-out.jsonld", + "title": "Basic Included object", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in02-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b682", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b3050", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js20-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js20-out.nq", - "title": "Transform JSON literal with aliased @value", - "rdfs:comment": "Tests transforming JSON literal with aliased @value.", "assertions": [ { - "@id": "_:b689", + "@id": "_:b3057", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "result": { - "@id": "_:b699", + "@id": "_:b26583", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b691", + "@id": "_:b3054", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b701", + "@id": "_:b8848", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b684", + "@id": "_:b3056", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b694", + "@id": "_:b22953", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b687", + "@id": "_:b3059", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b697", + "@id": "_:b26584", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b688", + "@id": "_:b3053", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "result": { - "@id": "_:b698", + "@id": "_:b19461", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b683", + "@id": "_:b3051", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b693", + "@id": "_:b17598", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b686", + "@id": "_:b3060", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b696", + "@id": "_:b16009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b690", + "@id": "_:b3055", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "result": { - "@id": "_:b700", + "@id": "_:b21497", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b692", + "@id": "_:b3052", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "result": { - "@id": "_:b702", + "@id": "_:b18340", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b685", + "@id": "_:b3058", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", "result": { - "@id": "_:b695", + "@id": "_:b2485", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in03-out.jsonld", + "title": "Multiple properties mapping to @included are folded together", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in03-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12908", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b9633", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js21-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js21-out.nq", - "title": "Transform JSON literal with @context", - "rdfs:comment": "Tests transforming JSON literal with a @context.", "assertions": [ { - "@id": "_:b12914", + "@id": "_:b9639", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "result": { - "@id": "_:b15728", + "@id": "_:b24561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12910", + "@id": "_:b9637", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19640", + "@id": "_:b22485", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12911", + "@id": "_:b9641", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21690", + "@id": "_:b25626", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12906", + "@id": "_:b9635", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12907", + "@id": "_:b19512", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12909", + "@id": "_:b9636", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "result": { - "@id": "_:b16631", + "@id": "_:b22481", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12913", + "@id": "_:b9638", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3752", + "@id": "_:b23671", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12912", + "@id": "_:b9642", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25744", + "@id": "_:b18545", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12916", + "@id": "_:b9631", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "result": { - "@id": "_:b26189", + "@id": "_:b9632", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12917", + "@id": "_:b9634", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "result": { - "@id": "_:b15039", + "@id": "_:b18354", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12915", + "@id": "_:b9640", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", "result": { - "@id": "_:b13926", + "@id": "_:b25625", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in04-out.jsonld", + "title": "Included containing @included", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in04-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4511", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b9210", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js22-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js22-out.nq", - "title": "Transform JSON literal (null) aleady in expanded form.", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (null).", "assertions": [ { - "@id": "_:b4513", + "@id": "_:b9215", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "result": { - "@id": "_:b18067", + "@id": "_:b9225", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4516", + "@id": "_:b9214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22823", + "@id": "_:b9224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4514", + "@id": "_:b9217", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16407", + "@id": "_:b9227", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4515", + "@id": "_:b9218", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4864", + "@id": "_:b9228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4509", + "@id": "_:b9220", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "result": { - "@id": "_:b4510", + "@id": "_:b9230", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4512", + "@id": "_:b9213", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15370", + "@id": "_:b9223", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4518", + "@id": "_:b9216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23174", + "@id": "_:b9226", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4519", + "@id": "_:b9219", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "result": { - "@id": "_:b23175", + "@id": "_:b9229", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4517", + "@id": "_:b9211", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "result": { - "@id": "_:b23173", + "@id": "_:b9221", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4520", + "@id": "_:b9212", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", "result": { - "@id": "_:b5515", + "@id": "_:b9222", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in05-out.jsonld", + "title": "Property value with @included", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in05-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10478", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#useJCS": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b458", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/js23-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/js23-out.nq", - "title": "Transform JSON literal (empty array).", - "rdfs:comment": "Tests transforming property with @type @json to a JSON literal (empty array).", "assertions": [ { - "@id": "_:b10487", + "@id": "_:b14208", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "result": { - "@id": "_:b23774", + "@id": "_:b16592", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10485", + "@id": "_:b14215", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23530", + "@id": "_:b26822", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10481", + "@id": "_:b14214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20348", + "@id": "_:b18407", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10482", + "@id": "_:b14207", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24494", + "@id": "_:b3780", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10483", + "@id": "_:b14213", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "result": { - "@id": "_:b25301", + "@id": "_:b25684", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10480", + "@id": "_:b14211", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17581", + "@id": "_:b21327", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10484", + "@id": "_:b14209", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22113", + "@id": "_:b9459", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10486", + "@id": "_:b14216", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "result": { - "@id": "_:b25317", + "@id": "_:b14782", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10476", + "@id": "_:b14212", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "result": { - "@id": "_:b10477", + "@id": "_:b24853", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10479", + "@id": "_:b14210", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", "result": { - "@id": "_:b15943", + "@id": "_:b20775", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in06-out.jsonld", + "title": "json.api example", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in06-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8165", + "@id": "_:b17955", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li01-out.nq", - "title": "@list containing @list", - "rdfs:comment": "List of lists.", "assertions": [ { - "@id": "_:b8170", + "@id": "_:b17962", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "result": { - "@id": "_:b25685", + "@id": "_:b24342", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8173", + "@id": "_:b17956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24793", + "@id": "_:b19851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8163", + "@id": "_:b17961", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8164", + "@id": "_:b17116", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8167", + "@id": "_:b17959", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16865", + "@id": "_:b19234", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8166", + "@id": "_:b17963", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "result": { - "@id": "_:b13123", + "@id": "_:b18493", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8171", + "@id": "_:b17960", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25686", + "@id": "_:b26883", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8168", + "@id": "_:b17957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9236", + "@id": "_:b26190", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8169", + "@id": "_:b17958", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "result": { - "@id": "_:b24475", + "@id": "_:b25467", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8174", + "@id": "_:b17953", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "result": { - "@id": "_:b17772", + "@id": "_:b17954", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8172", + "@id": "_:b17964", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", "result": { - "@id": "_:b23054", + "@id": "_:b20824", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @included value", + "title": "Error if @included value is a string", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in07-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2730", + "@id": "_:b2263", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li02-out.nq", - "title": "@list containing empty @list", - "rdfs:comment": "List of lists.", "assertions": [ { - "@id": "_:b2738", + "@id": "_:b2272", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "result": { - "@id": "_:b2534", + "@id": "_:b24668", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2735", + "@id": "_:b2267", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24855", + "@id": "_:b22435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2731", + "@id": "_:b2268", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3349", + "@id": "_:b26245", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2728", + "@id": "_:b2266", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2729", + "@id": "_:b24806", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2733", + "@id": "_:b2270", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "result": { - "@id": "_:b11971", + "@id": "_:b10023", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2737", + "@id": "_:b2271", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26467", + "@id": "_:b25070", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2734", + "@id": "_:b2261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23780", + "@id": "_:b2262", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2739", + "@id": "_:b2265", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "result": { - "@id": "_:b25267", + "@id": "_:b21950", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2732", + "@id": "_:b2269", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "result": { - "@id": "_:b8952", + "@id": "_:b8927", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2736", + "@id": "_:b2264", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", "result": { - "@id": "_:b24815", + "@id": "_:b9677", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @included value", + "title": "Error if @included value is a value object", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in08-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9255", + "@id": "_:b6376", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li03-out.nq", - "title": "@list containing @list (with coercion)", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b9253", + "@id": "_:b6379", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "result": { - "@id": "_:b9254", + "@id": "_:b6389", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9256", + "@id": "_:b6377", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11987", + "@id": "_:b6387", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9258", + "@id": "_:b6381", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11989", + "@id": "_:b6391", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9261", + "@id": "_:b6378", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11992", + "@id": "_:b6388", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9264", + "@id": "_:b6382", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "result": { - "@id": "_:b9804", + "@id": "_:b6392", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9257", + "@id": "_:b6385", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11988", + "@id": "_:b6395", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9263", + "@id": "_:b6383", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11994", + "@id": "_:b6393", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9262", + "@id": "_:b6384", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "result": { - "@id": "_:b11993", + "@id": "_:b6394", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9259", + "@id": "_:b6386", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "result": { - "@id": "_:b11990", + "@id": "_:b6396", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9260", + "@id": "_:b6380", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", "result": { - "@id": "_:b11991", + "@id": "_:b6390", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @included value", + "title": "Error if @included value is a list object", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in09-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16997", + "@id": "_:b6952", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li04-out.nq", - "title": "@list containing empty @list (with coercion)", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b17003", + "@id": "_:b6956", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "result": { - "@id": "_:b26556", + "@id": "_:b20174", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17002", + "@id": "_:b6954", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20406", + "@id": "_:b20172", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16999", + "@id": "_:b6955", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21829", + "@id": "_:b20173", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17001", + "@id": "_:b6957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17238", + "@id": "_:b20175", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17004", + "@id": "_:b6953", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "result": { - "@id": "_:b24807", + "@id": "_:b11052", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17005", + "@id": "_:b6950", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23931", + "@id": "_:b6951", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17006", + "@id": "_:b6958", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13917", + "@id": "_:b20176", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17000", + "@id": "_:b6959", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "result": { - "@id": "_:b19233", + "@id": "_:b20177", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16998", + "@id": "_:b6960", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "result": { - "@id": "_:b17652", + "@id": "_:b20178", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17007", + "@id": "_:b6961", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", "result": { - "@id": "_:b21595", + "@id": "_:b9828", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js01-out.jsonld", + "title": "Expand JSON literal (boolean true)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js01-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (boolean true)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17945", + "@id": "_:b15737", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li05-out.nq", - "title": "coerced @list containing an array", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b17946", + "@id": "_:b15740", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "result": { - "@id": "_:b20750", + "@id": "_:b23439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17952", + "@id": "_:b15742", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22071", + "@id": "_:b26316", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17951", + "@id": "_:b15744", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16952", + "@id": "_:b23255", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17948", + "@id": "_:b15738", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24692", + "@id": "_:b17360", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17953", + "@id": "_:b15741", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "result": { - "@id": "_:b24694", + "@id": "_:b25216", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17950", + "@id": "_:b15735", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24693", + "@id": "_:b15736", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17947", + "@id": "_:b15743", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23314", + "@id": "_:b26328", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17949", + "@id": "_:b15745", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "result": { - "@id": "_:b23737", + "@id": "_:b16613", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17954", + "@id": "_:b15739", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "result": { - "@id": "_:b24385", + "@id": "_:b20579", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17943", + "@id": "_:b15746", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", "result": { - "@id": "_:b17944", + "@id": "_:b22744", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js02-out.jsonld", + "title": "Expand JSON literal (boolean false)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js02-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (boolean false)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1525", + "@id": "_:b18627", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li06-out.nq", - "title": "coerced @list containing an empty array", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b1528", + "@id": "_:b18636", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "result": { - "@id": "_:b14691", + "@id": "_:b26682", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1529", + "@id": "_:b18635", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17472", + "@id": "_:b26681", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1526", + "@id": "_:b18633", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9205", + "@id": "_:b26606", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1532", + "@id": "_:b18630", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17475", + "@id": "_:b2725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1531", + "@id": "_:b18631", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "result": { - "@id": "_:b17474", + "@id": "_:b22292", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1523", + "@id": "_:b18628", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1524", + "@id": "_:b21651", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1534", + "@id": "_:b18634", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17477", + "@id": "_:b26680", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1527", + "@id": "_:b18629", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "result": { - "@id": "_:b17471", + "@id": "_:b21981", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1530", + "@id": "_:b18626", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "result": { - "@id": "_:b17473", + "@id": "_:b18537", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1533", + "@id": "_:b18632", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", "result": { - "@id": "_:b17476", + "@id": "_:b24309", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js03-out.jsonld", + "title": "Expand JSON literal (double)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js03-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (double)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3352", + "@id": "_:b11511", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li07-out.nq", - "title": "coerced @list containing deep arrays", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b3357", + "@id": "_:b11517", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "result": { - "@id": "_:b3367", + "@id": "_:b25698", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3355", + "@id": "_:b11513", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3365", + "@id": "_:b24213", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3354", + "@id": "_:b11514", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3364", + "@id": "_:b26047", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3359", + "@id": "_:b11512", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3369", + "@id": "_:b19292", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3358", + "@id": "_:b11520", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "result": { - "@id": "_:b3368", + "@id": "_:b5700", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3353", + "@id": "_:b11515", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3363", + "@id": "_:b26756", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3356", + "@id": "_:b11519", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3366", + "@id": "_:b14053", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3360", + "@id": "_:b11516", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "result": { - "@id": "_:b3370", + "@id": "_:b10770", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3361", + "@id": "_:b11509", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "result": { - "@id": "_:b3371", + "@id": "_:b11510", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3362", + "@id": "_:b11518", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", "result": { - "@id": "_:b3372", + "@id": "_:b25942", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js04-out.jsonld", + "title": "Expand JSON literal (double-zero)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js04-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (double-zero)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12523", + "@id": "_:b2597", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li08-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li08-out.nq", - "title": "coerced @list containing deep empty arrays", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b12525", + "@id": "_:b2606", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "result": { - "@id": "_:b19164", + "@id": "_:b2993", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12527", + "@id": "_:b2603", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23664", + "@id": "_:b8479", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12526", + "@id": "_:b2595", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17654", + "@id": "_:b2596", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12521", + "@id": "_:b2598", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12522", + "@id": "_:b8474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12529", + "@id": "_:b2600", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "result": { - "@id": "_:b19180", + "@id": "_:b8476", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12524", + "@id": "_:b2602", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12656", + "@id": "_:b8478", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12531", + "@id": "_:b2604", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22781", + "@id": "_:b8480", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12530", + "@id": "_:b2605", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "result": { - "@id": "_:b23131", + "@id": "_:b8481", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12528", + "@id": "_:b2599", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "result": { - "@id": "_:b24004", + "@id": "_:b8475", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12532", + "@id": "_:b2601", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", "result": { - "@id": "_:b24010", + "@id": "_:b8477", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js05-out.jsonld", + "title": "Expand JSON literal (integer)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js05-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (integer)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1958", + "@id": "_:b10744", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li09-out.nq", - "title": "coerced @list containing multiple lists", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b1956", + "@id": "_:b10751", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "result": { - "@id": "_:b1957", + "@id": "_:b16638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1961", + "@id": "_:b10748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22049", + "@id": "_:b16635", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1960", + "@id": "_:b10745", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11268", + "@id": "_:b16632", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1966", + "@id": "_:b10750", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4687", + "@id": "_:b16637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1959", + "@id": "_:b10753", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "result": { - "@id": "_:b11282", + "@id": "_:b16640", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1965", + "@id": "_:b10749", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22030", + "@id": "_:b16636", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1963", + "@id": "_:b10752", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21507", + "@id": "_:b16639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1964", + "@id": "_:b10747", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "result": { - "@id": "_:b26001", + "@id": "_:b16634", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1962", + "@id": "_:b10742", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "result": { - "@id": "_:b25808", + "@id": "_:b10743", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1967", + "@id": "_:b10746", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", "result": { - "@id": "_:b21900", + "@id": "_:b16633", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js06-out.jsonld", + "title": "Expand JSON literal (object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js06-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (object)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13435", + "@id": "_:b13724", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/li10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/li10-out.nq", - "title": "coerced @list containing mixed list values", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b13443", + "@id": "_:b13729", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "result": { - "@id": "_:b14725", + "@id": "_:b22584", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13440", + "@id": "_:b13726", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24373", + "@id": "_:b19530", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13441", + "@id": "_:b13731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25385", + "@id": "_:b20517", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13436", + "@id": "_:b13722", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15431", + "@id": "_:b13723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13442", + "@id": "_:b13732", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "result": { - "@id": "_:b6331", + "@id": "_:b22586", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13439", + "@id": "_:b13725", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25305", + "@id": "_:b18852", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13433", + "@id": "_:b13727", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13434", + "@id": "_:b22582", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13438", + "@id": "_:b13730", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "result": { - "@id": "_:b24503", + "@id": "_:b22585", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13444", + "@id": "_:b13728", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "result": { - "@id": "_:b21528", + "@id": "_:b22583", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13437", + "@id": "_:b13733", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", "result": { - "@id": "_:b19046", + "@id": "_:b22587", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js07-out.jsonld", + "title": "Expand JSON literal (array)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js07-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (array)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7643", + "@id": "_:b8617", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m001-out.nq", - "title": "Adds @id to object not having an @id", - "rdfs:comment": "Expansion using @container: @id", "assertions": [ { - "@id": "_:b7647", + "@id": "_:b8619", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "result": { - "@id": "_:b25755", + "@id": "_:b15703", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7650", + "@id": "_:b8622", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11059", + "@id": "_:b4084", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7648", + "@id": "_:b8620", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25756", + "@id": "_:b18009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7641", + "@id": "_:b8623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7642", + "@id": "_:b19682", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7652", + "@id": "_:b8615", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "result": { - "@id": "_:b25758", + "@id": "_:b8616", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7644", + "@id": "_:b8618", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17565", + "@id": "_:b9405", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7649", + "@id": "_:b8624", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24923", + "@id": "_:b19683", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7646", + "@id": "_:b8626", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "result": { - "@id": "_:b8350", + "@id": "_:b19685", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7651", + "@id": "_:b8625", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "result": { - "@id": "_:b25757", + "@id": "_:b19684", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7645", + "@id": "_:b8621", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", "result": { - "@id": "_:b15001", + "@id": "_:b18930", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js08-out.jsonld", + "title": "Expand JSON literal with array canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js08-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal with array canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13187", + "@id": "_:b11707", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m002-out.nq", - "title": "Retains @id in object already having an @id", - "rdfs:comment": "Expansion using @container: @id", "assertions": [ { - "@id": "_:b13194", + "@id": "_:b11713", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "result": { - "@id": "_:b24574", + "@id": "_:b20763", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13193", + "@id": "_:b11711", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19929", + "@id": "_:b20618", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13195", + "@id": "_:b11710", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23370", + "@id": "_:b22329", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13191", + "@id": "_:b11715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25501", + "@id": "_:b22331", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13192", + "@id": "_:b11714", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "result": { - "@id": "_:b26354", + "@id": "_:b9486", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13188", + "@id": "_:b11709", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16976", + "@id": "_:b19416", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13196", + "@id": "_:b11716", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16506", + "@id": "_:b22332", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13197", + "@id": "_:b11712", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "result": { - "@id": "_:b26377", + "@id": "_:b22330", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13189", + "@id": "_:b11708", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "result": { - "@id": "_:b19568", + "@id": "_:b18916", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13190", + "@id": "_:b11717", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", "result": { - "@id": "_:b21536", + "@id": "_:b2538", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js09-out.jsonld", + "title": "Transform JSON literal with string canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js09-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal with string canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15204", + "@id": "_:b8332", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m003-out.nq", - "title": "Adds @type to object not having an @type", - "rdfs:comment": "Expansion using @container: @type", "assertions": [ { - "@id": "_:b15207", + "@id": "_:b8341", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "result": { - "@id": "_:b24782", + "@id": "_:b13825", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15208", + "@id": "_:b8334", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25610", + "@id": "_:b22368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15206", + "@id": "_:b8330", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21263", + "@id": "_:b8331", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15202", + "@id": "_:b8335", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15203", + "@id": "_:b21980", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15212", + "@id": "_:b8333", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "result": { - "@id": "_:b17918", + "@id": "_:b13985", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15209", + "@id": "_:b8337", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23429", + "@id": "_:b20505", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15205", + "@id": "_:b8336", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18320", + "@id": "_:b22869", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15213", + "@id": "_:b8338", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "result": { - "@id": "_:b19558", + "@id": "_:b23076", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15211", + "@id": "_:b8340", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "result": { - "@id": "_:b17036", + "@id": "_:b9209", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15210", + "@id": "_:b8339", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", "result": { - "@id": "_:b12493", + "@id": "_:b23760", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js10-out.jsonld", + "title": "Expand JSON literal with structural canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js10-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal with structural canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9433", + "@id": "_:b12252", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m004-out.nq", - "title": "Prepends @type in object already having an @type", - "rdfs:comment": "Expansion using @container: @type", "assertions": [ { - "@id": "_:b9434", + "@id": "_:b12258", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "result": { - "@id": "_:b14565", + "@id": "_:b26917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9438", + "@id": "_:b12255", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20514", + "@id": "_:b14477", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9442", + "@id": "_:b12260", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21153", + "@id": "_:b6167", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9436", + "@id": "_:b12253", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22118", + "@id": "_:b9382", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9439", + "@id": "_:b12250", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "result": { - "@id": "_:b24205", + "@id": "_:b12251", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9435", + "@id": "_:b12254", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20497", + "@id": "_:b19855", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9440", + "@id": "_:b12261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24206", + "@id": "_:b26569", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9437", + "@id": "_:b12259", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "result": { - "@id": "_:b21477", + "@id": "_:b21599", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9441", + "@id": "_:b12257", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "result": { - "@id": "_:b22804", + "@id": "_:b26751", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9431", + "@id": "_:b12256", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", "result": { - "@id": "_:b9432", + "@id": "_:b19842", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js11-out.jsonld", + "title": "Expand JSON literal with unicode canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js11-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal with unicode canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18783", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example.org/" - } + "@id": "_:b12006", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m005-out.nq", - "title": "Adds expanded @id to object", - "rdfs:comment": "Expansion using @container: @id", "assertions": [ { - "@id": "_:b18792", + "@id": "_:b12004", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "result": { - "@id": "_:b19330", + "@id": "_:b12005", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18784", + "@id": "_:b12011", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19026", + "@id": "_:b25228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18786", + "@id": "_:b12008", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16953", + "@id": "_:b18031", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18789", + "@id": "_:b12012", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25185", + "@id": "_:b19531", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18787", + "@id": "_:b12010", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "result": { - "@id": "_:b22743", + "@id": "_:b25227", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18781", + "@id": "_:b12009", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18782", + "@id": "_:b23245", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18788", + "@id": "_:b12013", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6255", + "@id": "_:b25229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18785", + "@id": "_:b12014", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "result": { - "@id": "_:b21340", + "@id": "_:b18045", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b18791", + "@id": "_:b12015", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "result": { - "@id": "_:b5051", + "@id": "_:b23428", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18790", + "@id": "_:b12007", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", "result": { - "@id": "_:b18042", + "@id": "_:b16988", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js12-out.jsonld", + "title": "Expand JSON literal with value canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js12-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal with value canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6101", + "@id": "_:b7163", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m006-out.nq", - "title": "Adds vocabulary expanded @type to object", - "rdfs:comment": "Expansion using @container: @type", "assertions": [ { - "@id": "_:b6105", + "@id": "_:b7172", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "result": { - "@id": "_:b18956", + "@id": "_:b21353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6106", + "@id": "_:b7168", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18957", + "@id": "_:b21349", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6103", + "@id": "_:b7164", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18954", + "@id": "_:b11704", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6102", + "@id": "_:b7167", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18513", + "@id": "_:b21348", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6110", + "@id": "_:b7169", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "result": { - "@id": "_:b18960", + "@id": "_:b21350", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6109", + "@id": "_:b7170", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18959", + "@id": "_:b21351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6104", + "@id": "_:b7166", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18955", + "@id": "_:b21347", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6107", + "@id": "_:b7173", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "result": { - "@id": "_:b18081", + "@id": "_:b12047", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6108", + "@id": "_:b7165", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "result": { - "@id": "_:b18958", + "@id": "_:b21346", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6099", + "@id": "_:b7171", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", "result": { - "@id": "_:b6100", + "@id": "_:b21352", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js13-out.jsonld", + "title": "Expand JSON literal with wierd canonicalization", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js13-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal with wierd canonicalization." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2010", + "@id": "_:b10524", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m007-out.nq", - "title": "Adds document expanded @type to object", - "rdfs:comment": "Expansion using @container: @type", "assertions": [ { - "@id": "_:b2015", + "@id": "_:b10533", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "result": { - "@id": "_:b25684", + "@id": "_:b19348", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2012", + "@id": "_:b10528", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3072", + "@id": "_:b18929", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2008", + "@id": "_:b10526", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2009", + "@id": "_:b23522", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2017", + "@id": "_:b10530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5419", + "@id": "_:b3494", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2018", + "@id": "_:b10522", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "result": { - "@id": "_:b26986", + "@id": "_:b10523", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2013", + "@id": "_:b10532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19118", + "@id": "_:b21924", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2019", + "@id": "_:b10531", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26987", + "@id": "_:b23525", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2011", + "@id": "_:b10527", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "result": { - "@id": "_:b24429", + "@id": "_:b23523", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2014", + "@id": "_:b10525", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "result": { - "@id": "_:b26815", + "@id": "_:b19563", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2016", + "@id": "_:b10529", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", "result": { - "@id": "_:b24474", + "@id": "_:b23524", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js14-out.jsonld", + "title": "Expand JSON literal without expanding contents", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js14-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal does not expand terms inside json." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2266", + "@id": "_:b3632", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m008-out.nq", - "title": "When type is in a type map", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b2273", + "@id": "_:b3639", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "result": { - "@id": "_:b23710", + "@id": "_:b26748", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2270", + "@id": "_:b3638", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18415", + "@id": "_:b20813", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2275", + "@id": "_:b3633", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23711", + "@id": "_:b1882", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2264", + "@id": "_:b3636", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2265", + "@id": "_:b23265", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2269", + "@id": "_:b3641", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "result": { - "@id": "_:b12515", + "@id": "_:b23577", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2274", + "@id": "_:b3635", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23706", + "@id": "_:b16642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2267", + "@id": "_:b3630", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19240", + "@id": "_:b3631", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2271", + "@id": "_:b3640", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "result": { - "@id": "_:b23708", + "@id": "_:b13181", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2268", + "@id": "_:b3634", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "result": { - "@id": "_:b10798", + "@id": "_:b20663", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2272", + "@id": "_:b3637", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", "result": { - "@id": "_:b23709", + "@id": "_:b24367", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js15-out.jsonld", + "title": "Expand JSON literal aleady in expanded form", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js15-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal in expanded form." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5166", + "@id": "_:b11658", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m009-out.nq", - "title": "language map with @none", - "rdfs:comment": "index on @language", "assertions": [ { - "@id": "_:b5172", + "@id": "_:b11663", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "result": { - "@id": "_:b25960", + "@id": "_:b24250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5174", + "@id": "_:b11662", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26640", + "@id": "_:b24249", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5170", + "@id": "_:b11666", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23928", + "@id": "_:b21897", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5167", + "@id": "_:b11667", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10657", + "@id": "_:b20682", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5175", + "@id": "_:b11657", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "result": { - "@id": "_:b26935", + "@id": "_:b7022", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5164", + "@id": "_:b11660", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5165", + "@id": "_:b22130", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5171", + "@id": "_:b11661", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24578", + "@id": "_:b23900", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5168", + "@id": "_:b11665", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "result": { - "@id": "_:b19397", + "@id": "_:b24252", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5173", + "@id": "_:b11664", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "result": { - "@id": "_:b26407", + "@id": "_:b24251", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5169", + "@id": "_:b11659", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", "result": { - "@id": "_:b22504", + "@id": "_:b23047", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js16-out.jsonld", + "title": "Expand JSON literal aleady in expanded form with aliased keys", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js16-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal in expanded form with aliased keys in value object." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18516", + "@id": "_:b12675", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m010-out.nq", - "title": "language map with alias of @none", - "rdfs:comment": "index on @language", "assertions": [ { - "@id": "_:b18518", + "@id": "_:b12683", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "result": { - "@id": "_:b24525", + "@id": "_:b26994", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18523", + "@id": "_:b12680", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18065", + "@id": "_:b26065", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18519", + "@id": "_:b12682", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25842", + "@id": "_:b26720", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18517", + "@id": "_:b12684", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21029", + "@id": "_:b15750", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18525", + "@id": "_:b12678", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "result": { - "@id": "_:b26729", + "@id": "_:b22217", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18521", + "@id": "_:b12677", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26719", + "@id": "_:b16486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18514", + "@id": "_:b12679", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18515", + "@id": "_:b25731", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18522", + "@id": "_:b12681", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "result": { - "@id": "_:b22055", + "@id": "_:b26130", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b18520", + "@id": "_:b12673", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "result": { - "@id": "_:b21539", + "@id": "_:b12674", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18524", + "@id": "_:b12676", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", "result": { - "@id": "_:b6274", + "@id": "_:b15344", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js17-out.jsonld", + "title": "Expand JSON literal (string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js17-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (string)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8335", + "@id": "_:b14554", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m011-out.nq", - "title": "id map with @none", - "rdfs:comment": "index on @id", "assertions": [ { - "@id": "_:b8343", + "@id": "_:b14552", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "result": { - "@id": "_:b23187", + "@id": "_:b14553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8342", + "@id": "_:b14560", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25737", + "@id": "_:b22416", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8333", + "@id": "_:b14557", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8334", + "@id": "_:b22414", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8339", + "@id": "_:b14563", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26170", + "@id": "_:b14564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8341", + "@id": "_:b14562", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "result": { - "@id": "_:b25213", + "@id": "_:b11654", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8340", + "@id": "_:b14556", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6549", + "@id": "_:b12073", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8336", + "@id": "_:b14559", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20363", + "@id": "_:b22415", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8337", + "@id": "_:b14555", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "result": { - "@id": "_:b22108", + "@id": "_:b17174", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8344", + "@id": "_:b14558", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "result": { - "@id": "_:b26171", + "@id": "_:b10593", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8338", + "@id": "_:b14561", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", "result": { - "@id": "_:b24101", + "@id": "_:b22417", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js18-out.jsonld", + "title": "Expand JSON literal (null)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js18-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (null)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20553", + "@id": "_:b11540", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m012-out.nq", - "title": "type map with alias of @none", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b20560", + "@id": "_:b11543", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "result": { - "@id": "_:b25941", + "@id": "_:b18378", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20559", + "@id": "_:b11538", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23058", + "@id": "_:b11539", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20551", + "@id": "_:b11542", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20552", + "@id": "_:b23225", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20558", + "@id": "_:b11548", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25940", + "@id": "_:b26431", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20562", + "@id": "_:b11545", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "result": { - "@id": "_:b25640", + "@id": "_:b24515", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20555", + "@id": "_:b11541", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25240", + "@id": "_:b23120", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20554", + "@id": "_:b11547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24973", + "@id": "_:b26450", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20556", + "@id": "_:b11544", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "result": { - "@id": "_:b25476", + "@id": "_:b26449", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b20561", + "@id": "_:b11546", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "result": { - "@id": "_:b25594", + "@id": "_:b26146", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20557", + "@id": "_:b11549", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", "result": { - "@id": "_:b24254", + "@id": "_:b24958", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js19-out.jsonld", + "title": "Expand JSON literal with aliased @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js19-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal with aliased @type." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13907", + "@id": "_:b9936", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m013-out.nq", - "title": "graph index map with @none", - "rdfs:comment": "index on @graph and @index", "assertions": [ { - "@id": "_:b13906", + "@id": "_:b9943", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "result": { - "@id": "_:b9176", + "@id": "_:b25382", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13911", + "@id": "_:b9942", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25621", + "@id": "_:b25101", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13908", + "@id": "_:b9945", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23510", + "@id": "_:b21138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13914", + "@id": "_:b9937", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5548", + "@id": "_:b13104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13916", + "@id": "_:b9941", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "result": { - "@id": "_:b23139", + "@id": "_:b25534", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13909", + "@id": "_:b9934", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24220", + "@id": "_:b9935", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13913", + "@id": "_:b9944", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26272", + "@id": "_:b26246", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13910", + "@id": "_:b9938", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "result": { - "@id": "_:b8574", + "@id": "_:b20430", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13915", + "@id": "_:b9940", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "result": { - "@id": "_:b26111", + "@id": "_:b25815", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13912", + "@id": "_:b9939", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", "result": { - "@id": "_:b25829", + "@id": "_:b24636", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js20-out.jsonld", + "title": "Expand JSON literal with aliased @value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js20-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal with aliased @value." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17379", + "@id": "_:b19497", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m014-out.nq", - "title": "graph index map with alias @none", - "rdfs:comment": "index on @graph and @index", "assertions": [ { - "@id": "_:b17381", + "@id": "_:b19498", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "result": { - "@id": "_:b19603", + "@id": "_:b16267", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17382", + "@id": "_:b19502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20653", + "@id": "_:b25370", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17383", + "@id": "_:b19495", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21467", + "@id": "_:b19496", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17380", + "@id": "_:b19504", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18020", + "@id": "_:b6975", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17386", + "@id": "_:b19501", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "result": { - "@id": "_:b20293", + "@id": "_:b25369", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17388", + "@id": "_:b19500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22321", + "@id": "_:b11702", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17385", + "@id": "_:b19506", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23802", + "@id": "_:b25371", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17384", + "@id": "_:b19499", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "result": { - "@id": "_:b23733", + "@id": "_:b19698", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17389", + "@id": "_:b19503", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "result": { - "@id": "_:b23804", + "@id": "_:b18406", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17387", + "@id": "_:b19505", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", "result": { - "@id": "_:b23803", + "@id": "_:b23636", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js21-out.jsonld", + "title": "Expand JSON literal with @context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js21-in.jsonld", + "rdfs:comment": "Tests expanding JSON literal with a @context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5825", + "@id": "_:b4347", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m015-out.nq", - "title": "graph id index map with aliased @none", - "rdfs:comment": "index on @graph and @id with @none", "assertions": [ { - "@id": "_:b5827", + "@id": "_:b4356", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "result": { - "@id": "_:b14805", + "@id": "_:b23250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5826", + "@id": "_:b4353", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8045", + "@id": "_:b23576", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5834", + "@id": "_:b4345", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26973", + "@id": "_:b4346", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5830", + "@id": "_:b4355", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25592", + "@id": "_:b15586", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5829", + "@id": "_:b4349", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "result": { - "@id": "_:b25363", + "@id": "_:b21289", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5832", + "@id": "_:b4348", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3000", + "@id": "_:b19266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5833", + "@id": "_:b4352", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25993", + "@id": "_:b23575", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5828", + "@id": "_:b4354", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "result": { - "@id": "_:b11618", + "@id": "_:b22818", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5831", + "@id": "_:b4350", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "result": { - "@id": "_:b26020", + "@id": "_:b20141", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5835", + "@id": "_:b4351", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", "result": { - "@id": "_:b18062", + "@id": "_:b23574", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js22-out.jsonld", + "title": "Expand JSON literal (null) aleady in expanded form.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js22-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (null)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21941", + "@id": "_:b10069", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m016-out.nq", - "title": "graph id index map with aliased @none", - "rdfs:comment": "index on @graph and @id with @none", "assertions": [ { - "@id": "_:b21943", + "@id": "_:b10076", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "result": { - "@id": "_:b10673", + "@id": "_:b22666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21945", + "@id": "_:b10074", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23830", + "@id": "_:b25720", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21942", + "@id": "_:b10072", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21864", + "@id": "_:b25224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21951", + "@id": "_:b10078", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23176", + "@id": "_:b22740", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21949", + "@id": "_:b10073", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "result": { - "@id": "_:b23833", + "@id": "_:b25024", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21946", + "@id": "_:b10075", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23831", + "@id": "_:b26916", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21950", + "@id": "_:b10071", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21487", + "@id": "_:b23691", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21947", + "@id": "_:b10070", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "result": { - "@id": "_:b23832", + "@id": "_:b22146", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b21944", + "@id": "_:b10077", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "result": { - "@id": "_:b23829", + "@id": "_:b19282", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21948", + "@id": "_:b10067", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", "result": { - "@id": "_:b20517", + "@id": "_:b10068", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js23-out.jsonld", + "title": "Expand JSON literal (empty array).", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js23-in.jsonld", + "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (empty array)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16389", + "@id": "_:b4987", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m017-out.nq", - "title": "string value of type map expands to node reference", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b16392", + "@id": "_:b4996", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "result": { - "@id": "_:b5387", + "@id": "_:b5613", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16390", + "@id": "_:b4988", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16408", + "@id": "_:b15634", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16393", + "@id": "_:b4992", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19391", + "@id": "_:b24852", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16396", + "@id": "_:b4993", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19393", + "@id": "_:b26456", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16398", + "@id": "_:b4991", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "result": { - "@id": "_:b19395", + "@id": "_:b13086", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16387", + "@id": "_:b4990", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16388", + "@id": "_:b9251", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16397", + "@id": "_:b4994", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19394", + "@id": "_:b25431", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16391", + "@id": "_:b4989", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "result": { - "@id": "_:b19390", + "@id": "_:b19456", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16394", + "@id": "_:b4985", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "result": { - "@id": "_:b15004", + "@id": "_:b4986", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16395", + "@id": "_:b4995", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", "result": { - "@id": "_:b19392", + "@id": "_:b23885", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/l001-out.jsonld", + "title": "Language map with null value", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/l001-in.jsonld", + "rdfs:comment": "A language map may have a null value, which is ignored" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4499", + "@id": "_:b12310", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m018-out.nq", - "title": "string value of type map expands to node reference with @type: @id", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b4503", + "@id": "_:b12313", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "result": { - "@id": "_:b22046", + "@id": "_:b14602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4505", + "@id": "_:b12315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25446", + "@id": "_:b18853", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4497", + "@id": "_:b12317", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4498", + "@id": "_:b18965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4501", + "@id": "_:b12319", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20196", + "@id": "_:b18967", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4507", + "@id": "_:b12316", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "result": { - "@id": "_:b25913", + "@id": "_:b18964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4504", + "@id": "_:b12314", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14438", + "@id": "_:b18963", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4508", + "@id": "_:b12311", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25914", + "@id": "_:b17666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4502", + "@id": "_:b12318", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "result": { - "@id": "_:b20085", + "@id": "_:b18966", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4500", + "@id": "_:b12312", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "result": { - "@id": "_:b21107", + "@id": "_:b18962", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4506", + "@id": "_:b12308", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", "result": { - "@id": "_:b25912", + "@id": "_:b12309", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li01-out.jsonld", + "title": "@list containing @list", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li01-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17754", + "@id": "_:b3764", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/m019-out.nq", - "title": "string value of type map expands to node reference with @type: @vocab", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b17755", + "@id": "_:b3762", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "result": { - "@id": "_:b18554", + "@id": "_:b3763", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17758", + "@id": "_:b3770", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25616", + "@id": "_:b13750", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17757", + "@id": "_:b3771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23852", + "@id": "_:b3577", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17756", + "@id": "_:b3773", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20676", + "@id": "_:b19032", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17764", + "@id": "_:b3772", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "result": { - "@id": "_:b26021", + "@id": "_:b8849", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17759", + "@id": "_:b3768", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26073", + "@id": "_:b13299", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17760", + "@id": "_:b3769", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13774", + "@id": "_:b19031", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17761", + "@id": "_:b3766", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "result": { - "@id": "_:b26829", + "@id": "_:b19030", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17763", + "@id": "_:b3765", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "result": { - "@id": "_:b25966", + "@id": "_:b19029", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17762", + "@id": "_:b3767", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", "result": { - "@id": "_:b26838", + "@id": "_:b9268", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li02-out.jsonld", + "title": "@list containing empty @list", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li02-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9894", + "@id": "_:b9947", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/m020-in.jsonld", - "mf:result": "invalid type mapping", - "title": "string value of type map must not be a literal", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b9903", + "@id": "_:b9948", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "result": { - "@id": "_:b21611", + "@id": "_:b9958", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9901", + "@id": "_:b9954", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23997", + "@id": "_:b9962", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9896", + "@id": "_:b9957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22209", + "@id": "_:b9965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9900", + "@id": "_:b9953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2213", + "@id": "_:b8431", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9895", + "@id": "_:b9950", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "result": { - "@id": "_:b10725", + "@id": "_:b1182", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9898", + "@id": "_:b9951", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23995", + "@id": "_:b9960", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9902", + "@id": "_:b9949", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23998", + "@id": "_:b9959", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9897", + "@id": "_:b9952", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "result": { - "@id": "_:b23994", + "@id": "_:b9961", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9899", + "@id": "_:b9956", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "result": { - "@id": "_:b23996", + "@id": "_:b9964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9892", + "@id": "_:b9955", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", "result": { - "@id": "_:b9893", + "@id": "_:b9963", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li03-out.jsonld", + "title": "@list containing @list (with coercion)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li03-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15139", + "@id": "_:b13710", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n001-out.nq", - "title": "Expands input using @nest", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b15141", + "@id": "_:b13711", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "result": { - "@id": "_:b23723", + "@id": "_:b14665", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15145", + "@id": "_:b13716", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26484", + "@id": "_:b18348", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15143", + "@id": "_:b13712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25642", + "@id": "_:b15928", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15142", + "@id": "_:b13719", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24791", + "@id": "_:b16724", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15137", + "@id": "_:b13713", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "result": { - "@id": "_:b15138", + "@id": "_:b18345", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15146", + "@id": "_:b13715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24888", + "@id": "_:b18347", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15144", + "@id": "_:b13708", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18208", + "@id": "_:b13709", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15147", + "@id": "_:b13718", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "result": { - "@id": "_:b21674", + "@id": "_:b18349", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15148", + "@id": "_:b13714", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "result": { - "@id": "_:b26530", + "@id": "_:b18346", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15140", + "@id": "_:b13717", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", "result": { - "@id": "_:b18697", + "@id": "_:b9369", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li04-out.jsonld", + "title": "@list containing empty @list (with coercion)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li04-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7798", + "@id": "_:b5108", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n002-out.nq", - "title": "Expands input using aliased @nest", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b7802", + "@id": "_:b5111", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "result": { - "@id": "_:b19797", + "@id": "_:b19722", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7808", + "@id": "_:b5109", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26615", + "@id": "_:b5557", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7803", + "@id": "_:b5110", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24770", + "@id": "_:b7842", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7804", + "@id": "_:b5112", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26035", + "@id": "_:b19723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7807", + "@id": "_:b5114", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "result": { - "@id": "_:b14831", + "@id": "_:b19724", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7799", + "@id": "_:b5116", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9840", + "@id": "_:b19726", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7806", + "@id": "_:b5113", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26614", + "@id": "_:b12046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7805", + "@id": "_:b5106", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "result": { - "@id": "_:b24963", + "@id": "_:b5107", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7801", + "@id": "_:b5117", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "result": { - "@id": "_:b21430", + "@id": "_:b11094", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7800", + "@id": "_:b5115", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", "result": { - "@id": "_:b12017", + "@id": "_:b19725", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li05-out.jsonld", + "title": "coerced @list containing an array", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li05-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12801", + "@id": "_:b18757", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n003-out.nq", - "title": "Appends nested values when property at base and nested", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b12804", + "@id": "_:b18766", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "result": { - "@id": "_:b24091", + "@id": "_:b17212", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12803", + "@id": "_:b18761", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19749", + "@id": "_:b23426", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12805", + "@id": "_:b18760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24778", + "@id": "_:b12458", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12806", + "@id": "_:b18764", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25532", + "@id": "_:b12528", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12810", + "@id": "_:b18763", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "result": { - "@id": "_:b12869", + "@id": "_:b23427", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12807", + "@id": "_:b18765", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17483", + "@id": "_:b18511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12809", + "@id": "_:b18759", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26481", + "@id": "_:b20550", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12799", + "@id": "_:b18762", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "result": { - "@id": "_:b12800", + "@id": "_:b22789", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12802", + "@id": "_:b18755", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "result": { - "@id": "_:b16502", + "@id": "_:b18756", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12808", + "@id": "_:b18758", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", "result": { - "@id": "_:b14604", + "@id": "_:b11298", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li06-out.jsonld", + "title": "coerced @list containing an empty array", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li06-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b949", + "@id": "_:b14357", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n004-out.nq", - "title": "Appends nested values from all @nest aliases in term order", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b954", + "@id": "_:b14362", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "result": { - "@id": "_:b19763", + "@id": "_:b14372", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b953", + "@id": "_:b14365", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25579", + "@id": "_:b14375", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b955", + "@id": "_:b14360", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26630", + "@id": "_:b14370", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b958", + "@id": "_:b14366", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26907", + "@id": "_:b2510", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b946", + "@id": "_:b14367", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "result": { - "@id": "_:b947", + "@id": "_:b14376", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b950", + "@id": "_:b14359", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15080", + "@id": "_:b14369", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b951", + "@id": "_:b14364", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22972", + "@id": "_:b14374", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b952", + "@id": "_:b14361", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "result": { - "@id": "_:b22240", + "@id": "_:b14371", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b956", + "@id": "_:b14363", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "result": { - "@id": "_:b25605", + "@id": "_:b14373", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b957", + "@id": "_:b14358", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", "result": { - "@id": "_:b14201", + "@id": "_:b14368", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li07-out.jsonld", + "title": "coerced @list containing deep arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li07-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b535", + "@id": "_:b14443", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n005-out.nq", - "title": "Nested nested containers", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b7771", + "@id": "_:b14441", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "result": { - "@id": "_:b24203", + "@id": "_:b14442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7766", + "@id": "_:b14448", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21108", + "@id": "_:b24262", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7770", + "@id": "_:b14449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24366", + "@id": "_:b23759", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7767", + "@id": "_:b14446", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25995", + "@id": "_:b24260", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7772", + "@id": "_:b14451", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "result": { - "@id": "_:b4331", + "@id": "_:b22114", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7769", + "@id": "_:b14450", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14698", + "@id": "_:b24263", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7762", + "@id": "_:b14452", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7763", + "@id": "_:b18332", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7765", + "@id": "_:b14445", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "result": { - "@id": "_:b15863", + "@id": "_:b19349", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7764", + "@id": "_:b14447", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "result": { - "@id": "_:b12266", + "@id": "_:b24261", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7768", + "@id": "_:b14444", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", "result": { - "@id": "_:b26285", + "@id": "_:b22423", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li08-out.jsonld", + "title": "coerced @list containing deep empty arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li08-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b985", + "@id": "_:b2240", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n006-out.nq", - "title": "Arrays of nested values", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b986", + "@id": "_:b2242", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "result": { - "@id": "_:b9752", + "@id": "_:b2252", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b988", + "@id": "_:b2241", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9754", + "@id": "_:b2251", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b993", + "@id": "_:b2247", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9759", + "@id": "_:b2257", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b994", + "@id": "_:b2243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9760", + "@id": "_:b2253", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b987", + "@id": "_:b2246", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "result": { - "@id": "_:b9753", + "@id": "_:b2256", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b990", + "@id": "_:b2244", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9756", + "@id": "_:b2254", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b989", + "@id": "_:b2245", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9755", + "@id": "_:b2255", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b991", + "@id": "_:b2250", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "result": { - "@id": "_:b9757", + "@id": "_:b2260", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b992", + "@id": "_:b2248", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "result": { - "@id": "_:b9758", + "@id": "_:b2258", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b983", + "@id": "_:b2249", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", "result": { - "@id": "_:b984", + "@id": "_:b2259", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li09-out.jsonld", + "title": "coerced @list containing multiple lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li09-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21618", + "@id": "_:b11577", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n007-out.nq", - "title": "A nest of arrays", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b21627", + "@id": "_:b11586", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "result": { - "@id": "_:b27006", + "@id": "_:b23401", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21625", + "@id": "_:b11579", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25496", + "@id": "_:b23943", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21616", + "@id": "_:b11584", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21617", + "@id": "_:b26840", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21620", + "@id": "_:b11582", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23865", + "@id": "_:b9446", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21626", + "@id": "_:b11583", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "result": { - "@id": "_:b23693", + "@id": "_:b26765", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21621", + "@id": "_:b11585", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21562", + "@id": "_:b27010", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21622", + "@id": "_:b11580", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25308", + "@id": "_:b24616", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21623", + "@id": "_:b11578", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "result": { - "@id": "_:b19601", + "@id": "_:b23079", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b21624", + "@id": "_:b11581", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "result": { - "@id": "_:b26319", + "@id": "_:b18874", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21619", + "@id": "_:b11575", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", "result": { - "@id": "_:b19404", + "@id": "_:b11576", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li10-out.jsonld", + "title": "coerced @list containing mixed list values", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li10-in.jsonld", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8801", + "@id": "_:b15394", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/n008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/n008-out.nq", - "title": "Multiple keys may mapping to @type when nesting", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b8799", + "@id": "_:b15401", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "result": { - "@id": "_:b8800", + "@id": "_:b26309", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8802", + "@id": "_:b15396", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4262", + "@id": "_:b25754", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8803", + "@id": "_:b15395", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20376", + "@id": "_:b15452", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8807", + "@id": "_:b15400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26680", + "@id": "_:b26608", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8808", + "@id": "_:b15403", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "result": { - "@id": "_:b26913", + "@id": "_:b19226", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8806", + "@id": "_:b15398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24227", + "@id": "_:b23362", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8805", + "@id": "_:b15392", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19996", + "@id": "_:b15393", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8809", + "@id": "_:b15399", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "result": { - "@id": "_:b21482", + "@id": "_:b26905", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8804", + "@id": "_:b15402", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "result": { - "@id": "_:b25844", + "@id": "_:b26300", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8810", + "@id": "_:b15397", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", "result": { - "@id": "_:b26032", + "@id": "_:b26163", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m001-out.jsonld", + "title": "Adds @id to object not having an @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m001-in.jsonld", + "rdfs:comment": "Expansion using @container: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt01-in.jsonld", - "title": "literal_ascii_boundaries", - "rdfs:comment": "literal_ascii_boundaries '\\x00\\x26\\x28...' from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14029", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10761", + "@id": "_:b14035", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "result": { - "@id": "_:b16815", + "@id": "_:b26732", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10763", + "@id": "_:b14031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19844", + "@id": "_:b23343", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10766", + "@id": "_:b14036", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21855", + "@id": "_:b21931", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10762", + "@id": "_:b14032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17729", + "@id": "_:b19091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10769", + "@id": "_:b14038", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "result": { - "@id": "_:b12598", + "@id": "_:b25618", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10764", + "@id": "_:b14033", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20316", + "@id": "_:b26403", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10767", + "@id": "_:b14039", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21856", + "@id": "_:b4558", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10759", + "@id": "_:b14030", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "result": { - "@id": "_:b10760", + "@id": "_:b22913", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10768", + "@id": "_:b14037", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "result": { - "@id": "_:b21857", + "@id": "_:b11507", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10765", + "@id": "_:b14034", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", "result": { - "@id": "_:b21854", + "@id": "_:b11437", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m002-out.jsonld", + "title": "Retains @id in object already having an @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m002-in.jsonld", + "rdfs:comment": "Expansion using @container: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt02-in.jsonld", - "title": "literal_with_UTF8_boundaries", - "rdfs:comment": "literal_with_UTF8_boundaries '\\x80\\x7ff\\x800\\xfff...' from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2342", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5629", + "@id": "_:b2340", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "result": { - "@id": "_:b24073", + "@id": "_:b2341", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5627", + "@id": "_:b2347", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23323", + "@id": "_:b23841", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5623", + "@id": "_:b2351", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14794", + "@id": "_:b23843", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5626", + "@id": "_:b2344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25882", + "@id": "_:b23023", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5624", + "@id": "_:b2343", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "result": { - "@id": "_:b21535", + "@id": "_:b15705", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5630", + "@id": "_:b2350", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17752", + "@id": "_:b23842", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5621", + "@id": "_:b2345", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5622", + "@id": "_:b23839", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5631", + "@id": "_:b2349", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "result": { - "@id": "_:b26923", + "@id": "_:b18044", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5625", + "@id": "_:b2348", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "result": { - "@id": "_:b24213", + "@id": "_:b23390", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5628", + "@id": "_:b2346", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", "result": { - "@id": "_:b22969", + "@id": "_:b23840", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m003-out.jsonld", + "title": "Adds @type to object not having an @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m003-in.jsonld", + "rdfs:comment": "Expansion using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt03-in.jsonld", - "title": "literal_all_controls", - "rdfs:comment": "literal_all_controls '\\x00\\x01\\x02\\x03\\x04...' from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9072", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2462", + "@id": "_:b9073", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "result": { - "@id": "_:b22597", + "@id": "_:b21767", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2463", + "@id": "_:b9075", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22598", + "@id": "_:b23448", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2464", + "@id": "_:b9078", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22599", + "@id": "_:b24568", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2465", + "@id": "_:b9076", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22600", + "@id": "_:b21629", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2458", + "@id": "_:b9080", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "result": { - "@id": "_:b2459", + "@id": "_:b11435", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2467", + "@id": "_:b9082", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22602", + "@id": "_:b24569", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2466", + "@id": "_:b9081", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22601", + "@id": "_:b22475", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2461", + "@id": "_:b9079", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "result": { - "@id": "_:b19400", + "@id": "_:b21066", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2468", + "@id": "_:b9077", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "result": { - "@id": "_:b22603", + "@id": "_:b22410", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2460", + "@id": "_:b9074", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", "result": { - "@id": "_:b3294", + "@id": "_:b22230", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m004-out.jsonld", + "title": "Prepends @type in object already having an @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m004-in.jsonld", + "rdfs:comment": "Expansion using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt04-in.jsonld", - "title": "literal_all_punctuation", - "rdfs:comment": "literal_all_punctuation '!\"#$%&()...' from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b17772", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example.org/" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7681", + "@id": "_:b17770", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "result": { - "@id": "_:b20508", + "@id": "_:b17771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7686", + "@id": "_:b17778", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26723", + "@id": "_:b23341", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7682", + "@id": "_:b17780", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25607", + "@id": "_:b23270", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7687", + "@id": "_:b17781", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26830", + "@id": "_:b27020", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7688", + "@id": "_:b17773", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "result": { - "@id": "_:b11692", + "@id": "_:b20610", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7685", + "@id": "_:b17774", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26523", + "@id": "_:b6643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7678", + "@id": "_:b17777", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7679", + "@id": "_:b26510", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7684", + "@id": "_:b17779", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "result": { - "@id": "_:b22282", + "@id": "_:b27024", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7680", + "@id": "_:b17775", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "result": { - "@id": "_:b22482", + "@id": "_:b26016", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7683", + "@id": "_:b17776", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", "result": { - "@id": "_:b26146", + "@id": "_:b23224", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m005-out.jsonld", + "title": "Adds expanded @id to object", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m005-in.jsonld", + "rdfs:comment": "Expansion using @container: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt05-in.jsonld", - "title": "literal_with_squote", - "rdfs:comment": "literal with squote \"x'y\" from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b20704", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b10327", + "@id": "_:b20707", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "result": { - "@id": "_:b22335", + "@id": "_:b24280", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10333", + "@id": "_:b20711", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17488", + "@id": "_:b20865", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10331", + "@id": "_:b20706", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25820", + "@id": "_:b23282", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10332", + "@id": "_:b20709", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21695", + "@id": "_:b25765", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10335", + "@id": "_:b20705", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "result": { - "@id": "_:b25351", + "@id": "_:b20796", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10329", + "@id": "_:b20710", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20684", + "@id": "_:b26511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10326", + "@id": "_:b20712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18695", + "@id": "_:b18397", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10330", + "@id": "_:b20708", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "result": { - "@id": "_:b12348", + "@id": "_:b25326", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10334", + "@id": "_:b20713", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "result": { - "@id": "_:b24648", + "@id": "_:b23695", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10328", + "@id": "_:b20702", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", "result": { - "@id": "_:b22067", + "@id": "_:b20703", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m006-out.jsonld", + "title": "Adds vocabulary expanded @type to object", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m006-in.jsonld", + "rdfs:comment": "Expansion using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt06-in.jsonld", - "title": "literal_with_2_squotes", - "rdfs:comment": "literal with 2 squotes \"x''y\" from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14836", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5473", + "@id": "_:b14844", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "result": { - "@id": "_:b17056", + "@id": "_:b20405", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5471", + "@id": "_:b14843", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17054", + "@id": "_:b7321", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5470", + "@id": "_:b14841", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17053", + "@id": "_:b18104", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5466", + "@id": "_:b14838", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17051", + "@id": "_:b21387", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5463", + "@id": "_:b14840", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "result": { - "@id": "_:b5464", + "@id": "_:b22145", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5468", + "@id": "_:b14842", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5554", + "@id": "_:b26801", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5467", + "@id": "_:b14845", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17052", + "@id": "_:b17332", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5465", + "@id": "_:b14839", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "result": { - "@id": "_:b6634", + "@id": "_:b13300", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5469", + "@id": "_:b14837", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "result": { - "@id": "_:b14769", + "@id": "_:b20147", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5472", + "@id": "_:b14834", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", "result": { - "@id": "_:b17055", + "@id": "_:b14835", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m007-out.jsonld", + "title": "Adds document expanded @type to object", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m007-in.jsonld", + "rdfs:comment": "Expansion using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt07-in.jsonld", - "title": "literal_with_dquote", - "rdfs:comment": "literal with dquote \"x\"y\" from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2318", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b13687", + "@id": "_:b2325", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "result": { - "@id": "_:b13696", + "@id": "_:b26892", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13686", + "@id": "_:b2322", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3232", + "@id": "_:b26830", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13691", + "@id": "_:b2321", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13700", + "@id": "_:b25977", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13688", + "@id": "_:b2327", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13697", + "@id": "_:b3523", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13694", + "@id": "_:b2323", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "result": { - "@id": "_:b5461", + "@id": "_:b17336", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13692", + "@id": "_:b2319", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13701", + "@id": "_:b17970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13690", + "@id": "_:b2324", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13699", + "@id": "_:b7697", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13695", + "@id": "_:b2320", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "result": { - "@id": "_:b13703", + "@id": "_:b22400", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13689", + "@id": "_:b2316", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "result": { - "@id": "_:b13698", + "@id": "_:b2317", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13693", + "@id": "_:b2326", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", "result": { - "@id": "_:b13702", + "@id": "_:b26893", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m008-out.jsonld", + "title": "When type is in a type map", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m008-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt08-in.jsonld", - "title": "literal_with_2_dquotes", - "rdfs:comment": "literal with 2 dquotes \"\"\"a\"\"b\"\"\" from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6122", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5578", + "@id": "_:b6124", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "result": { - "@id": "_:b9786", + "@id": "_:b19827", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5574", + "@id": "_:b6127", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23703", + "@id": "_:b25392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5570", + "@id": "_:b6120", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5571", + "@id": "_:b6121", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5575", + "@id": "_:b6131", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24428", + "@id": "_:b27023", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5576", + "@id": "_:b6125", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "result": { - "@id": "_:b16564", + "@id": "_:b24639", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5572", + "@id": "_:b6128", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7774", + "@id": "_:b27025", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5577", + "@id": "_:b6130", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18629", + "@id": "_:b7992", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5573", + "@id": "_:b6123", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "result": { - "@id": "_:b19973", + "@id": "_:b16454", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5579", + "@id": "_:b6126", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "result": { - "@id": "_:b1245", + "@id": "_:b25682", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5580", + "@id": "_:b6129", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", "result": { - "@id": "_:b13920", + "@id": "_:b8030", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m009-out.jsonld", + "title": "language map with @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m009-in.jsonld", + "rdfs:comment": "index on @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt09-in.jsonld", - "title": "literal_with_REVERSE_SOLIDUS2", - "rdfs:comment": "REVERSE SOLIDUS at end of literal from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3271", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b17551", + "@id": "_:b3281", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "result": { - "@id": "_:b17985", + "@id": "_:b21318", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17550", + "@id": "_:b3278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14539", + "@id": "_:b21317", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17545", + "@id": "_:b3272", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17929", + "@id": "_:b13336", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17553", + "@id": "_:b3279", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19681", + "@id": "_:b16626", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17546", + "@id": "_:b3280", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "result": { - "@id": "_:b19332", + "@id": "_:b21014", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17548", + "@id": "_:b3276", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19678", + "@id": "_:b21316", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17552", + "@id": "_:b3277", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19680", + "@id": "_:b20207", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17549", + "@id": "_:b3274", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "result": { - "@id": "_:b19679", + "@id": "_:b18794", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17547", + "@id": "_:b3275", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "result": { - "@id": "_:b19677", + "@id": "_:b21315", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17543", + "@id": "_:b3273", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", "result": { - "@id": "_:b17544", + "@id": "_:b15640", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m010-out.jsonld", + "title": "language map with alias of @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m010-in.jsonld", + "rdfs:comment": "index on @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt10-in.jsonld", - "title": "literal_with_CHARACTER_TABULATION", - "rdfs:comment": "literal with CHARACTER TABULATION from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6965", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5108", + "@id": "_:b6973", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "result": { - "@id": "_:b24572", + "@id": "_:b23726", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5101", + "@id": "_:b6969", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20718", + "@id": "_:b19113", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5103", + "@id": "_:b6967", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24569", + "@id": "_:b23378", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5102", + "@id": "_:b6974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6438", + "@id": "_:b23727", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5107", + "@id": "_:b6972", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "result": { - "@id": "_:b23151", + "@id": "_:b23725", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5104", + "@id": "_:b6970", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21570", + "@id": "_:b4789", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5106", + "@id": "_:b6966", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24571", + "@id": "_:b15351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5099", + "@id": "_:b6971", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "result": { - "@id": "_:b5100", + "@id": "_:b23724", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5105", + "@id": "_:b6963", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "result": { - "@id": "_:b24570", + "@id": "_:b6964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5109", + "@id": "_:b6968", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", "result": { - "@id": "_:b21852", + "@id": "_:b23723", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m011-out.jsonld", + "title": "id map with @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m011-in.jsonld", + "rdfs:comment": "index on @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt11-in.jsonld", - "title": "literal_with_BACKSPACE", - "rdfs:comment": "literal with BACKSPACE from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10122", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12818", + "@id": "_:b10131", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "result": { - "@id": "_:b24700", + "@id": "_:b18368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12816", + "@id": "_:b10127", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24011", + "@id": "_:b18365", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12823", + "@id": "_:b10123", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22671", + "@id": "_:b16265", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12821", + "@id": "_:b10130", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24701", + "@id": "_:b18367", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12822", + "@id": "_:b10125", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "result": { - "@id": "_:b23414", + "@id": "_:b18363", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12820", + "@id": "_:b10126", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22412", + "@id": "_:b18364", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12819", + "@id": "_:b10129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23372", + "@id": "_:b18366", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12817", + "@id": "_:b10128", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "result": { - "@id": "_:b23744", + "@id": "_:b6579", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12815", + "@id": "_:b10124", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "result": { - "@id": "_:b5007", + "@id": "_:b18362", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12814", + "@id": "_:b10120", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", "result": { - "@id": "_:b1991", + "@id": "_:b10121", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m012-out.jsonld", + "title": "type map with alias of @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m012-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt12-in.jsonld", - "title": "literal_with_LINE_FEED", - "rdfs:comment": "literal with LINE FEED from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b11231", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7107", + "@id": "_:b11236", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "result": { - "@id": "_:b17442", + "@id": "_:b25724", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7108", + "@id": "_:b11235", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17443", + "@id": "_:b25723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7104", + "@id": "_:b11229", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13683", + "@id": "_:b11230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7110", + "@id": "_:b11232", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17445", + "@id": "_:b20771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7103", + "@id": "_:b11238", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "result": { - "@id": "_:b12862", + "@id": "_:b1361", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7106", + "@id": "_:b11233", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17441", + "@id": "_:b23493", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7105", + "@id": "_:b11237", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17440", + "@id": "_:b25725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7109", + "@id": "_:b11234", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "result": { - "@id": "_:b17444", + "@id": "_:b23934", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7102", + "@id": "_:b11240", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "result": { - "@id": "_:b7616", + "@id": "_:b23394", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7100", + "@id": "_:b11239", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", "result": { - "@id": "_:b7101", + "@id": "_:b23891", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m013-out.jsonld", + "title": "graph index map with @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m013-in.jsonld", + "rdfs:comment": "index on @graph and @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt13-in.jsonld", - "title": "literal_with_CARRIAGE_RETURN", - "rdfs:comment": "literal with CARRIAGE RETURN from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16362", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12406", + "@id": "_:b16369", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "result": { - "@id": "_:b25158", + "@id": "_:b17314", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b12403", + "@id": "_:b16366", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19662", + "@id": "_:b26451", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12401", + "@id": "_:b16363", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15131", + "@id": "_:b18076", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12399", + "@id": "_:b16370", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12400", + "@id": "_:b26454", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12407", + "@id": "_:b16371", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "result": { - "@id": "_:b26808", + "@id": "_:b26455", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12404", + "@id": "_:b16360", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24783", + "@id": "_:b16361", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12402", + "@id": "_:b16364", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16817", + "@id": "_:b25157", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12408", + "@id": "_:b16367", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "result": { - "@id": "_:b27026", + "@id": "_:b26452", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b12405", + "@id": "_:b16365", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "result": { - "@id": "_:b26050", + "@id": "_:b11913", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12409", + "@id": "_:b16368", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", "result": { - "@id": "_:b14392", + "@id": "_:b26453", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m014-out.jsonld", + "title": "graph index map with alias @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m014-in.jsonld", + "rdfs:comment": "index on @graph and @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt14-in.jsonld", - "title": "literal_with_FORM_FEED", - "rdfs:comment": "literal with FORM FEED from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2564", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7299", + "@id": "_:b2568", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "result": { - "@id": "_:b8519", + "@id": "_:b23546", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7297", + "@id": "_:b2566", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25163", + "@id": "_:b20809", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7300", + "@id": "_:b2570", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21346", + "@id": "_:b19818", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7296", + "@id": "_:b2569", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20955", + "@id": "_:b24924", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7304", + "@id": "_:b2571", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "result": { - "@id": "_:b26132", + "@id": "_:b25939", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7294", + "@id": "_:b2562", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7295", + "@id": "_:b2563", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7302", + "@id": "_:b2572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22713", + "@id": "_:b23567", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7298", + "@id": "_:b2573", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "result": { - "@id": "_:b16164", + "@id": "_:b26877", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7301", + "@id": "_:b2565", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "result": { - "@id": "_:b9235", + "@id": "_:b18668", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7303", + "@id": "_:b2567", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", "result": { - "@id": "_:b25274", + "@id": "_:b21707", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m015-out.jsonld", + "title": "graph id index map with aliased @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m015-in.jsonld", + "rdfs:comment": "index on @graph and @id with @none" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt15-in.jsonld", - "title": "literal_with_REVERSE_SOLIDUS", - "rdfs:comment": "literal with REVERSE SOLIDUS from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7238", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2938", + "@id": "_:b7239", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "result": { - "@id": "_:b24625", + "@id": "_:b13720", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2941", + "@id": "_:b7244", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24638", + "@id": "_:b18862", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2942", + "@id": "_:b7242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20737", + "@id": "_:b12577", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2935", + "@id": "_:b7246", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13070", + "@id": "_:b23665", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2936", + "@id": "_:b7240", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "result": { - "@id": "_:b21348", + "@id": "_:b9842", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2933", + "@id": "_:b7241", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2934", + "@id": "_:b23452", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2943", + "@id": "_:b7236", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12268", + "@id": "_:b7237", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2937", + "@id": "_:b7243", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "result": { - "@id": "_:b23666", + "@id": "_:b24603", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2939", + "@id": "_:b7247", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "result": { - "@id": "_:b25779", + "@id": "_:b24605", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2940", + "@id": "_:b7245", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", "result": { - "@id": "_:b3969", + "@id": "_:b24604", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m016-out.jsonld", + "title": "graph id index map with aliased @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m016-in.jsonld", + "rdfs:comment": "index on @graph and @id with @none" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/nt16-in.jsonld", - "title": "literal_with_numeric_escape4", - "rdfs:comment": "literal with numeric escape4 \\u from N-Triples", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b21268", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b1315", + "@id": "_:b22086", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "result": { - "@id": "_:b1325", + "@id": "_:b22087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1314", + "@id": "_:b22093", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1324", + "@id": "_:b16159", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1317", + "@id": "_:b22088", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1327", + "@id": "_:b22986", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1311", + "@id": "_:b22091", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1321", + "@id": "_:b17377", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1309", + "@id": "_:b22090", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "result": { - "@id": "_:b1319", + "@id": "_:b26161", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1313", + "@id": "_:b22089", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1323", + "@id": "_:b5468", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1310", + "@id": "_:b22096", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1320", + "@id": "_:b26826", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1316", + "@id": "_:b22092", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "result": { - "@id": "_:b1326", + "@id": "_:b24479", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1318", + "@id": "_:b22094", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "result": { - "@id": "_:b1328", + "@id": "_:b25780", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1312", + "@id": "_:b22095", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", "result": { - "@id": "_:b1322", + "@id": "_:b26440", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m017-out.jsonld", + "title": "string value of type map expands to node reference", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m017-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15286", + "@id": "_:b10759", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/p001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/p001-out.nq", - "title": "@version may be specified after first context", - "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version.", "assertions": [ { - "@id": "_:b15289", + "@id": "_:b10768", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "result": { - "@id": "_:b19659", + "@id": "_:b20511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15293", + "@id": "_:b10765", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22589", + "@id": "_:b20509", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15287", + "@id": "_:b10762", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16377", + "@id": "_:b20428", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15294", + "@id": "_:b10760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17625", + "@id": "_:b11405", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15295", + "@id": "_:b10767", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "result": { - "@id": "_:b22590", + "@id": "_:b12324", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15292", + "@id": "_:b10764", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22588", + "@id": "_:b15375", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15290", + "@id": "_:b10757", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22587", + "@id": "_:b10758", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15288", + "@id": "_:b10766", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "result": { - "@id": "_:b18565", + "@id": "_:b20510", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15291", + "@id": "_:b10763", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "result": { - "@id": "_:b21559", + "@id": "_:b20508", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15284", + "@id": "_:b10761", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", "result": { - "@id": "_:b15285", + "@id": "_:b20416", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m018-out.jsonld", + "title": "string value of type map expands to node reference with @type: @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m018-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10787", + "@id": "_:b13402", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/p002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/p002-out.nq", - "title": "@version setting [1.0, 1.1, 1.0]", - "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version.", "assertions": [ { - "@id": "_:b10796", + "@id": "_:b14501", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "result": { - "@id": "_:b5050", + "@id": "_:b22160", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10790", + "@id": "_:b14503", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24263", + "@id": "_:b24979", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10793", + "@id": "_:b14500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24265", + "@id": "_:b21889", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10791", + "@id": "_:b14502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11561", + "@id": "_:b24206", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10789", + "@id": "_:b14498", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "result": { - "@id": "_:b21435", + "@id": "_:b14499", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10788", + "@id": "_:b14508", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14095", + "@id": "_:b17556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10792", + "@id": "_:b14507", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24264", + "@id": "_:b24892", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10785", + "@id": "_:b14505", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "result": { - "@id": "_:b10786", + "@id": "_:b26661", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10794", + "@id": "_:b14506", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "result": { - "@id": "_:b24266", + "@id": "_:b26068", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10795", + "@id": "_:b14504", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", "result": { - "@id": "_:b24267", + "@id": "_:b25952", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m019-out.jsonld", + "title": "string value of type map expands to node reference with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m019-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10316", + "@id": "_:b3190", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/p003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/p003-out.nq", - "title": "@version setting [1.1, 1.0]", - "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version.", "assertions": [ { - "@id": "_:b10320", + "@id": "_:b6611", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "result": { - "@id": "_:b24197", + "@id": "_:b9445", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10321", + "@id": "_:b6607", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25933", + "@id": "_:b7946", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10317", + "@id": "_:b6610", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12613", + "@id": "_:b22889", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10319", + "@id": "_:b6605", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15710", + "@id": "_:b21995", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10325", + "@id": "_:b6606", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "result": { - "@id": "_:b13840", + "@id": "_:b23797", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10323", + "@id": "_:b6603", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25934", + "@id": "_:b6604", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10324", + "@id": "_:b6609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25935", + "@id": "_:b25402", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10318", + "@id": "_:b6613", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "result": { - "@id": "_:b14927", + "@id": "_:b25312", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10314", + "@id": "_:b6608", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "result": { - "@id": "_:b10315", + "@id": "_:b4263", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10322", + "@id": "_:b6612", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", "result": { - "@id": "_:b20819", + "@id": "_:b22318", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "string value of type map must not be a literal", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m020-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b92", + "@id": "_:b15424", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/p004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/p004-out.nq", - "title": "@version setting [1.1, 1.0, 1.1]", - "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version.", "assertions": [ { - "@id": "_:b100", + "@id": "_:b15422", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "result": { - "@id": "_:b110", + "@id": "_:b15423", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b93", + "@id": "_:b15432", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b103", + "@id": "_:b24701", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b99", + "@id": "_:b15428", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b109", + "@id": "_:b16590", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b98", + "@id": "_:b15426", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b108", + "@id": "_:b24158", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b102", + "@id": "_:b15425", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "result": { - "@id": "_:b112", + "@id": "_:b19297", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b96", + "@id": "_:b15431", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b106", + "@id": "_:b24700", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b95", + "@id": "_:b15429", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b105", + "@id": "_:b21588", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b94", + "@id": "_:b15427", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "result": { - "@id": "_:b104", + "@id": "_:b24698", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b97", + "@id": "_:b15433", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "result": { - "@id": "_:b107", + "@id": "_:b5229", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b101", + "@id": "_:b15430", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", "result": { - "@id": "_:b111", + "@id": "_:b24699", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n001-out.jsonld", + "title": "Expands input using @nest", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n001-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7867", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b17422", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi01-in.jsonld", - "mf:result": "invalid term definition", - "title": "error if @version is json-ld-1.0 for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b7865", + "@id": "_:b17430", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "result": { - "@id": "_:b7866", + "@id": "_:b5741", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7869", + "@id": "_:b17426", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19976", + "@id": "_:b23258", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7872", + "@id": "_:b17423", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25637", + "@id": "_:b20434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7873", + "@id": "_:b17431", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11535", + "@id": "_:b8525", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7874", + "@id": "_:b17428", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "result": { - "@id": "_:b15277", + "@id": "_:b26715", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7870", + "@id": "_:b17427", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21757", + "@id": "_:b25702", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7871", + "@id": "_:b17421", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24419", + "@id": "_:b1614", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7875", + "@id": "_:b17424", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "result": { - "@id": "_:b9657", + "@id": "_:b22469", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7876", + "@id": "_:b17425", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "result": { - "@id": "_:b23791", + "@id": "_:b25500", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7868", + "@id": "_:b17429", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", "result": { - "@id": "_:b15411", + "@id": "_:b7765", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n002-out.jsonld", + "title": "Expands input using aliased @nest", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n002-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3513", + "@id": "_:b21114", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi02-in.jsonld", - "mf:result": "invalid term definition", - "title": "error if @container does not include @index for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b3511", + "@id": "_:b21117", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "result": { - "@id": "_:b3512", + "@id": "_:b17176", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3517", + "@id": "_:b21116", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13304", + "@id": "_:b23246", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3520", + "@id": "_:b21120", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26925", + "@id": "_:b25438", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3515", + "@id": "_:b21119", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23668", + "@id": "_:b26483", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3521", + "@id": "_:b21122", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "result": { - "@id": "_:b5414", + "@id": "_:b26072", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3516", + "@id": "_:b21121", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25500", + "@id": "_:b26812", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3518", + "@id": "_:b21124", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26144", + "@id": "_:b26814", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3514", + "@id": "_:b21118", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "result": { - "@id": "_:b21538", + "@id": "_:b26436", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3522", + "@id": "_:b21123", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "result": { - "@id": "_:b17155", + "@id": "_:b26813", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3519", + "@id": "_:b21115", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", "result": { - "@id": "_:b26803", + "@id": "_:b21325", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n003-out.jsonld", + "title": "Appends nested values when property at base and nested", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n003-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11928", + "@id": "_:b4362", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi03-in.jsonld", - "mf:result": "invalid term definition", - "title": "error if @index is a keyword for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b11930", + "@id": "_:b4367", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "result": { - "@id": "_:b14633", + "@id": "_:b26054", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11929", + "@id": "_:b4366", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14632", + "@id": "_:b16973", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11932", + "@id": "_:b4369", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14635", + "@id": "_:b26056", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11936", + "@id": "_:b4360", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14639", + "@id": "_:b4361", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11935", + "@id": "_:b4371", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "result": { - "@id": "_:b14638", + "@id": "_:b26057", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11933", + "@id": "_:b4365", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14636", + "@id": "_:b25469", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11926", + "@id": "_:b4363", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11927", + "@id": "_:b10726", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11931", + "@id": "_:b4364", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "result": { - "@id": "_:b14634", + "@id": "_:b22163", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11937", + "@id": "_:b4368", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "result": { - "@id": "_:b14640", + "@id": "_:b26055", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11934", + "@id": "_:b4370", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", "result": { - "@id": "_:b14637", + "@id": "_:b22165", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n004-out.jsonld", + "title": "Appends nested values from all @nest aliases", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n004-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2034", + "@id": "_:b8763", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi04-in.jsonld", - "mf:result": "invalid term definition", - "title": "error if @index is not a string for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b2040", + "@id": "_:b20736", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "result": { - "@id": "_:b3594", + "@id": "_:b19556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2042", + "@id": "_:b20735", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16639", + "@id": "_:b20471", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2037", + "@id": "_:b20733", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16635", + "@id": "_:b25510", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2032", + "@id": "_:b20738", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2033", + "@id": "_:b7149", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2035", + "@id": "_:b20739", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "result": { - "@id": "_:b8442", + "@id": "_:b25799", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2041", + "@id": "_:b20737", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16638", + "@id": "_:b26502", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2036", + "@id": "_:b20731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16634", + "@id": "_:b24065", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2039", + "@id": "_:b20729", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "result": { - "@id": "_:b16637", + "@id": "_:b20730", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2043", + "@id": "_:b20732", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "result": { - "@id": "_:b16640", + "@id": "_:b25619", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2038", + "@id": "_:b20734", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", "result": { - "@id": "_:b16636", + "@id": "_:b26147", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n005-out.jsonld", + "title": "Nested nested containers", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n005-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11298", + "@id": "_:b12578", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi05-in.jsonld", - "mf:result": "invalid value object", - "title": "error if attempting to add property to value object for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b11300", + "@id": "_:b16086", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "result": { - "@id": "_:b19402", + "@id": "_:b25997", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11299", + "@id": "_:b16085", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17564", + "@id": "_:b26706", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11305", + "@id": "_:b16087", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23957", + "@id": "_:b7843", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11304", + "@id": "_:b16083", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12512", + "@id": "_:b25753", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11302", + "@id": "_:b16080", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "result": { - "@id": "_:b12999", + "@id": "_:b24927", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11303", + "@id": "_:b16082", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24248", + "@id": "_:b20348", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11307", + "@id": "_:b16084", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14249", + "@id": "_:b24786", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11297", + "@id": "_:b16078", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "result": { - "@id": "_:b6487", + "@id": "_:b16079", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11301", + "@id": "_:b16088", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "result": { - "@id": "_:b21021", + "@id": "_:b26976", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11306", + "@id": "_:b16081", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", "result": { - "@id": "_:b24439", + "@id": "_:b7703", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n006-out.jsonld", + "title": "Arrays of nested values", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n006-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18094", + "@id": "_:b1208", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi06-out.nq", - "title": "property-valued index expands to property value, instead of @index (value)", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b18096", + "@id": "_:b1212", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "result": { - "@id": "_:b14630", + "@id": "_:b22942", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18101", + "@id": "_:b1215", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18109", + "@id": "_:b26150", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18103", + "@id": "_:b1214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18111", + "@id": "_:b26264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18100", + "@id": "_:b1210", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18108", + "@id": "_:b7698", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18102", + "@id": "_:b1216", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "result": { - "@id": "_:b18110", + "@id": "_:b16232", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18099", + "@id": "_:b1209", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18107", + "@id": "_:b2817", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18104", + "@id": "_:b1217", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18112", + "@id": "_:b22654", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18097", + "@id": "_:b1211", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "result": { - "@id": "_:b18105", + "@id": "_:b21487", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b18098", + "@id": "_:b1213", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "result": { - "@id": "_:b18106", + "@id": "_:b23309", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18095", + "@id": "_:b1206", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", "result": { - "@id": "_:b4559", + "@id": "_:b1207", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n007-out.jsonld", + "title": "A nest of arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n007-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3024", + "@id": "_:b13624", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi07-out.nq", - "title": "property-valued index appends to property value, instead of @index (value)", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b3030", + "@id": "_:b13626", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "result": { - "@id": "_:b16229", + "@id": "_:b25066", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3025", + "@id": "_:b13630", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7193", + "@id": "_:b26837", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3026", + "@id": "_:b13631", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18061", + "@id": "_:b5713", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3031", + "@id": "_:b13628", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25950", + "@id": "_:b26442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3028", + "@id": "_:b13629", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "result": { - "@id": "_:b23748", + "@id": "_:b9146", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3034", + "@id": "_:b13622", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4330", + "@id": "_:b13623", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3029", + "@id": "_:b13627", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25788", + "@id": "_:b25321", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3033", + "@id": "_:b13632", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "result": { - "@id": "_:b25951", + "@id": "_:b25168", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3032", + "@id": "_:b13625", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "result": { - "@id": "_:b24041", + "@id": "_:b23578", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3027", + "@id": "_:b13633", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", "result": { - "@id": "_:b24399", + "@id": "_:b15637", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n008-out.jsonld", + "title": "Multiple keys may mapping to @type when nesting", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n008-in.jsonld", + "rdfs:comment": "Expansion using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21738", + "@id": "_:b12636", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi08-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi08-out.nq", - "title": "property-valued index expands to property value, instead of @index (node)", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b21736", + "@id": "_:b12643", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "result": { - "@id": "_:b21737", + "@id": "_:b21434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21742", + "@id": "_:b12637", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15416", + "@id": "_:b22990", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21746", + "@id": "_:b12634", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25801", + "@id": "_:b12635", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21740", + "@id": "_:b12642", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25258", + "@id": "_:b3965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21745", + "@id": "_:b12640", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "result": { - "@id": "_:b13125", + "@id": "_:b26042", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21744", + "@id": "_:b12644", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11966", + "@id": "_:b26043", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21741", + "@id": "_:b12639", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20877", + "@id": "_:b12134", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21747", + "@id": "_:b12638", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "result": { - "@id": "_:b26859", + "@id": "_:b23481", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b21739", + "@id": "_:b12641", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "result": { - "@id": "_:b14094", + "@id": "_:b20584", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21743", + "@id": "_:b12645", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", "result": { - "@id": "_:b26074", + "@id": "_:b26044", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/p001-out.jsonld", + "title": "@version may be specified after first context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/p001-in.jsonld", + "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14397", + "@id": "_:b13577", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi09-out.nq", - "title": "property-valued index appends to property value, instead of @index (node)", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b14403", + "@id": "_:b13584", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "result": { - "@id": "_:b26777", + "@id": "_:b16251", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14401", + "@id": "_:b13582", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23001", + "@id": "_:b22530", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14395", + "@id": "_:b13579", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14396", + "@id": "_:b17540", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14405", + "@id": "_:b13585", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26431", + "@id": "_:b22532", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14406", + "@id": "_:b13581", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "result": { - "@id": "_:b26933", + "@id": "_:b22529", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14398", + "@id": "_:b13580", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22687", + "@id": "_:b22528", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14400", + "@id": "_:b13575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25680", + "@id": "_:b13576", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14404", + "@id": "_:b13578", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "result": { - "@id": "_:b22935", + "@id": "_:b21550", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14399", + "@id": "_:b13583", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "result": { - "@id": "_:b26488", + "@id": "_:b22531", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14402", + "@id": "_:b13586", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", "result": { - "@id": "_:b25535", + "@id": "_:b22533", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/p002-out.jsonld", + "title": "@version setting [1.0, 1.1, 1.0]", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/p002-in.jsonld", + "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10952", + "@id": "_:b7086", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi10-out.nq", - "title": "property-valued index does not output property for @none", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b10959", + "@id": "_:b7093", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "result": { - "@id": "_:b26188", + "@id": "_:b20103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10961", + "@id": "_:b7090", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25981", + "@id": "_:b20100", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10957", + "@id": "_:b7087", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22480", + "@id": "_:b11024", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10953", + "@id": "_:b7089", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18762", + "@id": "_:b20099", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10958", + "@id": "_:b7094", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "result": { - "@id": "_:b8121", + "@id": "_:b20104", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10956", + "@id": "_:b7092", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24190", + "@id": "_:b20102", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10960", + "@id": "_:b7088", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26671", + "@id": "_:b15376", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10954", + "@id": "_:b7084", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "result": { - "@id": "_:b21398", + "@id": "_:b7085", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10955", + "@id": "_:b7091", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "result": { - "@id": "_:b22037", + "@id": "_:b20101", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10950", + "@id": "_:b7095", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", "result": { - "@id": "_:b10951", + "@id": "_:b14288", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/p003-out.jsonld", + "title": "@version setting [1.1, 1.0]", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/p003-in.jsonld", + "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1131", + "@id": "_:b9372", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pi11-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pi11-out.nq", - "title": "property-valued index adds property to graph object", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b1134", + "@id": "_:b9379", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "result": { - "@id": "_:b16122", + "@id": "_:b21971", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1137", + "@id": "_:b9381", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22711", + "@id": "_:b21973", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1132", + "@id": "_:b9376", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9466", + "@id": "_:b21968", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1139", + "@id": "_:b9380", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22712", + "@id": "_:b21972", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1140", + "@id": "_:b9377", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "result": { - "@id": "_:b19089", + "@id": "_:b21969", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1138", + "@id": "_:b9378", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14942", + "@id": "_:b21970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1135", + "@id": "_:b9375", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11087", + "@id": "_:b18310", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1129", + "@id": "_:b9370", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "result": { - "@id": "_:b1130", + "@id": "_:b9371", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1133", + "@id": "_:b9374", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "result": { - "@id": "_:b11696", + "@id": "_:b15785", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1136", + "@id": "_:b9373", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", "result": { - "@id": "_:b22710", + "@id": "_:b12164", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/p004-out.jsonld", + "title": "@version setting [1.1, 1.0, 1.1]", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/p004-in.jsonld", + "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2829", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b17603", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr01-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protect a term", - "rdfs:comment": "Check error when overriding a protected term.", "assertions": [ { - "@id": "_:b2838", + "@id": "_:b17611", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "result": { - "@id": "_:b23611", + "@id": "_:b26549", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2833", + "@id": "_:b17605", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23070", + "@id": "_:b23547", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2837", + "@id": "_:b17613", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26957", + "@id": "_:b26604", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2834", + "@id": "_:b17609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25964", + "@id": "_:b26977", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2832", + "@id": "_:b17608", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "result": { - "@id": "_:b5238", + "@id": "_:b26649", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2836", + "@id": "_:b17607", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21259", + "@id": "_:b26527", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2830", + "@id": "_:b17606", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22555", + "@id": "_:b22816", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2835", + "@id": "_:b17604", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "result": { - "@id": "_:b16593", + "@id": "_:b23099", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2831", + "@id": "_:b17612", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "result": { - "@id": "_:b23378", + "@id": "_:b23375", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2827", + "@id": "_:b17610", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", "result": { - "@id": "_:b2828", + "@id": "_:b4711", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "error if @version is json-ld-1.0 for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi01-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18488", + "@id": "_:b6875", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr02-out.nq", - "title": "Set a term to not be protected", - "rdfs:comment": "A term with @protected: false is not protected.", "assertions": [ { - "@id": "_:b18486", + "@id": "_:b6880", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "result": { - "@id": "_:b18487", + "@id": "_:b20721", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b18493", + "@id": "_:b6877", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23389", + "@id": "_:b15581", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18491", + "@id": "_:b6881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23388", + "@id": "_:b5778", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18490", + "@id": "_:b6878", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19970", + "@id": "_:b20206", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18495", + "@id": "_:b6883", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "result": { - "@id": "_:b23391", + "@id": "_:b20569", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18494", + "@id": "_:b6876", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23390", + "@id": "_:b7331", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18497", + "@id": "_:b6873", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23393", + "@id": "_:b6874", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18492", + "@id": "_:b6882", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "result": { - "@id": "_:b19414", + "@id": "_:b19789", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b18489", + "@id": "_:b6884", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "result": { - "@id": "_:b20468", + "@id": "_:b22920", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18496", + "@id": "_:b6879", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", "result": { - "@id": "_:b23392", + "@id": "_:b19381", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "error if @container does not include @index for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi02-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6624", + "@id": "_:b3065", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr03-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protect all terms in context", - "rdfs:comment": "A protected context protects all term definitions.", "assertions": [ { - "@id": "_:b6632", + "@id": "_:b3066", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "result": { - "@id": "_:b26702", + "@id": "_:b20340", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6629", + "@id": "_:b3070", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20309", + "@id": "_:b25737", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6622", + "@id": "_:b3068", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6623", + "@id": "_:b24183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6626", + "@id": "_:b3071", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20863", + "@id": "_:b25738", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6628", + "@id": "_:b3072", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "result": { - "@id": "_:b15298", + "@id": "_:b25739", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6630", + "@id": "_:b3063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6573", + "@id": "_:b3064", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6625", + "@id": "_:b3074", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19036", + "@id": "_:b17354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6631", + "@id": "_:b3067", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "result": { - "@id": "_:b24729", + "@id": "_:b20492", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6627", + "@id": "_:b3069", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "result": { - "@id": "_:b24036", + "@id": "_:b20699", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6633", + "@id": "_:b3073", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", "result": { - "@id": "_:b26447", + "@id": "_:b25740", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "error if @index is a keyword for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi03-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13003", + "@id": "_:b12685", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr04-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Do not protect term with @protected: false", - "rdfs:comment": "A protected context does not protect terms with @protected: false.", "assertions": [ { - "@id": "_:b13004", + "@id": "_:b16555", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "result": { - "@id": "_:b20370", + "@id": "_:b21095", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13010", + "@id": "_:b16558", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21092", + "@id": "_:b24493", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13005", + "@id": "_:b16552", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21087", + "@id": "_:b16553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13008", + "@id": "_:b16561", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21090", + "@id": "_:b24203", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13012", + "@id": "_:b16559", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "result": { - "@id": "_:b10562", + "@id": "_:b24494", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13007", + "@id": "_:b16557", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21089", + "@id": "_:b21108", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13006", + "@id": "_:b16556", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21088", + "@id": "_:b7098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13011", + "@id": "_:b16554", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "result": { - "@id": "_:b21093", + "@id": "_:b18144", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b13001", + "@id": "_:b16562", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "result": { - "@id": "_:b13002", + "@id": "_:b24496", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13009", + "@id": "_:b16560", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", "result": { - "@id": "_:b21091", + "@id": "_:b24495", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "error if @index is not a string for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi04-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10748", + "@id": "_:b9707", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr05-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Clear active context with protected terms from an embedded context", - "rdfs:comment": "The Active context be set to null from an embedded context.", "assertions": [ { - "@id": "_:b10751", + "@id": "_:b9710", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "result": { - "@id": "_:b21317", + "@id": "_:b24162", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10756", + "@id": "_:b9711", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21321", + "@id": "_:b24808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10749", + "@id": "_:b9713", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14833", + "@id": "_:b6831", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10758", + "@id": "_:b9712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21323", + "@id": "_:b22697", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10755", + "@id": "_:b9705", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "result": { - "@id": "_:b21320", + "@id": "_:b9706", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10754", + "@id": "_:b9709", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21319", + "@id": "_:b18337", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10750", + "@id": "_:b9716", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14943", + "@id": "_:b21183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10752", + "@id": "_:b9715", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "result": { - "@id": "_:b21318", + "@id": "_:b26391", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10757", + "@id": "_:b9708", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "result": { - "@id": "_:b21322", + "@id": "_:b11992", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10753", + "@id": "_:b9714", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", "result": { - "@id": "_:b16629", + "@id": "_:b26127", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid value object", + "title": "error if attempting to add property to value object for property-valued index", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi05-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9909", + "@id": "_:b8345", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr06-out.nq", - "title": "Clear active context of protected terms from a term.", - "rdfs:comment": "The Active context may be set to null from a scoped context of a term.", "assertions": [ { - "@id": "_:b9917", + "@id": "_:b8353", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "result": { - "@id": "_:b4600", + "@id": "_:b11092", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9916", + "@id": "_:b8352", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18891", + "@id": "_:b4587", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9915", + "@id": "_:b8343", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18296", + "@id": "_:b8344", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9910", + "@id": "_:b8349", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18887", + "@id": "_:b11089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9912", + "@id": "_:b8351", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "result": { - "@id": "_:b18889", + "@id": "_:b11091", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9907", + "@id": "_:b8346", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9908", + "@id": "_:b11087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9918", + "@id": "_:b8348", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18892", + "@id": "_:b11088", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9913", + "@id": "_:b8347", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "result": { - "@id": "_:b14456", + "@id": "_:b1029", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9911", + "@id": "_:b8354", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "result": { - "@id": "_:b18888", + "@id": "_:b2130", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9914", + "@id": "_:b8350", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", "result": { - "@id": "_:b18890", + "@id": "_:b11090", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi06-out.jsonld", + "title": "property-valued index expands to property value, instead of @index (value)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi06-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3425", + "@id": "_:b20367", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr08-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Term with protected scoped context.", - "rdfs:comment": "A scoped context can protect terms.", "assertions": [ { - "@id": "_:b3433", + "@id": "_:b20371", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "result": { - "@id": "_:b1471", + "@id": "_:b21470", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3426", + "@id": "_:b20368", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5287", + "@id": "_:b20448", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3429", + "@id": "_:b20373", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24734", + "@id": "_:b11697", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3430", + "@id": "_:b20372", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25494", + "@id": "_:b7355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3423", + "@id": "_:b20376", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "result": { - "@id": "_:b3424", + "@id": "_:b26964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3432", + "@id": "_:b20369", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24840", + "@id": "_:b22180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3427", + "@id": "_:b20374", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22979", + "@id": "_:b13634", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3431", + "@id": "_:b20375", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "result": { - "@id": "_:b25768", + "@id": "_:b26882", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3428", + "@id": "_:b20370", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "result": { - "@id": "_:b24082", + "@id": "_:b21237", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3434", + "@id": "_:b20365", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", "result": { - "@id": "_:b20439", + "@id": "_:b20366", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi07-out.jsonld", + "title": "property-valued index appends to property value, instead of @index (value)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi07-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7349", + "@id": "_:b9435", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr09-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Attempt to redefine term in other protected context.", - "rdfs:comment": "A protected term cannot redefine another protected term.", "assertions": [ { - "@id": "_:b7356", + "@id": "_:b9441", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "result": { - "@id": "_:b25593", + "@id": "_:b24231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7355", + "@id": "_:b9438", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26295", + "@id": "_:b24230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7350", + "@id": "_:b9439", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15679", + "@id": "_:b16931", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7352", + "@id": "_:b9442", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17885", + "@id": "_:b2784", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7354", + "@id": "_:b9433", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "result": { - "@id": "_:b25432", + "@id": "_:b9434", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7357", + "@id": "_:b9440", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26857", + "@id": "_:b15304", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7347", + "@id": "_:b9444", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7348", + "@id": "_:b24232", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7351", + "@id": "_:b9443", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "result": { - "@id": "_:b20795", + "@id": "_:b22495", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7353", + "@id": "_:b9437", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "result": { - "@id": "_:b24086", + "@id": "_:b20202", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7358", + "@id": "_:b9436", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", "result": { - "@id": "_:b25142", + "@id": "_:b17288", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi08-out.jsonld", + "title": "property-valued index expands to property value, instead of @index (node)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi08-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1725", + "@id": "_:b4474", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr10-out.nq", - "title": "Simple protected and unprotected terms.", - "rdfs:comment": "Simple protected and unprotected terms.", "assertions": [ { - "@id": "_:b1723", + "@id": "_:b6525", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "result": { - "@id": "_:b1724", + "@id": "_:b26172", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1733", + "@id": "_:b6521", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21411", + "@id": "_:b24586", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1729", + "@id": "_:b6519", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23161", + "@id": "_:b12765", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1730", + "@id": "_:b6520", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19123", + "@id": "_:b22309", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1732", + "@id": "_:b6515", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "result": { - "@id": "_:b26124", + "@id": "_:b6516", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1727", + "@id": "_:b6522", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10414", + "@id": "_:b25278", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1731", + "@id": "_:b6518", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22207", + "@id": "_:b18208", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1726", + "@id": "_:b6523", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "result": { - "@id": "_:b4384", + "@id": "_:b25564", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1728", + "@id": "_:b6524", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "result": { - "@id": "_:b21275", + "@id": "_:b26162", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1734", + "@id": "_:b6517", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", "result": { - "@id": "_:b26125", + "@id": "_:b16019", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi09-out.jsonld", + "title": "property-valued index appends to property value, instead of @index (node)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi09-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2909", + "@id": "_:b23697", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr11-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Fail to override protected term.", - "rdfs:comment": "Fail to override protected term.", "assertions": [ { - "@id": "_:b2912", + "@id": "_:b23702", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "result": { - "@id": "_:b21018", + "@id": "_:b23956", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2910", + "@id": "_:b23701", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11536", + "@id": "_:b23955", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2913", + "@id": "_:b23703", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12453", + "@id": "_:b23957", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2911", + "@id": "_:b23705", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15373", + "@id": "_:b18801", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2917", + "@id": "_:b23704", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "result": { - "@id": "_:b14070", + "@id": "_:b23958", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2916", + "@id": "_:b23700", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24000", + "@id": "_:b20519", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2915", + "@id": "_:b23696", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25970", + "@id": "_:b23275", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2907", + "@id": "_:b23698", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "result": { - "@id": "_:b2908", + "@id": "_:b23954", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2914", + "@id": "_:b23706", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "result": { - "@id": "_:b22875", + "@id": "_:b23959", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2918", + "@id": "_:b23699", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", "result": { - "@id": "_:b25659", + "@id": "_:b1002", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi10-out.jsonld", + "title": "property-valued index does not output property for @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi10-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b22522", + "@id": "_:b396", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr12-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Scoped context fail to override protected term.", - "rdfs:comment": "Scoped context fail to override protected term.", "assertions": [ { - "@id": "_:b22530", + "@id": "_:b402", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "result": { - "@id": "_:b20805", + "@id": "_:b412", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b22527", + "@id": "_:b403", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26258", + "@id": "_:b413", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22524", + "@id": "_:b406", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24496", + "@id": "_:b416", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22520", + "@id": "_:b401", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22521", + "@id": "_:b411", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22531", + "@id": "_:b404", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "result": { - "@id": "_:b23412", + "@id": "_:b414", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22523", + "@id": "_:b405", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22155", + "@id": "_:b415", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22529", + "@id": "_:b398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26685", + "@id": "_:b408", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22526", + "@id": "_:b399", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "result": { - "@id": "_:b26825", + "@id": "_:b409", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b22525", + "@id": "_:b397", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "result": { - "@id": "_:b24087", + "@id": "_:b407", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22528", + "@id": "_:b400", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", "result": { - "@id": "_:b27014", + "@id": "_:b410", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi11-out.jsonld", + "title": "property-valued index adds property to graph object", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi11-in.jsonld", + "rdfs:comment": "Expanding index maps where index is a property." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16004", + "@id": "_:b1034", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr13-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr13-out.nq", - "title": "Override unprotected term.", - "rdfs:comment": "Override unprotected term.", "assertions": [ { - "@id": "_:b16009", + "@id": "_:b1041", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "result": { - "@id": "_:b21722", + "@id": "_:b12823", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16012", + "@id": "_:b1035", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21725", + "@id": "_:b20380", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16002", + "@id": "_:b1032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16003", + "@id": "_:b1033", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16008", + "@id": "_:b1039", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21721", + "@id": "_:b26387", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16011", + "@id": "_:b1042", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "result": { - "@id": "_:b21724", + "@id": "_:b26495", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16010", + "@id": "_:b1036", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21723", + "@id": "_:b21605", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16007", + "@id": "_:b1038", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21720", + "@id": "_:b25205", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16005", + "@id": "_:b1037", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "result": { - "@id": "_:b17917", + "@id": "_:b23257", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16013", + "@id": "_:b1040", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "result": { - "@id": "_:b19347", + "@id": "_:b22640", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16006", + "@id": "_:b1043", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", "result": { - "@id": "_:b21686", + "@id": "_:b21321", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protect a term", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr01-in.jsonld", + "rdfs:comment": "Check error when overriding a protected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b744", + "@id": "_:b16092", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr14-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr14-out.nq", - "title": "Clear protection with null context.", - "rdfs:comment": "Clear protection with null context.", "assertions": [ { - "@id": "_:b2794", + "@id": "_:b16098", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "result": { - "@id": "_:b20234", + "@id": "_:b25045", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2796", + "@id": "_:b16101", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17019", + "@id": "_:b25047", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2798", + "@id": "_:b16096", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20237", + "@id": "_:b17194", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2793", + "@id": "_:b16094", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20233", + "@id": "_:b22313", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2792", + "@id": "_:b16100", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "result": { - "@id": "_:b11075", + "@id": "_:b19618", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2799", + "@id": "_:b16099", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1154", + "@id": "_:b25046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2797", + "@id": "_:b16090", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20236", + "@id": "_:b16091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2795", + "@id": "_:b16093", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "result": { - "@id": "_:b20235", + "@id": "_:b10841", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2790", + "@id": "_:b16095", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "result": { - "@id": "_:b2791", + "@id": "_:b22994", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2800", + "@id": "_:b16097", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", "result": { - "@id": "_:b20238", + "@id": "_:b25044", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr02-out.jsonld", + "title": "Set a term to not be protected", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr02-in.jsonld", + "rdfs:comment": "A term with @protected: false is not protected." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b609", + "@id": "_:b17879", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr15-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr15-out.nq", - "title": "Clear protection with array with null context", - "rdfs:comment": "Clear protection with array with null context", "assertions": [ { - "@id": "_:b613", + "@id": "_:b19338", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "result": { - "@id": "_:b623", + "@id": "_:b17862", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b614", + "@id": "_:b19342", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b624", + "@id": "_:b20674", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b619", + "@id": "_:b19339", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b629", + "@id": "_:b25061", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b617", + "@id": "_:b19333", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b627", + "@id": "_:b19334", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b615", + "@id": "_:b19341", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "result": { - "@id": "_:b625", + "@id": "_:b25063", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b616", + "@id": "_:b19336", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b626", + "@id": "_:b19898", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b611", + "@id": "_:b19340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b621", + "@id": "_:b25062", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b612", + "@id": "_:b19337", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "result": { - "@id": "_:b622", + "@id": "_:b23936", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b618", + "@id": "_:b19335", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "result": { - "@id": "_:b628", + "@id": "_:b23444", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b610", + "@id": "_:b19343", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", "result": { - "@id": "_:b620", + "@id": "_:b25064", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protect all terms in context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr03-in.jsonld", + "rdfs:comment": "A protected context protects all term definitions." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4223", + "@id": "_:b22759", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr16-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr16-out.nq", - "title": "Override protected terms after null.", - "rdfs:comment": "Override protected terms after null.", "assertions": [ { - "@id": "_:b4227", + "@id": "_:b22761", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "result": { - "@id": "_:b15571", + "@id": "_:b22915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4221", + "@id": "_:b22757", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4222", + "@id": "_:b22758", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4229", + "@id": "_:b22768", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15573", + "@id": "_:b20133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4230", + "@id": "_:b22762", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15574", + "@id": "_:b21389", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4232", + "@id": "_:b22767", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "result": { - "@id": "_:b15576", + "@id": "_:b18956", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4231", + "@id": "_:b22760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15575", + "@id": "_:b23664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4224", + "@id": "_:b22766", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9589", + "@id": "_:b25878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4228", + "@id": "_:b22764", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "result": { - "@id": "_:b15572", + "@id": "_:b11840", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4226", + "@id": "_:b22765", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "result": { - "@id": "_:b15570", + "@id": "_:b17542", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4225", + "@id": "_:b22763", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", "result": { - "@id": "_:b15569", + "@id": "_:b25877", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Do not protect term with @protected: false", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr04-in.jsonld", + "rdfs:comment": "A protected context does not protect terms with @protected: false." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b24898", + "@id": "_:b3423", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr17-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Fail to override protected terms with type.", - "rdfs:comment": "Fail to override protected terms with type.", "assertions": [ { - "@id": "_:b24904", + "@id": "_:b11249", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "result": { - "@id": "_:b25120", + "@id": "_:b15845", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b24902", + "@id": "_:b11243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25119", + "@id": "_:b11244", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b24906", + "@id": "_:b11247", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15722", + "@id": "_:b15843", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b24899", + "@id": "_:b11253", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3011", + "@id": "_:b15849", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b24900", + "@id": "_:b11248", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "result": { - "@id": "_:b24870", + "@id": "_:b15844", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b24907", + "@id": "_:b11246", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25122", + "@id": "_:b15842", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b24905", + "@id": "_:b11251", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25121", + "@id": "_:b15847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b24901", + "@id": "_:b11250", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "result": { - "@id": "_:b25118", + "@id": "_:b15846", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b24903", + "@id": "_:b11245", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "result": { - "@id": "_:b19217", + "@id": "_:b13904", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b24896", + "@id": "_:b11252", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", "result": { - "@id": "_:b24897", + "@id": "_:b15848", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Clear active context with protected terms from an embedded context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr05-in.jsonld", + "rdfs:comment": "The Active context be set to null from an embedded context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10154", + "@id": "_:b4014", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr18-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Fail to override protected terms with type+null+ctx.", - "rdfs:comment": "Fail to override protected terms with type+null+ctx.", "assertions": [ { - "@id": "_:b10158", + "@id": "_:b4015", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "result": { - "@id": "_:b19848", + "@id": "_:b11886", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10156", + "@id": "_:b4019", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19847", + "@id": "_:b22909", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10163", + "@id": "_:b4018", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19853", + "@id": "_:b25665", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10159", + "@id": "_:b4016", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19849", + "@id": "_:b23489", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10162", + "@id": "_:b4017", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "result": { - "@id": "_:b19852", + "@id": "_:b12227", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10160", + "@id": "_:b4022", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19850", + "@id": "_:b19329", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10157", + "@id": "_:b4023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6330", + "@id": "_:b22247", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10155", + "@id": "_:b4021", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "result": { - "@id": "_:b18301", + "@id": "_:b26694", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10161", + "@id": "_:b4020", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "result": { - "@id": "_:b19851", + "@id": "_:b25800", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10164", + "@id": "_:b4012", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", "result": { - "@id": "_:b19854", + "@id": "_:b4013", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr06-out.jsonld", + "title": "Clear active context of protected terms from a term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr06-in.jsonld", + "rdfs:comment": "The Active context may be set to null from a scoped context of a term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7605", + "@id": "_:b14135", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr19-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr19-out.nq", - "title": "Mix of protected and unprotected terms.", - "rdfs:comment": "Mix of protected and unprotected terms.", "assertions": [ { - "@id": "_:b7614", + "@id": "_:b14134", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "result": { - "@id": "_:b18158", + "@id": "_:b8324", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7609", + "@id": "_:b14139", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18153", + "@id": "_:b25385", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7612", + "@id": "_:b14137", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18156", + "@id": "_:b20553", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7606", + "@id": "_:b14138", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8598", + "@id": "_:b11873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7610", + "@id": "_:b14143", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "result": { - "@id": "_:b18154", + "@id": "_:b23573", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7608", + "@id": "_:b14140", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18152", + "@id": "_:b25979", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7615", + "@id": "_:b14144", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18159", + "@id": "_:b19853", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7613", + "@id": "_:b14141", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "result": { - "@id": "_:b18157", + "@id": "_:b20295", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7607", + "@id": "_:b14142", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "result": { - "@id": "_:b18151", + "@id": "_:b25493", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7611", + "@id": "_:b14136", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", "result": { - "@id": "_:b18155", + "@id": "_:b17193", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Term with protected scoped context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr08-in.jsonld", + "rdfs:comment": "A scoped context can protect terms." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6028", + "@id": "_:b1338", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr20-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Fail with mix of protected and unprotected terms with type+null+ctx.", - "rdfs:comment": "Fail with mix of protected and unprotected terms with type+null+ctx.", "assertions": [ { - "@id": "_:b6031", + "@id": "_:b1348", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "result": { - "@id": "_:b26012", + "@id": "_:b1358", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6034", + "@id": "_:b1340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25918", + "@id": "_:b1350", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6036", + "@id": "_:b1345", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26713", + "@id": "_:b1355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6037", + "@id": "_:b1347", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6783", + "@id": "_:b1357", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6035", + "@id": "_:b1341", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "result": { - "@id": "_:b24318", + "@id": "_:b1351", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6029", + "@id": "_:b1342", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17038", + "@id": "_:b1352", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6033", + "@id": "_:b1344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25242", + "@id": "_:b1354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6032", + "@id": "_:b1339", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "result": { - "@id": "_:b11511", + "@id": "_:b1349", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6030", + "@id": "_:b1343", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "result": { - "@id": "_:b15937", + "@id": "_:b1353", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6026", + "@id": "_:b1346", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", "result": { - "@id": "_:b6027", + "@id": "_:b1356", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Attempt to redefine term in other protected context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr09-in.jsonld", + "rdfs:comment": "A protected term cannot redefine another protected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19503", + "@id": "_:b8156", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr21-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Fail with mix of protected and unprotected terms with type+null.", - "rdfs:comment": "Fail with mix of protected and unprotected terms with type+null.", "assertions": [ { - "@id": "_:b19508", + "@id": "_:b8165", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "result": { - "@id": "_:b26247", + "@id": "_:b8174", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19507", + "@id": "_:b8159", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17626", + "@id": "_:b8169", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19504", + "@id": "_:b8162", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17105", + "@id": "_:b8171", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19511", + "@id": "_:b8161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26879", + "@id": "_:b7097", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19506", + "@id": "_:b8166", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "result": { - "@id": "_:b2167", + "@id": "_:b8175", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19509", + "@id": "_:b8160", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25484", + "@id": "_:b8170", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19510", + "@id": "_:b8158", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26952", + "@id": "_:b8168", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19505", + "@id": "_:b8157", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "result": { - "@id": "_:b11046", + "@id": "_:b8167", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b19501", + "@id": "_:b8163", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "result": { - "@id": "_:b19502", + "@id": "_:b8172", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19512", + "@id": "_:b8164", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", "result": { - "@id": "_:b1415", + "@id": "_:b8173", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr10-out.jsonld", + "title": "Simple protected and unprotected terms.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr10-in.jsonld", + "rdfs:comment": "Simple protected and unprotected terms." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4773", + "@id": "_:b15461", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr22-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr22-out.nq", - "title": "Check legal overriding of type-scoped protected term from nested node.", - "rdfs:comment": "Check legal overriding of type-scoped protected term from nested node.", "assertions": [ { - "@id": "_:b4781", + "@id": "_:b15459", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "result": { - "@id": "_:b17706", + "@id": "_:b15460", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4774", + "@id": "_:b15469", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21767", + "@id": "_:b21639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4779", + "@id": "_:b15467", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21513", + "@id": "_:b21637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4776", + "@id": "_:b15463", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24785", + "@id": "_:b19668", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4782", + "@id": "_:b15470", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "result": { - "@id": "_:b26474", + "@id": "_:b21640", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4771", + "@id": "_:b15466", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4772", + "@id": "_:b21636", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4780", + "@id": "_:b15464", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24506", + "@id": "_:b20473", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4775", + "@id": "_:b15465", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "result": { - "@id": "_:b22252", + "@id": "_:b21635", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4777", + "@id": "_:b15468", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "result": { - "@id": "_:b26473", + "@id": "_:b21638", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4778", + "@id": "_:b15462", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", "result": { - "@id": "_:b908", + "@id": "_:b11841", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Fail to override protected term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr11-in.jsonld", + "rdfs:comment": "Fail to override protected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10491", + "@id": "_:b21319", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr23-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr23-out.nq", - "title": "Allows redefinition of protected alias term with same definition.", - "rdfs:comment": "Allows redefinition of protected alias term with same definition.", "assertions": [ { - "@id": "_:b10493", + "@id": "_:b22046", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "result": { - "@id": "_:b20429", + "@id": "_:b2864", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10498", + "@id": "_:b22048", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13280", + "@id": "_:b15210", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10495", + "@id": "_:b22049", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20727", + "@id": "_:b22056", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10499", + "@id": "_:b22052", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24642", + "@id": "_:b22059", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10497", + "@id": "_:b22050", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "result": { - "@id": "_:b24641", + "@id": "_:b22057", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10489", + "@id": "_:b22047", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10490", + "@id": "_:b22055", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10500", + "@id": "_:b22051", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24643", + "@id": "_:b22058", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10494", + "@id": "_:b22045", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "result": { - "@id": "_:b24312", + "@id": "_:b22054", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10496", + "@id": "_:b22044", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "result": { - "@id": "_:b24640", + "@id": "_:b18182", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10492", + "@id": "_:b22053", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", "result": { - "@id": "_:b20861", + "@id": "_:b20848", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Scoped context fail to override protected term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr12-in.jsonld", + "rdfs:comment": "Scoped context fail to override protected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15339", + "@id": "_:b7936", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr24-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr24-out.nq", - "title": "Allows redefinition of protected prefix term with same definition.", - "rdfs:comment": "Allows redefinition of protected prefix term with same definition.", "assertions": [ { - "@id": "_:b15340", + "@id": "_:b7943", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "result": { - "@id": "_:b18331", + "@id": "_:b27011", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15345", + "@id": "_:b7938", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26787", + "@id": "_:b11550", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15343", + "@id": "_:b7940", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24965", + "@id": "_:b8688", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15346", + "@id": "_:b7939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12500", + "@id": "_:b20783", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15348", + "@id": "_:b7937", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "result": { - "@id": "_:b4173", + "@id": "_:b14518", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15341", + "@id": "_:b7941", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24837", + "@id": "_:b25975", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15344", + "@id": "_:b7942", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26786", + "@id": "_:b19324", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15342", + "@id": "_:b7945", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "result": { - "@id": "_:b5533", + "@id": "_:b18308", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15347", + "@id": "_:b7934", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "result": { - "@id": "_:b26227", + "@id": "_:b7935", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15337", + "@id": "_:b7944", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", "result": { - "@id": "_:b15338", + "@id": "_:b24612", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr13-out.jsonld", + "title": "Override unprotected term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr13-in.jsonld", + "rdfs:comment": "Override unprotected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14284", + "@id": "_:b6888", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr25-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr25-out.nq", - "title": "Allows redefinition of terms with scoped contexts using same definitions.", - "rdfs:comment": "Allows redefinition of terms with scoped contexts using same definitions.", "assertions": [ { - "@id": "_:b14291", + "@id": "_:b6886", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "result": { - "@id": "_:b25649", + "@id": "_:b6887", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14286", + "@id": "_:b6895", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19598", + "@id": "_:b23199", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14292", + "@id": "_:b6889", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21609", + "@id": "_:b14537", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14282", + "@id": "_:b6894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14283", + "@id": "_:b23198", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14290", + "@id": "_:b6891", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "result": { - "@id": "_:b12872", + "@id": "_:b6251", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14289", + "@id": "_:b6896", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25161", + "@id": "_:b23200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14288", + "@id": "_:b6890", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26194", + "@id": "_:b23195", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14285", + "@id": "_:b6893", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "result": { - "@id": "_:b7111", + "@id": "_:b23197", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14287", + "@id": "_:b6892", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "result": { - "@id": "_:b879", + "@id": "_:b23196", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14293", + "@id": "_:b6897", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", "result": { - "@id": "_:b25099", + "@id": "_:b23201", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr14-out.jsonld", + "title": "Clear protection with null context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr14-in.jsonld", + "rdfs:comment": "Clear protection with null context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14930", + "@id": "_:b9036", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr26-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Fails on redefinition of terms with scoped contexts using different definitions.", - "rdfs:comment": "Fails on redefinition of terms with scoped contexts using different definitions.", "assertions": [ { - "@id": "_:b14935", + "@id": "_:b9039", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "result": { - "@id": "_:b9880", + "@id": "_:b22690", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14938", + "@id": "_:b9034", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26498", + "@id": "_:b9035", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14934", + "@id": "_:b9043", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26594", + "@id": "_:b24929", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14932", + "@id": "_:b9042", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21485", + "@id": "_:b22610", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14939", + "@id": "_:b9037", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "result": { - "@id": "_:b26595", + "@id": "_:b15639", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14936", + "@id": "_:b9044", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22696", + "@id": "_:b19138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14931", + "@id": "_:b9041", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20809", + "@id": "_:b24789", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14937", + "@id": "_:b9040", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "result": { - "@id": "_:b26341", + "@id": "_:b23823", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14933", + "@id": "_:b9038", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "result": { - "@id": "_:b22519", + "@id": "_:b11738", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14940", + "@id": "_:b9045", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", "result": { - "@id": "_:b26363", + "@id": "_:b22989", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr15-out.jsonld", + "title": "Clear protection with array with null context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr15-in.jsonld", + "rdfs:comment": "Clear protection with array with null context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2765", + "@id": "_:b1526", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr27-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr27-out.nq", - "title": "Allows redefinition of protected alias term with same definition modulo protected flag.", - "rdfs:comment": "Allows redefinition of protected alias term with same definition modulo protected flag.", "assertions": [ { - "@id": "_:b20989", + "@id": "_:b1528", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "result": { - "@id": "_:b20999", + "@id": "_:b21545", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20988", + "@id": "_:b1530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20998", + "@id": "_:b24145", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20993", + "@id": "_:b1532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17109", + "@id": "_:b22033", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20987", + "@id": "_:b1529", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20997", + "@id": "_:b11683", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20986", + "@id": "_:b1524", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "result": { - "@id": "_:b20996", + "@id": "_:b1525", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20992", + "@id": "_:b1527", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21002", + "@id": "_:b23106", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20995", + "@id": "_:b1533", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12611", + "@id": "_:b24146", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20991", + "@id": "_:b1535", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "result": { - "@id": "_:b21001", + "@id": "_:b18311", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b20990", + "@id": "_:b1534", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "result": { - "@id": "_:b21000", + "@id": "_:b24147", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20994", + "@id": "_:b1531", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", "result": { - "@id": "_:b21003", + "@id": "_:b19568", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr16-out.jsonld", + "title": "Override protected terms after null.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr16-in.jsonld", + "rdfs:comment": "Override protected terms after null." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9854", + "@id": "_:b7642", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr28-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Fails if trying to redefine a protected null term.", - "rdfs:comment": "A protected term with a null IRI mapping cannot be redefined.", "assertions": [ { - "@id": "_:b9860", + "@id": "_:b7651", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "result": { - "@id": "_:b17966", + "@id": "_:b18900", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9852", + "@id": "_:b7648", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9853", + "@id": "_:b26592", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9861", + "@id": "_:b7647", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24294", + "@id": "_:b23392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9858", + "@id": "_:b7650", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24293", + "@id": "_:b26197", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9863", + "@id": "_:b7646", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "result": { - "@id": "_:b15117", + "@id": "_:b25699", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9857", + "@id": "_:b7645", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24292", + "@id": "_:b10423", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9855", + "@id": "_:b7640", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20395", + "@id": "_:b7641", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9856", + "@id": "_:b7649", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "result": { - "@id": "_:b15727", + "@id": "_:b23505", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9862", + "@id": "_:b7643", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "result": { - "@id": "_:b24295", + "@id": "_:b20197", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9859", + "@id": "_:b7644", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", "result": { - "@id": "_:b19125", + "@id": "_:b8298", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Fail to override protected terms with type.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr17-in.jsonld", + "rdfs:comment": "Fail to override protected terms with type." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19473", + "@id": "_:b9529", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr29-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr29-out.nq", - "title": "Does not expand a Compact IRI using a non-prefix term.", - "rdfs:comment": "Expansion of Compact IRIs considers if the term can be used as a prefix.", "assertions": [ { - "@id": "_:b19474", + "@id": "_:b9536", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "result": { - "@id": "_:b20576", + "@id": "_:b10229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b19477", + "@id": "_:b9530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24893", + "@id": "_:b10484", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19480", + "@id": "_:b9531", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19237", + "@id": "_:b17300", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19472", + "@id": "_:b9532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12615", + "@id": "_:b9021", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19481", + "@id": "_:b9533", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "result": { - "@id": "_:b20128", + "@id": "_:b20483", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19479", + "@id": "_:b9538", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24895", + "@id": "_:b20486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19478", + "@id": "_:b9535", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24894", + "@id": "_:b16996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19476", + "@id": "_:b9537", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "result": { - "@id": "_:b24892", + "@id": "_:b20485", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b19475", + "@id": "_:b9534", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "result": { - "@id": "_:b24245", + "@id": "_:b20484", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19482", + "@id": "_:b9527", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", "result": { - "@id": "_:b17283", + "@id": "_:b9528", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Fail to override protected terms with type+null+ctx.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr18-in.jsonld", + "rdfs:comment": "Fail to override protected terms with type+null+ctx." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18016", + "@id": "_:b81", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr30-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr30-out.nq", - "title": "Keywords may be protected.", - "rdfs:comment": "Keywords may not be redefined other than to protect them.", "assertions": [ { - "@id": "_:b20940", + "@id": "_:b84", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "result": { - "@id": "_:b20941", + "@id": "_:b21094", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b20950", + "@id": "_:b83", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24599", + "@id": "_:b20770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20949", + "@id": "_:b87", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24598", + "@id": "_:b11706", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20947", + "@id": "_:b90", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24596", + "@id": "_:b23836", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20943", + "@id": "_:b82", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "result": { - "@id": "_:b15433", + "@id": "_:b14600", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20944", + "@id": "_:b89", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20427", + "@id": "_:b24598", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20948", + "@id": "_:b88", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24597", + "@id": "_:b24705", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20945", + "@id": "_:b86", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "result": { - "@id": "_:b19049", + "@id": "_:b25325", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b20946", + "@id": "_:b85", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "result": { - "@id": "_:b23648", + "@id": "_:b10216", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20942", + "@id": "_:b91", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", "result": { - "@id": "_:b19133", + "@id": "_:b26080", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr19-out.jsonld", + "title": "Mix of protected and unprotected terms.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr19-in.jsonld", + "rdfs:comment": "Mix of protected and unprotected terms." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2085", + "@id": "_:b13648", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr31-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protected keyword aliases cannot be overridden.", - "rdfs:comment": "Keywords may not be redefined other than to protect them.", "assertions": [ { - "@id": "_:b2093", + "@id": "_:b13653", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "result": { - "@id": "_:b25805", + "@id": "_:b25953", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2083", + "@id": "_:b13647", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2084", + "@id": "_:b1664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2086", + "@id": "_:b13650", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10900", + "@id": "_:b22064", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2088", + "@id": "_:b13652", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20314", + "@id": "_:b25275", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2091", + "@id": "_:b13656", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "result": { - "@id": "_:b20910", + "@id": "_:b25132", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2090", + "@id": "_:b13651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5139", + "@id": "_:b23287", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2094", + "@id": "_:b13649", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5460", + "@id": "_:b13670", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2087", + "@id": "_:b13654", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "result": { - "@id": "_:b20016", + "@id": "_:b6169", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2089", + "@id": "_:b13655", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "result": { - "@id": "_:b10656", + "@id": "_:b22488", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2092", + "@id": "_:b13657", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", "result": { - "@id": "_:b25619", + "@id": "_:b26710", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Fail with mix of protected and unprotected terms with type+null+ctx.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr20-in.jsonld", + "rdfs:comment": "Fail with mix of protected and unprotected terms with type+null+ctx." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8356", + "@id": "_:b18115", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr32-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protected @type cannot be overridden.", - "rdfs:comment": "Keywords may not be redefined other than to protect them.", "assertions": [ { - "@id": "_:b8363", + "@id": "_:b18125", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "result": { - "@id": "_:b4712", + "@id": "_:b18133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8360", + "@id": "_:b18123", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6273", + "@id": "_:b18131", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8359", + "@id": "_:b18119", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21437", + "@id": "_:b6847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8364", + "@id": "_:b18122", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25574", + "@id": "_:b18130", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8354", + "@id": "_:b18116", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "result": { - "@id": "_:b8355", + "@id": "_:b13182", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8357", + "@id": "_:b18118", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18418", + "@id": "_:b18127", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8358", + "@id": "_:b18117", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22033", + "@id": "_:b18126", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8361", + "@id": "_:b18120", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "result": { - "@id": "_:b25573", + "@id": "_:b18128", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8362", + "@id": "_:b18121", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "result": { - "@id": "_:b14498", + "@id": "_:b18129", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8365", + "@id": "_:b18124", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", "result": { - "@id": "_:b25575", + "@id": "_:b18132", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "title": "Fail with mix of protected and unprotected terms with type+null.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr21-in.jsonld", + "rdfs:comment": "Fail with mix of protected and unprotected terms with type+null." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16671", + "@id": "_:b5192", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr33-in.jsonld", - "mf:result": "invalid term definition", - "title": "Fails if trying to declare a keyword alias as prefix.", - "rdfs:comment": "Keyword aliases can not be used as prefixes.", "assertions": [ { - "@id": "_:b16674", + "@id": "_:b5201", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "result": { - "@id": "_:b22126", + "@id": "_:b25689", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16672", + "@id": "_:b5196", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18840", + "@id": "_:b22884", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16675", + "@id": "_:b5190", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6609", + "@id": "_:b5191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16676", + "@id": "_:b5194", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22127", + "@id": "_:b5742", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16678", + "@id": "_:b5200", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "result": { - "@id": "_:b22128", + "@id": "_:b14877", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16677", + "@id": "_:b5195", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21540", + "@id": "_:b19783", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16679", + "@id": "_:b5193", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22129", + "@id": "_:b21106", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16673", + "@id": "_:b5199", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "result": { - "@id": "_:b22125", + "@id": "_:b3779", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16669", + "@id": "_:b5197", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "result": { - "@id": "_:b16670", + "@id": "_:b25687", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16680", + "@id": "_:b5198", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", "result": { - "@id": "_:b17253", + "@id": "_:b25688", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr22-out.jsonld", + "title": "Check legal overriding of type-scoped protected term from nested node.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr22-in.jsonld", + "rdfs:comment": "Check legal overriding of type-scoped protected term from nested node." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17211", + "@id": "_:b15270", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr34-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr34-out.nq", - "title": "Ignores a non-keyword term starting with '@'", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b17216", + "@id": "_:b15274", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "result": { - "@id": "_:b17225", + "@id": "_:b25039", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17213", + "@id": "_:b15268", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17222", + "@id": "_:b15269", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17219", + "@id": "_:b15278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17227", + "@id": "_:b25042", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17217", + "@id": "_:b15275", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17226", + "@id": "_:b25040", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17220", + "@id": "_:b15273", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "result": { - "@id": "_:b17228", + "@id": "_:b24329", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17214", + "@id": "_:b15272", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17223", + "@id": "_:b20920", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17221", + "@id": "_:b15279", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17229", + "@id": "_:b25043", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17218", + "@id": "_:b15277", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "result": { - "@id": "_:b12864", + "@id": "_:b10984", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17212", + "@id": "_:b15276", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "result": { - "@id": "_:b2180", + "@id": "_:b25041", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17215", + "@id": "_:b15271", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", "result": { - "@id": "_:b17224", + "@id": "_:b22975", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr23-out.jsonld", + "title": "Allows redefinition of protected alias term with same definition.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr23-in.jsonld", + "rdfs:comment": "Allows redefinition of protected alias term with same definition." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2921", + "@id": "_:b4577", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr35-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr35-out.nq", - "title": "Ignores a non-keyword term starting with '@' (with @vocab)", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b2928", + "@id": "_:b4578", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "result": { - "@id": "_:b25923", + "@id": "_:b10466", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2924", + "@id": "_:b4582", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25600", + "@id": "_:b16391", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2926", + "@id": "_:b4580", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26049", + "@id": "_:b16390", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2927", + "@id": "_:b4584", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22594", + "@id": "_:b14651", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2922", + "@id": "_:b4585", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "result": { - "@id": "_:b10811", + "@id": "_:b16393", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2923", + "@id": "_:b4581", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12549", + "@id": "_:b12381", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2929", + "@id": "_:b4583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25299", + "@id": "_:b16392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2919", + "@id": "_:b4579", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "result": { - "@id": "_:b2920", + "@id": "_:b16389", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2930", + "@id": "_:b4575", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "result": { - "@id": "_:b3697", + "@id": "_:b4576", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2925", + "@id": "_:b4586", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", "result": { - "@id": "_:b25734", + "@id": "_:b16248", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr24-out.jsonld", + "title": "Allows redefinition of protected prefix term with same definition.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr24-in.jsonld", + "rdfs:comment": "Allows redefinition of protected prefix term with same definition." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15085", + "@id": "_:b21447", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr36-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr36-out.nq", - "title": "Ignores a term mapping to a value in the form of a keyword.", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b15089", + "@id": "_:b21455", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "result": { - "@id": "_:b23977", + "@id": "_:b23485", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15088", + "@id": "_:b21452", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23012", + "@id": "_:b26370", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15093", + "@id": "_:b21449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25077", + "@id": "_:b25304", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15091", + "@id": "_:b21457", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13764", + "@id": "_:b20413", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15090", + "@id": "_:b21453", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "result": { - "@id": "_:b24512", + "@id": "_:b21699", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15083", + "@id": "_:b21454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15084", + "@id": "_:b26371", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15092", + "@id": "_:b21450", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25076", + "@id": "_:b25505", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15094", + "@id": "_:b21448", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "result": { - "@id": "_:b24021", + "@id": "_:b24542", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15086", + "@id": "_:b21451", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "result": { - "@id": "_:b2238", + "@id": "_:b26369", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15087", + "@id": "_:b21456", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", "result": { - "@id": "_:b19239", + "@id": "_:b26372", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr25-out.jsonld", + "title": "Allows redefinition of terms with scoped contexts using same definitions.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr25-in.jsonld", + "rdfs:comment": "Allows redefinition of terms with scoped contexts using same definitions." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2471", + "@id": "_:b14314", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr37-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr37-out.nq", - "title": "Ignores a term mapping to a value in the form of a keyword (with @vocab).", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b2479", + "@id": "_:b14321", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "result": { - "@id": "_:b24841", + "@id": "_:b25180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2474", + "@id": "_:b14315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15368", + "@id": "_:b2355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2475", + "@id": "_:b14317", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22534", + "@id": "_:b25178", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2472", + "@id": "_:b14320", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7773", + "@id": "_:b12461", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2473", + "@id": "_:b14323", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "result": { - "@id": "_:b20340", + "@id": "_:b24321", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2476", + "@id": "_:b14319", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21016", + "@id": "_:b25179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2480", + "@id": "_:b14318", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23118", + "@id": "_:b1858", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2477", + "@id": "_:b14312", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "result": { - "@id": "_:b26743", + "@id": "_:b14313", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2469", + "@id": "_:b14322", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "result": { - "@id": "_:b2470", + "@id": "_:b25181", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2478", + "@id": "_:b14316", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", "result": { - "@id": "_:b23698", + "@id": "_:b5302", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Fails on redefinition of terms with scoped contexts using different definitions.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr26-in.jsonld", + "rdfs:comment": "Fails on redefinition of terms with scoped contexts using different definitions." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2778", + "@id": "_:b554", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr38-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr38-out.nq", - "title": "Ignores a term mapping to a value in the form of a keyword (@reverse).", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b2783", + "@id": "_:b1681", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "result": { - "@id": "_:b19113", + "@id": "_:b12697", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2781", + "@id": "_:b1686", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1748", + "@id": "_:b17710", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2784", + "@id": "_:b1682", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20541", + "@id": "_:b15531", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2785", + "@id": "_:b1684", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10546", + "@id": "_:b17708", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2786", + "@id": "_:b1678", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "result": { - "@id": "_:b1230", + "@id": "_:b1679", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2779", + "@id": "_:b1687", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4148", + "@id": "_:b17711", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2787", + "@id": "_:b1688", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24527", + "@id": "_:b12133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2780", + "@id": "_:b1685", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "result": { - "@id": "_:b11407", + "@id": "_:b17709", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2782", + "@id": "_:b1680", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "result": { - "@id": "_:b20037", + "@id": "_:b7027", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2776", + "@id": "_:b1683", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", "result": { - "@id": "_:b2777", + "@id": "_:b17707", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr27-out.jsonld", + "title": "Allows redefinition of protected alias term with same definition modulo protected flag.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr27-in.jsonld", + "rdfs:comment": "Allows redefinition of protected alias term with same definition modulo protected flag." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11943", + "@id": "_:b17834", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr39-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr39-out.nq", - "title": "Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab).", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b11944", + "@id": "_:b22783", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "result": { - "@id": "_:b24982", + "@id": "_:b26296", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11941", + "@id": "_:b22781", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11942", + "@id": "_:b26622", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11947", + "@id": "_:b22779", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26919", + "@id": "_:b18040", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11945", + "@id": "_:b22778", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21350", + "@id": "_:b26581", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11951", + "@id": "_:b22780", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "result": { - "@id": "_:b26018", + "@id": "_:b16877", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11946", + "@id": "_:b22782", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26810", + "@id": "_:b25388", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11948", + "@id": "_:b22774", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25811", + "@id": "_:b21560", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11950", + "@id": "_:b22775", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "result": { - "@id": "_:b13302", + "@id": "_:b23159", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11949", + "@id": "_:b22777", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "result": { - "@id": "_:b26930", + "@id": "_:b24905", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11952", + "@id": "_:b22776", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", "result": { - "@id": "_:b27008", + "@id": "_:b24554", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Fails if trying to redefine a protected null term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr28-in.jsonld", + "rdfs:comment": "A protected term with a null IRI mapping cannot be redefined." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9456", + "@id": "_:b8357", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/pr40-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/pr40-out.nq", - "title": "Protected terms and property-scoped contexts", - "rdfs:comment": "Check overriding of protected term from property-scoped context.", "assertions": [ { - "@id": "_:b9458", + "@id": "_:b8360", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "result": { - "@id": "_:b22374", + "@id": "_:b22718", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b9462", + "@id": "_:b8358", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26576", + "@id": "_:b21932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9461", + "@id": "_:b8362", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26599", + "@id": "_:b22719", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9459", + "@id": "_:b8355", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19707", + "@id": "_:b8356", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9465", + "@id": "_:b8361", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "result": { - "@id": "_:b24843", + "@id": "_:b21927", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9454", + "@id": "_:b8359", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9455", + "@id": "_:b22717", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9464", + "@id": "_:b8366", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19460", + "@id": "_:b22721", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9457", + "@id": "_:b8363", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "result": { - "@id": "_:b10710", + "@id": "_:b11169", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b9463", + "@id": "_:b8365", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "result": { - "@id": "_:b21363", + "@id": "_:b22720", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9460", + "@id": "_:b8364", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", "result": { - "@id": "_:b25653", + "@id": "_:b1521", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr29-out.jsonld", + "title": "Does not expand a Compact IRI using a non-prefix term.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr29-in.jsonld", + "rdfs:comment": "Expansion of Compact IRIs considers if the term can be used as a prefix." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7531", + "@id": "_:b21613", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/rt01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/rt01-out.nq", - "title": "Representing numbers >= 1e21", - "rdfs:comment": "numbers with no fractions but that are >= 1e21 are represented as xsd:double", "assertions": [ { - "@id": "_:b7533", + "@id": "_:b21614", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "result": { - "@id": "_:b21470", + "@id": "_:b23604", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7535", + "@id": "_:b21611", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15680", + "@id": "_:b21612", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7534", + "@id": "_:b21618", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23189", + "@id": "_:b26535", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7540", + "@id": "_:b21617", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23360", + "@id": "_:b17766", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7532", + "@id": "_:b21616", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "result": { - "@id": "_:b16278", + "@id": "_:b14087", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7537", + "@id": "_:b21619", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26343", + "@id": "_:b26863", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7536", + "@id": "_:b21620", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21749", + "@id": "_:b12474", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7538", + "@id": "_:b21615", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "result": { - "@id": "_:b23700", + "@id": "_:b24176", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7529", + "@id": "_:b21622", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "result": { - "@id": "_:b7530", + "@id": "_:b14156", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7539", + "@id": "_:b21621", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", "result": { - "@id": "_:b22215", + "@id": "_:b23784", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr30-out.jsonld", + "title": "Keywords may be protected.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr30-in.jsonld", + "rdfs:comment": "Keywords may not be redefined other than to protect them." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3076", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b11853", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so01-in.jsonld", - "mf:result": "invalid context entry", - "title": "@import is invalid in 1.0.", - "rdfs:comment": "@import is invalid in 1.0.", "assertions": [ { - "@id": "_:b3077", + "@id": "_:b11855", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "result": { - "@id": "_:b3087", + "@id": "_:b11865", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b3079", + "@id": "_:b11854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3089", + "@id": "_:b11864", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3084", + "@id": "_:b11858", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3094", + "@id": "_:b11868", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3086", + "@id": "_:b11863", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3096", + "@id": "_:b11872", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3081", + "@id": "_:b11862", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "result": { - "@id": "_:b3091", + "@id": "_:b11871", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3085", + "@id": "_:b11859", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3095", + "@id": "_:b11869", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3078", + "@id": "_:b11860", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3088", + "@id": "_:b11870", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3083", + "@id": "_:b11861", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "result": { - "@id": "_:b3093", + "@id": "_:b3604", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b3080", + "@id": "_:b11856", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "result": { - "@id": "_:b3090", + "@id": "_:b11866", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3082", + "@id": "_:b11857", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", "result": { - "@id": "_:b3092", + "@id": "_:b11867", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protected keyword aliases cannot be overridden.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr31-in.jsonld", + "rdfs:comment": "Keywords may not be redefined other than to protect them." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11257", + "@id": "_:b5642", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so02-in.jsonld", - "mf:result": "invalid @import value", - "title": "@import must be a string", - "rdfs:comment": "@import must be a string.", "assertions": [ { - "@id": "_:b11263", + "@id": "_:b16890", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "result": { - "@id": "_:b6231", + "@id": "_:b21254", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11259", + "@id": "_:b16886", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23738", + "@id": "_:b24599", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11264", + "@id": "_:b16881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26823", + "@id": "_:b16882", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11265", + "@id": "_:b16889", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23680", + "@id": "_:b7516", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11266", + "@id": "_:b16885", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "result": { - "@id": "_:b26544", + "@id": "_:b25283", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11262", + "@id": "_:b16884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25791", + "@id": "_:b9265", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11258", + "@id": "_:b16891", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21574", + "@id": "_:b22390", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11261", + "@id": "_:b16883", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "result": { - "@id": "_:b24424", + "@id": "_:b21826", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11255", + "@id": "_:b16887", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "result": { - "@id": "_:b11256", + "@id": "_:b19846", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11260", + "@id": "_:b16888", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", "result": { - "@id": "_:b22040", + "@id": "_:b25474", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protected @type cannot be overridden.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr32-in.jsonld", + "rdfs:comment": "Keywords may not be redefined other than to protect them." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11916", + "@id": "_:b833", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so03-in.jsonld", - "mf:result": "invalid context entry", - "title": "@import overflow", - "rdfs:comment": "Processors must detect source contexts that include @import.", "assertions": [ { - "@id": "_:b11918", + "@id": "_:b834", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "result": { - "@id": "_:b22292", + "@id": "_:b15435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11923", + "@id": "_:b836", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22296", + "@id": "_:b23765", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11917", + "@id": "_:b841", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21861", + "@id": "_:b21690", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11919", + "@id": "_:b840", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22293", + "@id": "_:b25219", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11922", + "@id": "_:b842", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "result": { - "@id": "_:b20630", + "@id": "_:b23762", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11920", + "@id": "_:b837", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22294", + "@id": "_:b17191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11921", + "@id": "_:b839", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22295", + "@id": "_:b25886", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11925", + "@id": "_:b835", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "result": { - "@id": "_:b22298", + "@id": "_:b22129", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b11914", + "@id": "_:b838", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "result": { - "@id": "_:b11915", + "@id": "_:b11655", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11924", + "@id": "_:b831", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", "result": { - "@id": "_:b22297", + "@id": "_:b832", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "title": "Fails if trying to declare a keyword alias as prefix.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr33-in.jsonld", + "rdfs:comment": "Keyword aliases can not be used as prefixes." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2972", + "@id": "_:b4112", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so05-out.nq", - "title": "@propagate: true on type-scoped context with @import", - "rdfs:comment": "type-scoped context with @propagate: true survive node-objects (with @import)", "assertions": [ { - "@id": "_:b2974", + "@id": "_:b4120", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "result": { - "@id": "_:b19573", + "@id": "_:b26714", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2981", + "@id": "_:b4114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26949", + "@id": "_:b20680", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2970", + "@id": "_:b4118", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2971", + "@id": "_:b19477", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2979", + "@id": "_:b4121", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12163", + "@id": "_:b20526", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2980", + "@id": "_:b4116", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "result": { - "@id": "_:b25898", + "@id": "_:b23141", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2973", + "@id": "_:b4117", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6313", + "@id": "_:b23420", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2978", + "@id": "_:b4110", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12865", + "@id": "_:b4111", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2977", + "@id": "_:b4113", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "result": { - "@id": "_:b24380", + "@id": "_:b15584", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2975", + "@id": "_:b4115", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "result": { - "@id": "_:b17956", + "@id": "_:b22081", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2976", + "@id": "_:b4119", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", "result": { - "@id": "_:b23000", + "@id": "_:b27006", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr34-out.jsonld", + "title": "Ignores a non-keyword term starting with '@'", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr34-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1656", + "@id": "_:b3361", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so06-out.nq", - "title": "@propagate: false on property-scoped context with @import", - "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects (with @import)", "assertions": [ { - "@id": "_:b1666", + "@id": "_:b3365", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "result": { - "@id": "_:b25894", + "@id": "_:b19454", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b1664", + "@id": "_:b3366", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26274", + "@id": "_:b18293", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1663", + "@id": "_:b3367", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25777", + "@id": "_:b17228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1662", + "@id": "_:b3369", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24750", + "@id": "_:b24504", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1658", + "@id": "_:b3371", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "result": { - "@id": "_:b18867", + "@id": "_:b3794", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1659", + "@id": "_:b3362", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20730", + "@id": "_:b7667", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1660", + "@id": "_:b3364", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19417", + "@id": "_:b24132", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1661", + "@id": "_:b3363", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "result": { - "@id": "_:b18580", + "@id": "_:b19155", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b1657", + "@id": "_:b3370", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "result": { - "@id": "_:b11727", + "@id": "_:b26128", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1665", + "@id": "_:b3368", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", "result": { - "@id": "_:b26565", + "@id": "_:b23629", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr35-out.jsonld", + "title": "Ignores a non-keyword term starting with '@' (with @vocab)", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr35-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10112", + "@id": "_:b10150", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so07-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protect all terms in sourced context", - "rdfs:comment": "A protected context protects all term definitions.", "assertions": [ { - "@id": "_:b10116", + "@id": "_:b10151", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "result": { - "@id": "_:b17879", + "@id": "_:b3422", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b10119", + "@id": "_:b10152", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17882", + "@id": "_:b24442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10114", + "@id": "_:b10158", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17877", + "@id": "_:b22945", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10118", + "@id": "_:b10159", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17881", + "@id": "_:b25816", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10120", + "@id": "_:b10157", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "result": { - "@id": "_:b17883", + "@id": "_:b12028", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10115", + "@id": "_:b10155", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17878", + "@id": "_:b26937", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10113", + "@id": "_:b10154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17876", + "@id": "_:b26699", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10117", + "@id": "_:b10153", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "result": { - "@id": "_:b17880", + "@id": "_:b24858", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b10121", + "@id": "_:b10148", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "result": { - "@id": "_:b16597", + "@id": "_:b10149", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10122", + "@id": "_:b10156", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", "result": { - "@id": "_:b17884", + "@id": "_:b26960", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr36-out.jsonld", + "title": "Ignores a term mapping to a value in the form of a keyword.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr36-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15029", + "@id": "_:b3567", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so08-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so08-out.nq", - "title": "Override term defined in sourced context", - "rdfs:comment": "The containing context is merged into the source context.", "assertions": [ { - "@id": "_:b15038", + "@id": "_:b3576", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "result": { - "@id": "_:b19631", + "@id": "_:b23162", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b15033", + "@id": "_:b3575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26432", + "@id": "_:b23254", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15036", + "@id": "_:b3565", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22031", + "@id": "_:b3566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15027", + "@id": "_:b3574", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15028", + "@id": "_:b23253", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15032", + "@id": "_:b3572", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "result": { - "@id": "_:b24448", + "@id": "_:b21775", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15031", + "@id": "_:b3568", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18654", + "@id": "_:b7250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15030", + "@id": "_:b3570", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17233", + "@id": "_:b22186", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15035", + "@id": "_:b3573", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "result": { - "@id": "_:b26511", + "@id": "_:b23252", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b15034", + "@id": "_:b3569", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "result": { - "@id": "_:b26393", + "@id": "_:b18734", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15037", + "@id": "_:b3571", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", "result": { - "@id": "_:b15520", + "@id": "_:b22966", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr37-out.jsonld", + "title": "Ignores a term mapping to a value in the form of a keyword (with @vocab).", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr37-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2412", + "@id": "_:b7455", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so09-out.nq", - "title": "Override @vocab defined in sourced context", - "rdfs:comment": "The containing context is merged into the source context.", "assertions": [ { - "@id": "_:b2414", + "@id": "_:b7458", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "result": { - "@id": "_:b13283", + "@id": "_:b18788", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b2415", + "@id": "_:b7460", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13284", + "@id": "_:b18790", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2419", + "@id": "_:b7463", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13288", + "@id": "_:b12276", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2410", + "@id": "_:b7453", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2411", + "@id": "_:b7454", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2420", + "@id": "_:b7459", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "result": { - "@id": "_:b11469", + "@id": "_:b18789", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2416", + "@id": "_:b7461", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13285", + "@id": "_:b18791", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2417", + "@id": "_:b7457", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13286", + "@id": "_:b18787", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2421", + "@id": "_:b7464", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "result": { - "@id": "_:b13289", + "@id": "_:b18792", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b2413", + "@id": "_:b7462", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "result": { - "@id": "_:b5435", + "@id": "_:b6410", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2418", + "@id": "_:b7456", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", "result": { - "@id": "_:b13287", + "@id": "_:b12098", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr38-out.jsonld", + "title": "Ignores a term mapping to a value in the form of a keyword (@reverse).", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr38-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8634", + "@id": "_:b10410", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so10-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protect terms in sourced context", - "rdfs:comment": "The containing context is merged into the source context.", "assertions": [ { - "@id": "_:b8637", + "@id": "_:b10412", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "result": { - "@id": "_:b16016", + "@id": "_:b19510", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b8641", + "@id": "_:b10416", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16020", + "@id": "_:b26613", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8638", + "@id": "_:b10415", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16017", + "@id": "_:b25414", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8640", + "@id": "_:b10413", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16019", + "@id": "_:b23681", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8642", + "@id": "_:b10420", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "result": { - "@id": "_:b16021", + "@id": "_:b25317", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8636", + "@id": "_:b10418", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16015", + "@id": "_:b24651", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8643", + "@id": "_:b10419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16022", + "@id": "_:b19797", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8632", + "@id": "_:b10411", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "result": { - "@id": "_:b8633", + "@id": "_:b15898", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b8639", + "@id": "_:b10414", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "result": { - "@id": "_:b16018", + "@id": "_:b18855", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8635", + "@id": "_:b10417", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", "result": { - "@id": "_:b16014", + "@id": "_:b26392", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr39-out.jsonld", + "title": "Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab).", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr39-in.jsonld", + "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16101", + "@id": "_:b8902", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so11-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/so11-out.nq", - "title": "Override protected terms in sourced context", - "rdfs:comment": "The containing context is merged into the source context.", "assertions": [ { - "@id": "_:b16108", + "@id": "_:b8906", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "result": { - "@id": "_:b17119", + "@id": "_:b19566", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b16107", + "@id": "_:b8907", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17118", + "@id": "_:b25862", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16109", + "@id": "_:b8909", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17120", + "@id": "_:b25863", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16104", + "@id": "_:b8910", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17115", + "@id": "_:b25864", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16103", + "@id": "_:b8904", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "result": { - "@id": "_:b17114", + "@id": "_:b19326", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16099", + "@id": "_:b8911", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16100", + "@id": "_:b15250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16106", + "@id": "_:b8900", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17117", + "@id": "_:b8901", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16105", + "@id": "_:b8903", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "result": { - "@id": "_:b17116", + "@id": "_:b21272", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b16102", + "@id": "_:b8905", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "result": { - "@id": "_:b17113", + "@id": "_:b9906", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16110", + "@id": "_:b8908", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", "result": { - "@id": "_:b17121", + "@id": "_:b25857", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr40-out.jsonld", + "title": "Protected terms and property-scoped contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr40-in.jsonld", + "rdfs:comment": "Check overriding of protected term from property-scoped context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5981", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b7356", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so12-in.jsonld", - "mf:result": "invalid context entry", - "title": "@import may not be used in an imported context.", - "rdfs:comment": "@import only valid within a term definition.", "assertions": [ { - "@id": "_:b5987", + "@id": "_:b7357", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "result": { - "@id": "_:b24160", + "@id": "_:b7367", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5985", + "@id": "_:b7360", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24159", + "@id": "_:b7370", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5984", + "@id": "_:b7358", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1508", + "@id": "_:b7368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5989", + "@id": "_:b7366", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22316", + "@id": "_:b7376", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5988", + "@id": "_:b7365", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "result": { - "@id": "_:b24161", + "@id": "_:b7375", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5979", + "@id": "_:b7362", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5980", + "@id": "_:b7372", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5982", + "@id": "_:b7359", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23978", + "@id": "_:b7369", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5986", + "@id": "_:b7363", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "result": { - "@id": "_:b14407", + "@id": "_:b7373", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5983", + "@id": "_:b7361", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "result": { - "@id": "_:b24158", + "@id": "_:b7371", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5990", + "@id": "_:b7364", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", "result": { - "@id": "_:b24162", + "@id": "_:b7374", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context entry", + "title": "@import is invalid in 1.0.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so01-in.jsonld", + "rdfs:comment": "@import is invalid in 1.0." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5857", + "@id": "_:b8678", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/so13-in.jsonld", - "mf:result": "invalid remote context", - "title": "@import can only reference a single context", - "rdfs:comment": "@import can only reference a single context.", "assertions": [ { - "@id": "_:b5860", + "@id": "_:b8676", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "result": { - "@id": "_:b5870", + "@id": "_:b8677", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5865", + "@id": "_:b8682", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5875", + "@id": "_:b9874", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5858", + "@id": "_:b8683", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5868", + "@id": "_:b9875", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5864", + "@id": "_:b8685", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5874", + "@id": "_:b9877", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5862", + "@id": "_:b8686", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "result": { - "@id": "_:b5872", + "@id": "_:b9878", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5866", + "@id": "_:b8680", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5876", + "@id": "_:b9872", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5867", + "@id": "_:b8681", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5877", + "@id": "_:b9873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5861", + "@id": "_:b8679", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "result": { - "@id": "_:b5871", + "@id": "_:b9871", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5863", + "@id": "_:b8684", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "result": { - "@id": "_:b5873", + "@id": "_:b9876", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5859", + "@id": "_:b8687", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", "result": { - "@id": "_:b5869", + "@id": "_:b9879", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @import value", + "title": "@import must be a string", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so02-in.jsonld", + "rdfs:comment": "@import must be a string." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6196", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b12502", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/tn01-in.jsonld", - "mf:result": "invalid type mapping", - "title": "@type: @none is illegal in 1.0.", - "rdfs:comment": "@type: @none is illegal in json-ld-1.0.", "assertions": [ { - "@id": "_:b6204", + "@id": "_:b12505", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "result": { - "@id": "_:b18830", + "@id": "_:b25231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b6194", + "@id": "_:b12504", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6195", + "@id": "_:b25787", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6197", + "@id": "_:b12509", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11699", + "@id": "_:b22341", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6200", + "@id": "_:b12510", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24534", + "@id": "_:b20515", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6199", + "@id": "_:b12511", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "result": { - "@id": "_:b22203", + "@id": "_:b25893", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6198", + "@id": "_:b12508", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21376", + "@id": "_:b25892", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6202", + "@id": "_:b12503", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24022", + "@id": "_:b21141", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6203", + "@id": "_:b12507", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "result": { - "@id": "_:b15041", + "@id": "_:b25891", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b6205", + "@id": "_:b12506", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "result": { - "@id": "_:b3788", + "@id": "_:b21689", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6201", + "@id": "_:b12500", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", "result": { - "@id": "_:b25567", + "@id": "_:b12501", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context entry", + "title": "@import overflow", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so03-in.jsonld", + "rdfs:comment": "Processors must detect source contexts that include @import." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7903", + "@id": "_:b5589", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/tn02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/tn02-out.nq", - "title": "@type: @none expands strings as value objects", - "rdfs:comment": "@type: @none leaves inputs other than strings alone", "assertions": [ { - "@id": "_:b7901", + "@id": "_:b21376", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "result": { - "@id": "_:b7902", + "@id": "_:b8105", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b7907", + "@id": "_:b21374", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22512", + "@id": "_:b25191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7910", + "@id": "_:b21377", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b27004", + "@id": "_:b24316", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7909", + "@id": "_:b21378", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23879", + "@id": "_:b16990", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7906", + "@id": "_:b21375", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "result": { - "@id": "_:b23626", + "@id": "_:b20869", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7911", + "@id": "_:b21372", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20361", + "@id": "_:b10651", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7904", + "@id": "_:b21379", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10165", + "@id": "_:b14437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7908", + "@id": "_:b21380", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "result": { - "@id": "_:b4146", + "@id": "_:b21682", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b7905", + "@id": "_:b21373", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "result": { - "@id": "_:b22722", + "@id": "_:b22716", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7912", + "@id": "_:b21381", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", "result": { - "@id": "_:b23138", + "@id": "_:b24539", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so05-out.jsonld", + "title": "@propagate: true on type-scoped context with @import", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so05-in.jsonld", + "rdfs:comment": "type-scoped context with @propagate: true survive node-objects (with @import)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4747", + "@id": "_:b10861", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf01-out.nq", - "title": "Triples including invalid subject IRIs are rejected", - "rdfs:comment": "ToRdf emits only well-formed statements.", "assertions": [ { - "@id": "_:b4752", + "@id": "_:b19730", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "result": { - "@id": "_:b26242", + "@id": "_:b21630", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b4748", + "@id": "_:b19736", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12182", + "@id": "_:b24053", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4755", + "@id": "_:b19735", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18686", + "@id": "_:b1270", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4753", + "@id": "_:b19737", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19981", + "@id": "_:b24054", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4751", + "@id": "_:b19733", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "result": { - "@id": "_:b22464", + "@id": "_:b20451", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4754", + "@id": "_:b19728", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24646", + "@id": "_:b19729", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4757", + "@id": "_:b19734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26219", + "@id": "_:b20915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4749", + "@id": "_:b19731", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "result": { - "@id": "_:b20272", + "@id": "_:b19646", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b4756", + "@id": "_:b19738", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "result": { - "@id": "_:b25479", + "@id": "_:b24055", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4750", + "@id": "_:b19732", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", "result": { - "@id": "_:b23602", + "@id": "_:b24008", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so06-out.jsonld", + "title": "@propagate: false on property-scoped context with @import", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so06-in.jsonld", + "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects (with @import)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21328", + "@id": "_:b5484", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf02-out.nq", - "title": "Triples including invalid predicate IRIs are rejected", - "rdfs:comment": "ToRdf emits only well-formed statements.", "assertions": [ { - "@id": "_:b21338", + "@id": "_:b5487", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "result": { - "@id": "_:b26775", + "@id": "_:b22588", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b21329", + "@id": "_:b5492", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21692", + "@id": "_:b22592", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21333", + "@id": "_:b5489", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25431", + "@id": "_:b22590", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21334", + "@id": "_:b5491", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22299", + "@id": "_:b22591", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21331", + "@id": "_:b5482", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "result": { - "@id": "_:b22561", + "@id": "_:b5483", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21332", + "@id": "_:b5485", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26292", + "@id": "_:b15599", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21330", + "@id": "_:b5490", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10359", + "@id": "_:b21084", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21335", + "@id": "_:b5488", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "result": { - "@id": "_:b26774", + "@id": "_:b22589", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b21336", + "@id": "_:b5486", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "result": { - "@id": "_:b6171", + "@id": "_:b20673", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21337", + "@id": "_:b5493", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", "result": { - "@id": "_:b24216", + "@id": "_:b22593", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protect all terms in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so07-in.jsonld", + "rdfs:comment": "A protected context protects all term definitions." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14148", + "@id": "_:b8590", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf03-out.nq", - "title": "Triples including invalid object IRIs are rejected", - "rdfs:comment": "ToRdf emits only well-formed statements.", "assertions": [ { - "@id": "_:b14154", + "@id": "_:b8599", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "result": { - "@id": "_:b25323", + "@id": "_:b25777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b14150", + "@id": "_:b8597", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23071", + "@id": "_:b26148", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14151", + "@id": "_:b8596", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25320", + "@id": "_:b20513", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14155", + "@id": "_:b8593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13393", + "@id": "_:b23376", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14152", + "@id": "_:b8588", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "result": { - "@id": "_:b25321", + "@id": "_:b8589", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14146", + "@id": "_:b8598", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14147", + "@id": "_:b24501", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14157", + "@id": "_:b8592", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25324", + "@id": "_:b20794", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14149", + "@id": "_:b8591", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "result": { - "@id": "_:b21020", + "@id": "_:b11721", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b14153", + "@id": "_:b8595", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "result": { - "@id": "_:b25322", + "@id": "_:b24197", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14156", + "@id": "_:b8594", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", "result": { - "@id": "_:b20764", + "@id": "_:b24730", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so08-out.jsonld", + "title": "Override term defined in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so08-in.jsonld", + "rdfs:comment": "The containing context is merged into the source context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13198", + "@id": "_:b6691", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf04-out.nq", - "title": "Triples including invalid type IRIs are rejected", - "rdfs:comment": "ToRdf emits only well-formed statements.", "assertions": [ { - "@id": "_:b24145", + "@id": "_:b6701", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "result": { - "@id": "_:b26059", + "@id": "_:b6710", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b24143", + "@id": "_:b6696", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26326", + "@id": "_:b6706", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b24147", + "@id": "_:b6692", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19334", + "@id": "_:b6702", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b24151", + "@id": "_:b6695", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22054", + "@id": "_:b6705", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b24150", + "@id": "_:b6694", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "result": { - "@id": "_:b26329", + "@id": "_:b6704", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b24148", + "@id": "_:b6698", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26327", + "@id": "_:b6708", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b24141", + "@id": "_:b6700", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24142", + "@id": "_:b4917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b24149", + "@id": "_:b6697", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "result": { - "@id": "_:b26328", + "@id": "_:b6707", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b24144", + "@id": "_:b6699", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "result": { - "@id": "_:b15721", + "@id": "_:b6709", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b24146", + "@id": "_:b6693", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", "result": { - "@id": "_:b23088", + "@id": "_:b6703", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so09-out.jsonld", + "title": "Override @vocab defined in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so09-in.jsonld", + "rdfs:comment": "The containing context is merged into the source context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "@type": [ "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17188", + "@id": "_:b10134", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf05-out.nq", - "title": "Triples including invalid language tags are rejected", - "rdfs:comment": "ToRdf emits only well-formed statements.", "assertions": [ { - "@id": "_:b17194", + "@id": "_:b10143", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "result": { - "@id": "_:b26495", + "@id": "_:b17209", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17196", + "@id": "_:b10138", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26828", + "@id": "_:b18541", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17197", + "@id": "_:b10139", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", + "mode": "earl:automatic", "result": { - "@id": "_:b23593", + "@id": "_:b21207", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17190", + "@id": "_:b10132", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23074", + "@id": "_:b10133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17189", + "@id": "_:b10140", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "result": { - "@id": "_:b22169", + "@id": "_:b8793", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17193", + "@id": "_:b10142", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24123", + "@id": "_:b24552", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17187", + "@id": "_:b10136", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13363", + "@id": "_:b15472", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17191", + "@id": "_:b10135", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "result": { - "@id": "_:b24633", + "@id": "_:b13163", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b17192", + "@id": "_:b10137", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "result": { - "@id": "_:b25019", + "@id": "_:b17119", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17195", + "@id": "_:b10141", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", "result": { - "@id": "_:b26366", + "@id": "_:b22272", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "title": "Protect terms in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so10-in.jsonld", + "rdfs:comment": "The containing context is merged into the source context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5804", + "@id": "_:b16760", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/toRdf/wf07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/toRdf/wf07-out.nq", - "title": "Triples including invalid graph name IRIs are rejected", - "rdfs:comment": "ToRdf emits only well-formed statements.", "assertions": [ { - "@id": "_:b5811", + "@id": "_:b16767", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "result": { - "@id": "_:b5821", + "@id": "_:b22574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5814", + "@id": "_:b16765", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5824", + "@id": "_:b19400", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5812", + "@id": "_:b16763", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5822", + "@id": "_:b18011", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5810", + "@id": "_:b16764", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5820", + "@id": "_:b17211", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5807", + "@id": "_:b16769", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "result": { - "@id": "_:b5817", + "@id": "_:b20886", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5806", + "@id": "_:b16762", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5816", + "@id": "_:b20800", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5809", + "@id": "_:b16758", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5819", + "@id": "_:b16759", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5805", + "@id": "_:b16766", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "result": { - "@id": "_:b5815", + "@id": "_:b17499", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07" + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "assertedBy": null }, { - "@id": "_:b5808", + "@id": "_:b16768", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "result": { - "@id": "_:b5818", + "@id": "_:b22575", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5813", + "@id": "_:b16761", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", "result": { - "@id": "_:b5823", + "@id": "_:b19322", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - } - ], - "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", - "title": "Transform JSON-LD to RDF", - "rdfs:comment": "These tests implement the requirements for the JSON-LD [Deserialize JSON-LD to RDF Algorithm](https://www.w3.org/TR/json-ld11-api/#deserialize-json-ld-to-rdf-algorithm)." - }, - { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest", - "@type": [ - "mf:Manifest", - "Report" - ], - "entries": [ + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so11-out.jsonld", + "title": "Override protected terms in sourced context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so11-in.jsonld", + "rdfs:comment": "The containing context is merged into the source context." + }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0001-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5064", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b16809", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0001-out.jsonld", - "title": "Library framing example", - "rdfs:comment": "Basic example used in playgrond and spec examples.", "assertions": [ { - "@id": "_:b5073", + "@id": "_:b16817", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "result": { - "@id": "_:b25245", + "@id": "_:b23927", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b5070", + "@id": "_:b16814", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", + "mode": "earl:automatic", "result": { - "@id": "_:b25269", + "@id": "_:b20303", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", - "assertedBy": null + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5071", + "@id": "_:b16811", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25268", + "@id": "_:b23145", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5074", + "@id": "_:b16816", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19297", + "@id": "_:b23926", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5065", + "@id": "_:b16818", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "result": { - "@id": "_:b17748", + "@id": "_:b23928", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5068", + "@id": "_:b16807", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17865", + "@id": "_:b16808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5072", + "@id": "_:b16815", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26143", + "@id": "_:b2353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5067", + "@id": "_:b16813", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "result": { - "@id": "_:b24588", + "@id": "_:b23925", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5066", + "@id": "_:b16810", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "result": { - "@id": "_:b19418", + "@id": "_:b21021", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5069", + "@id": "_:b16812", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", "result": { - "@id": "_:b26142", + "@id": "_:b2953", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context entry", + "title": "@import may not be used in an imported context.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so12-in.jsonld", + "rdfs:comment": "@import only valid within a term definition." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0002-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13529", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b21874", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0002-out.jsonld", - "title": "reframe w/extra CURIE value.", - "rdfs:comment": "Append extra values to output.", "assertions": [ { - "@id": "_:b13527", + "@id": "_:b21878", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "result": { - "@id": "_:b13528", + "@id": "_:b24169", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b13530", + "@id": "_:b21877", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", + "mode": "earl:automatic", "result": { - "@id": "_:b21506", + "@id": "_:b24414", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", - "assertedBy": null + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13537", + "@id": "_:b21876", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26578", + "@id": "_:b24385", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13532", + "@id": "_:b21884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24331", + "@id": "_:b24419", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13536", + "@id": "_:b21883", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "result": { - "@id": "_:b26623", + "@id": "_:b12338", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13533", + "@id": "_:b21879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23850", + "@id": "_:b24415", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13535", + "@id": "_:b21881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22974", + "@id": "_:b24417", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13534", + "@id": "_:b21882", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "result": { - "@id": "_:b25976", + "@id": "_:b24418", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13531", + "@id": "_:b21880", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "result": { - "@id": "_:b23368", + "@id": "_:b24416", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13538", + "@id": "_:b21875", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", "result": { - "@id": "_:b22848", + "@id": "_:b21162", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid remote context", + "title": "@import can only reference a single context", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so13-in.jsonld", + "rdfs:comment": "@import can only reference a single context." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0003-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5908", + "@id": "_:b1702", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0003-out.jsonld", - "title": "reframe (null)", - "rdfs:comment": "Do not match without a matching @type", "assertions": [ { - "@id": "_:b11510", + "@id": "_:b1711", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "result": { - "@id": "_:b25187", + "@id": "_:b24121", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b11503", + "@id": "_:b1708", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", + "mode": "earl:automatic", "result": { - "@id": "_:b20394", + "@id": "_:b25854", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", - "assertedBy": null + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11507", + "@id": "_:b1706", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25354", + "@id": "_:b24641", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11508", + "@id": "_:b1700", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12452", + "@id": "_:b1701", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11509", + "@id": "_:b1710", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "result": { - "@id": "_:b12362", + "@id": "_:b24103", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11504", + "@id": "_:b1705", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21555", + "@id": "_:b24060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11506", + "@id": "_:b1707", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24634", + "@id": "_:b12554", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11500", + "@id": "_:b1703", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "result": { - "@id": "_:b11501", + "@id": "_:b16704", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11502", + "@id": "_:b1704", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "result": { - "@id": "_:b19636", + "@id": "_:b22386", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11505", + "@id": "_:b1709", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", "result": { - "@id": "_:b23793", + "@id": "_:b24803", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid type mapping", + "title": "@type: @none is illegal in 1.0.", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/tn01-in.jsonld", + "rdfs:comment": "@type: @none is illegal in json-ld-1.0." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", + "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0004-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17130", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b1376", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0004-out.jsonld", - "title": "reframe (type)", - "rdfs:comment": "Multiple matches on @type.", "assertions": [ { - "@id": "_:b17139", + "@id": "_:b1384", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "result": { - "@id": "_:b20343", + "@id": "_:b22035", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", - "assertedBy": null + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness" }, { - "@id": "_:b17131", + "@id": "_:b1374", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", + "mode": "earl:automatic", "result": { - "@id": "_:b24015", + "@id": "_:b1375", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", - "assertedBy": null + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17137", + "@id": "_:b1383", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26995", + "@id": "_:b26775", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17136", + "@id": "_:b1385", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26337", + "@id": "_:b3883", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17135", + "@id": "_:b1382", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "result": { - "@id": "_:b23927", + "@id": "_:b26412", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17138", + "@id": "_:b1380", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12739", + "@id": "_:b12226", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17128", + "@id": "_:b1377", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17129", + "@id": "_:b21592", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17132", + "@id": "_:b1378", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "result": { - "@id": "_:b21550", + "@id": "_:b24308", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17133", + "@id": "_:b1379", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "result": { - "@id": "_:b24195", + "@id": "_:b25481", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17134", + "@id": "_:b1381", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", "result": { - "@id": "_:b26442", + "@id": "_:b8750", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - }, + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/expand/tn02-out.jsonld", + "title": "@type: @none expands strings as value objects", + "testAction": "https://w3c.github.io/json-ld-api/tests/expand/tn02-in.jsonld", + "rdfs:comment": "@type: @none leaves inputs other than strings alone" + } + ], + "title": "Expansion", + "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", + "rdfs:comment": "These tests implement the requirements for the JSON-LD [Expansion Algorithm](https://www.w3.org/TR/json-ld11-api/#expansion-algorithm)." + }, + { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest", + "@type": [ + "Report", + "mf:Manifest" + ], + "entries": [ { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0005-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14110", + "@id": "_:b3102", "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0005-out.jsonld", - "title": "reframe (explicit)", - "rdfs:comment": "If property is not in frame, and explicit is true, do not add any values for property to output.", "assertions": [ { - "@id": "_:b14113", + "@id": "_:b3100", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "result": { - "@id": "_:b21404", + "@id": "_:b3101", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b14115", + "@id": "_:b3108", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "result": { - "@id": "_:b22323", + "@id": "_:b24832", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b14111", + "@id": "_:b3107", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19076", + "@id": "_:b6761", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14117", + "@id": "_:b3109", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22583", + "@id": "_:b20716", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14116", + "@id": "_:b3106", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "result": { - "@id": "_:b16551", + "@id": "_:b24831", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14112", + "@id": "_:b3103", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22556", + "@id": "_:b20585", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14114", + "@id": "_:b3104", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15714", + "@id": "_:b23050", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14108", + "@id": "_:b3105", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "result": { - "@id": "_:b14109", + "@id": "_:b20293", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14118", + "@id": "_:b3110", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "result": { - "@id": "_:b26298", + "@id": "_:b20714", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14119", + "@id": "_:b3111", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001", "result": { - "@id": "_:b25824", + "@id": "_:b24833", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0001-out.jsonld", + "title": "Library framing example", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0001-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0001-in.jsonld", + "rdfs:comment": "Basic example used in playgrond and spec examples." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0006-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8292", + "@id": "_:b12354", "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0006-out.jsonld", - "title": "reframe (non-explicit)", - "rdfs:comment": "Unless the explicit is false, processors append extra values to output.", "assertions": [ { - "@id": "_:b8290", + "@id": "_:b12361", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "result": { - "@id": "_:b8291", + "@id": "_:b18496", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b8297", + "@id": "_:b12363", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "result": { - "@id": "_:b21186", + "@id": "_:b22881", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b8293", + "@id": "_:b12352", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14535", + "@id": "_:b12353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8296", + "@id": "_:b12362", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21185", + "@id": "_:b22880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8295", + "@id": "_:b12357", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "result": { - "@id": "_:b20833", + "@id": "_:b22867", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8298", + "@id": "_:b12358", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21187", + "@id": "_:b22619", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8299", + "@id": "_:b12356", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21188", + "@id": "_:b20669", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8294", + "@id": "_:b12355", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "result": { - "@id": "_:b21077", + "@id": "_:b18866", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8301", + "@id": "_:b12360", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "result": { - "@id": "_:b14068", + "@id": "_:b22879", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8300", + "@id": "_:b12359", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002", "result": { - "@id": "_:b21189", + "@id": "_:b20404", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0002-out.jsonld", + "title": "reframe w/extra CURIE value.", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0002-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0002-in.jsonld", + "rdfs:comment": "Append extra values to output." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0007-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1634", + "@id": "_:b10640", "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0007-out.jsonld", - "title": "input has multiple types", - "rdfs:comment": "If property is a keyword, processors add property and objects to output.", "assertions": [ { - "@id": "_:b1637", + "@id": "_:b10649", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "result": { - "@id": "_:b26064", + "@id": "_:b18038", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b1635", + "@id": "_:b10647", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "result": { - "@id": "_:b18864", + "@id": "_:b18036", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b1643", + "@id": "_:b10646", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18640", + "@id": "_:b18035", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1642", + "@id": "_:b10643", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21475", + "@id": "_:b18032", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1638", + "@id": "_:b10648", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "result": { - "@id": "_:b2997", + "@id": "_:b18037", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1636", + "@id": "_:b10650", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24713", + "@id": "_:b18039", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1640", + "@id": "_:b10644", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26898", + "@id": "_:b18033", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1632", + "@id": "_:b10642", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "result": { - "@id": "_:b1633", + "@id": "_:b15635", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1639", + "@id": "_:b10641", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "result": { - "@id": "_:b24925", + "@id": "_:b11827", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1641", + "@id": "_:b10645", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003", "result": { - "@id": "_:b25221", + "@id": "_:b18034", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0003-out.jsonld", + "title": "reframe (null)", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0003-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0003-in.jsonld", + "rdfs:comment": "Do not match without a matching @type" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0008-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8255", + "@id": "_:b8753", "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0008-out.jsonld", - "title": "array framing cases", - "rdfs:comment": "Various cases showing array output for @container: @set, and non-embedding of node values if @embed: false.", "assertions": [ { - "@id": "_:b8257", + "@id": "_:b8758", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "result": { - "@id": "_:b18187", + "@id": "_:b10677", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b8263", + "@id": "_:b8757", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "result": { - "@id": "_:b20154", + "@id": "_:b23881", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b8261", + "@id": "_:b8761", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20153", + "@id": "_:b23590", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8259", + "@id": "_:b8756", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20151", + "@id": "_:b21925", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8253", + "@id": "_:b8760", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "result": { - "@id": "_:b8254", + "@id": "_:b23882", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8264", + "@id": "_:b8755", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20155", + "@id": "_:b21050", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8262", + "@id": "_:b8754", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11938", + "@id": "_:b13826", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8258", + "@id": "_:b8759", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "result": { - "@id": "_:b20150", + "@id": "_:b4523", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8256", + "@id": "_:b8751", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "result": { - "@id": "_:b18003", + "@id": "_:b8752", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8260", + "@id": "_:b8762", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004", "result": { - "@id": "_:b20152", + "@id": "_:b22273", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0004-out.jsonld", + "title": "reframe (type)", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0004-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0004-in.jsonld", + "rdfs:comment": "Multiple matches on @type." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0009-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17614", + "@id": "_:b18267", "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0009-out.jsonld", - "title": "default value", - "rdfs:comment": "Processors MUST skip property and property frame if property frame contains @omitDefault with a value of true. Processors MUST add property to output with a new dictionary having a property @preserve and a value that is a copy of the value of @default in frame if it exists, or the string @null otherwise.", "assertions": [ { - "@id": "_:b17618", + "@id": "_:b18276", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "result": { - "@id": "_:b24835", + "@id": "_:b5159", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b17621", + "@id": "_:b18271", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "result": { - "@id": "_:b22291", + "@id": "_:b20930", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b17617", + "@id": "_:b18274", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24332", + "@id": "_:b20932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17622", + "@id": "_:b18270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18630", + "@id": "_:b10692", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17623", + "@id": "_:b18265", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "result": { - "@id": "_:b21316", + "@id": "_:b18266", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17619", + "@id": "_:b18272", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22325", + "@id": "_:b14116", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17615", + "@id": "_:b18269", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22877", + "@id": "_:b20929", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17612", + "@id": "_:b18273", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "result": { - "@id": "_:b17613", + "@id": "_:b20931", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17620", + "@id": "_:b18268", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "result": { - "@id": "_:b5555", + "@id": "_:b17839", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17616", + "@id": "_:b18275", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005", "result": { - "@id": "_:b23473", + "@id": "_:b8509", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0005-out.jsonld", + "title": "reframe (explicit)", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0005-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0005-in.jsonld", + "rdfs:comment": "If property is not in frame, and explicit is true, do not add any values for property to output." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0011-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13656", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b20630", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0011-out.jsonld", - "title": "@embed true/false", - "rdfs:comment": "@embed within a frame controls the object embed flag when processing that frame (true and false values) in json-ld-1.0 mode.", "assertions": [ { - "@id": "_:b13658", + "@id": "_:b20633", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "result": { - "@id": "_:b14007", + "@id": "_:b25208", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b13659", + "@id": "_:b20628", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "result": { - "@id": "_:b14008", + "@id": "_:b20629", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b13662", + "@id": "_:b20632", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14011", + "@id": "_:b24511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13663", + "@id": "_:b20637", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14012", + "@id": "_:b20616", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13664", + "@id": "_:b20631", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "result": { - "@id": "_:b14013", + "@id": "_:b21446", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13657", + "@id": "_:b20636", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14006", + "@id": "_:b21547", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13660", + "@id": "_:b20638", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14009", + "@id": "_:b24399", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13654", + "@id": "_:b20634", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "result": { - "@id": "_:b13655", + "@id": "_:b25533", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13665", + "@id": "_:b20635", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "result": { - "@id": "_:b2764", + "@id": "_:b10481", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13661", + "@id": "_:b20639", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006", "result": { - "@id": "_:b14010", + "@id": "_:b4969", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0006-out.jsonld", + "title": "reframe (non-explicit)", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0006-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0006-in.jsonld", + "rdfs:comment": "Unless the explicit is false, processors append extra values to output." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0012-frame.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8887", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0012-out.jsonld", - "title": "Array frame", - "rdfs:comment": "Multiple values for @type in frame match different nodes having one or the other type. With @embed false, nodes are serialized as multiple array values of @graph.", "assertions": [ { - "@id": "_:b7209", + "@id": "_:b15791", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "result": { - "@id": "_:b20849", + "@id": "_:b16823", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b7212", + "@id": "_:b15798", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "result": { - "@id": "_:b25849", + "@id": "_:b19451", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b7210", + "@id": "_:b15792", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24152", + "@id": "_:b19446", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7213", + "@id": "_:b15794", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20148", + "@id": "_:b19448", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7214", + "@id": "_:b15795", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "result": { - "@id": "_:b24532", + "@id": "_:b11985", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7207", + "@id": "_:b15796", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15367", + "@id": "_:b19449", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7215", + "@id": "_:b15800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21830", + "@id": "_:b19453", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7211", + "@id": "_:b15799", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "result": { - "@id": "_:b19103", + "@id": "_:b19452", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7208", + "@id": "_:b15797", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "result": { - "@id": "_:b21610", + "@id": "_:b19450", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7205", + "@id": "_:b15793", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007", "result": { - "@id": "_:b7206", + "@id": "_:b19447", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0007-out.jsonld", + "title": "input has multiple types", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0007-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0007-in.jsonld", + "rdfs:comment": "If property is a keyword, processors add property and objects to output." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0013-frame.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9733", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0013-out.jsonld", - "title": "Replace existing embed", - "rdfs:comment": "An empty frame matches all objects, even if embedded, causing them to be serialized under @graph.", "assertions": [ { - "@id": "_:b15398", + "@id": "_:b9740", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "result": { - "@id": "_:b15399", + "@id": "_:b18101", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b15401", + "@id": "_:b9741", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "result": { - "@id": "_:b20534", + "@id": "_:b24670", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b15407", + "@id": "_:b9738", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20915", + "@id": "_:b24667", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15402", + "@id": "_:b9734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22177", + "@id": "_:b13251", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15408", + "@id": "_:b9735", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "result": { - "@id": "_:b23960", + "@id": "_:b22658", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15405", + "@id": "_:b9739", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26005", + "@id": "_:b24669", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15406", + "@id": "_:b9731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26466", + "@id": "_:b9732", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15404", + "@id": "_:b9737", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "result": { - "@id": "_:b24434", + "@id": "_:b16485", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15400", + "@id": "_:b9742", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "result": { - "@id": "_:b19285", + "@id": "_:b24671", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15403", + "@id": "_:b9736", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008", "result": { - "@id": "_:b9761", + "@id": "_:b23344", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0008-out.jsonld", + "title": "array framing cases", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0008-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0008-in.jsonld", + "rdfs:comment": "Various cases showing array output for @container: @set, and non-embedding of node values if @embed: false." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0014-frame.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10469", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0014-out.jsonld", - "title": "Replace existing embed on 2nd pass", - "rdfs:comment": "An embedded node which matches the top-level frame (on @type) is framed under @graph and continues to be embedded. Other nodes continue to be embedded.", "assertions": [ { - "@id": "_:b19870", + "@id": "_:b10477", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "result": { - "@id": "_:b23619", + "@id": "_:b20257", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b19869", + "@id": "_:b10473", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "result": { - "@id": "_:b23618", + "@id": "_:b20254", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b19868", + "@id": "_:b10470", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19653", + "@id": "_:b15539", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19865", + "@id": "_:b10478", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21510", + "@id": "_:b20258", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19873", + "@id": "_:b10475", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "result": { - "@id": "_:b23622", + "@id": "_:b10480", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19867", + "@id": "_:b10474", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23617", + "@id": "_:b20255", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19871", + "@id": "_:b10476", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23620", + "@id": "_:b20256", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19866", + "@id": "_:b10472", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "result": { - "@id": "_:b23462", + "@id": "_:b20253", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19863", + "@id": "_:b10471", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "result": { - "@id": "_:b19864", + "@id": "_:b19222", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19872", + "@id": "_:b10467", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009", "result": { - "@id": "_:b23621", + "@id": "_:b10468", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0009-out.jsonld", + "title": "default value", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0009-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0009-in.jsonld", + "rdfs:comment": "Processors MUST skip property and property frame if property frame contains @omitDefault with a value of true. Processors MUST add property to output with a new dictionary having a property @preserve and a value that is a copy of the value of @default in frame if it exists, or the string @null otherwise." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0015-frame.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3497", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0015-out.jsonld", - "title": "Replace deeply-nested embed", - "rdfs:comment": "Torture test.", "assertions": [ { - "@id": "_:b15619", + "@id": "_:b3501", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "result": { - "@id": "_:b25021", + "@id": "_:b18357", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b15620", + "@id": "_:b3495", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "result": { - "@id": "_:b25222", + "@id": "_:b3496", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b15624", + "@id": "_:b3502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26121", + "@id": "_:b20075", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15626", + "@id": "_:b3499", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26123", + "@id": "_:b15014", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15622", + "@id": "_:b3498", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "result": { - "@id": "_:b26120", + "@id": "_:b12274", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15621", + "@id": "_:b3505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25505", + "@id": "_:b19778", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15617", + "@id": "_:b3506", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18317", + "@id": "_:b3508", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15625", + "@id": "_:b3504", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "result": { - "@id": "_:b26122", + "@id": "_:b20077", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15618", + "@id": "_:b3500", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "result": { - "@id": "_:b11752", + "@id": "_:b16645", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15623", + "@id": "_:b3503", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011", "result": { - "@id": "_:b25727", + "@id": "_:b20076", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0011-out.jsonld", + "title": "@embed true/false", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0011-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0011-in.jsonld", + "rdfs:comment": "@embed within a frame controls the object embed flag when processing that frame (true and false values) in json-ld-1.0 mode." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0016-frame.jsonld" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13486", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0016-out.jsonld", - "title": "Use @type in ducktype filter", - "rdfs:comment": "Match if node has a @type property and frame has a @type property containing only an empty dictionary.", "assertions": [ { - "@id": "_:b13495", + "@id": "_:b7266", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "result": { - "@id": "_:b15232", + "@id": "_:b17508", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b13487", + "@id": "_:b7269", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "result": { - "@id": "_:b17030", + "@id": "_:b17511", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b13488", + "@id": "_:b7273", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24889", + "@id": "_:b17514", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13496", + "@id": "_:b7270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26727", + "@id": "_:b17512", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13494", + "@id": "_:b7264", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "result": { - "@id": "_:b5062", + "@id": "_:b17506", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13493", + "@id": "_:b7268", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25264", + "@id": "_:b17510", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13489", + "@id": "_:b7265", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25790", + "@id": "_:b17507", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13491", + "@id": "_:b7267", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "result": { - "@id": "_:b20516", + "@id": "_:b17509", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13492", + "@id": "_:b7271", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "result": { - "@id": "_:b26953", + "@id": "_:b17513", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13490", + "@id": "_:b7272", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012", "result": { - "@id": "_:b25869", + "@id": "_:b12293", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0012-out.jsonld", + "title": "Array frame", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0012-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0012-in.jsonld", + "rdfs:comment": "Multiple values for @type in frame match different nodes having one or the other type. With @embed false, nodes are serialized as multiple array values of @graph." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0017-frame.jsonld" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7496", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0017-out.jsonld", - "title": "Non-flat input", - "rdfs:comment": "Framing flattens expanded input, allowing for deeply embedded input to be re-framed.", "assertions": [ { - "@id": "_:b7499", + "@id": "_:b2926", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "result": { - "@id": "_:b23154", + "@id": "_:b19528", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b7498", + "@id": "_:b2924", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "result": { - "@id": "_:b19720", + "@id": "_:b7867", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b7504", + "@id": "_:b2923", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19231", + "@id": "_:b19526", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7503", + "@id": "_:b2918", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23722", + "@id": "_:b19521", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7505", + "@id": "_:b2922", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "result": { - "@id": "_:b2095", + "@id": "_:b19525", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7502", + "@id": "_:b2925", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23721", + "@id": "_:b19527", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7500", + "@id": "_:b2921", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23719", + "@id": "_:b19524", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7494", + "@id": "_:b2920", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "result": { - "@id": "_:b7495", + "@id": "_:b19523", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7497", + "@id": "_:b2917", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "result": { - "@id": "_:b15331", + "@id": "_:b2524", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7501", + "@id": "_:b2919", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013", "result": { - "@id": "_:b23720", + "@id": "_:b19522", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0013-out.jsonld", + "title": "Replace existing embed", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0013-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0013-in.jsonld", + "rdfs:comment": "An empty frame matches all objects, even if embedded, causing them to be serialized under @graph." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0018-frame.jsonld" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12456", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0018-out.jsonld", - "title": "no frame @context but @graph output", - "rdfs:comment": "Set framing context to the value of @context from frame, if it exists, or to a new empty context, otherwise.", "assertions": [ { - "@id": "_:b12454", + "@id": "_:b22174", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "result": { - "@id": "_:b12455", + "@id": "_:b20346", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b12457", + "@id": "_:b22170", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "result": { - "@id": "_:b18739", + "@id": "_:b25273", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b12458", + "@id": "_:b22173", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17021", + "@id": "_:b13378", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12462", + "@id": "_:b22166", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25668", + "@id": "_:b20545", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12461", + "@id": "_:b22175", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "result": { - "@id": "_:b17268", + "@id": "_:b26602", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12465", + "@id": "_:b22172", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17668", + "@id": "_:b26601", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12459", + "@id": "_:b22169", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15730", + "@id": "_:b24457", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12463", + "@id": "_:b22171", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "result": { - "@id": "_:b9801", + "@id": "_:b26039", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12464", + "@id": "_:b22167", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "result": { - "@id": "_:b25888", + "@id": "_:b13084", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12460", + "@id": "_:b22168", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014", "result": { - "@id": "_:b25371", + "@id": "_:b17951", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0014-out.jsonld", + "title": "Replace existing embed on 2nd pass", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0014-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0014-in.jsonld", + "rdfs:comment": "An embedded node which matches the top-level frame (on @type) is framed under @graph and continues to be embedded. Other nodes continue to be embedded." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0019-frame.jsonld" - }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0019-out.jsonld", - "title": "Resources can be re-embedded again in each top-level frame match", - "rdfs:comment": "@type matching matches nodes at top-level, and embedding causes them be embedded where referenced.", "assertions": [ { - "@id": "_:b22010", + "@id": "_:b1118", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "result": { - "@id": "_:b22011", + "@id": "_:b21274", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b22017", + "@id": "_:b1111", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "result": { - "@id": "_:b25451", + "@id": "_:b18435", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b22015", + "@id": "_:b1117", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23521", + "@id": "_:b26071", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22019", + "@id": "_:b1112", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25452", + "@id": "_:b1437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22018", + "@id": "_:b1115", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "result": { - "@id": "_:b23624", + "@id": "_:b21649", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22020", + "@id": "_:b1114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25236", + "@id": "_:b15205", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22016", + "@id": "_:b1109", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25450", + "@id": "_:b1110", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22012", + "@id": "_:b1119", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "result": { - "@id": "_:b23934", + "@id": "_:b26201", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b22014", + "@id": "_:b1116", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "result": { - "@id": "_:b20498", + "@id": "_:b20791", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22013", + "@id": "_:b1113", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015", "result": { - "@id": "_:b25141", + "@id": "_:b11468", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0015-out.jsonld", + "title": "Replace deeply-nested embed", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0015-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0015-in.jsonld", + "rdfs:comment": "Torture test." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2292", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "@id": "_:b12051", "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0020-out.jsonld", - "title": "Blank nodes in an array", - "rdfs:comment": "Empty frame matches all nodes at top-level, and repeats where embedded in json-ld-1.0 mode.", "assertions": [ { - "@id": "_:b2297", + "@id": "_:b12055", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "result": { - "@id": "_:b24223", + "@id": "_:b22255", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b2293", + "@id": "_:b12049", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "result": { - "@id": "_:b6681", + "@id": "_:b12050", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b2290", + "@id": "_:b12057", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2291", + "@id": "_:b25536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2294", + "@id": "_:b12058", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15118", + "@id": "_:b23073", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2295", + "@id": "_:b12052", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "result": { - "@id": "_:b21531", + "@id": "_:b17086", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2299", + "@id": "_:b12054", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20817", + "@id": "_:b21691", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2300", + "@id": "_:b12059", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8613", + "@id": "_:b23215", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2296", + "@id": "_:b12056", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "result": { - "@id": "_:b23153", + "@id": "_:b22943", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2298", + "@id": "_:b12053", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "result": { - "@id": "_:b25382", + "@id": "_:b19644", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2301", + "@id": "_:b12060", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016", "result": { - "@id": "_:b25127", + "@id": "_:b12890", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0016-out.jsonld", + "title": "Use @type in ducktype filter", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0016-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0016-in.jsonld", + "rdfs:comment": "Match if node has a @type property and frame has a @type property containing only an empty dictionary." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4761", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "@id": "_:b751", "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0021-out.jsonld", - "title": "Blank nodes in @type", - "rdfs:comment": "Empty frame matches all nodes at top-level, and repeats where embedded (with list content) in json-ld-1.0 mode.", "assertions": [ { - "@id": "_:b4765", + "@id": "_:b761", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "result": { - "@id": "_:b17770", + "@id": "_:b771", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b4766", + "@id": "_:b754", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "result": { - "@id": "_:b26100", + "@id": "_:b764", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b4764", + "@id": "_:b758", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24487", + "@id": "_:b768", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4759", + "@id": "_:b752", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4760", + "@id": "_:b762", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4763", + "@id": "_:b755", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "result": { - "@id": "_:b8390", + "@id": "_:b765", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4767", + "@id": "_:b759", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12937", + "@id": "_:b769", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4769", + "@id": "_:b753", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13924", + "@id": "_:b763", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4762", + "@id": "_:b756", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "result": { - "@id": "_:b15334", + "@id": "_:b766", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4768", + "@id": "_:b757", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "result": { - "@id": "_:b14408", + "@id": "_:b767", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4770", + "@id": "_:b760", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017", "result": { - "@id": "_:b15248", + "@id": "_:b770", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0017-out.jsonld", + "title": "Non-flat input", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0017-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0017-in.jsonld", + "rdfs:comment": "Framing flattens expanded input, allowing for deeply embedded input to be re-framed." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0022-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14715", + "@id": "_:b1944", "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0022-out.jsonld", - "title": "Match on @id", - "rdfs:comment": "Match if node and frame both have the same @id property.", "assertions": [ { - "@id": "_:b14723", + "@id": "_:b1953", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "result": { - "@id": "_:b15681", + "@id": "_:b7977", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b14717", + "@id": "_:b1945", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "result": { - "@id": "_:b24313", + "@id": "_:b5760", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b14719", + "@id": "_:b1946", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24314", + "@id": "_:b19569", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14720", + "@id": "_:b1951", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24315", + "@id": "_:b20415", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14718", + "@id": "_:b1942", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "result": { - "@id": "_:b23970", + "@id": "_:b1943", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14716", + "@id": "_:b1949", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20807", + "@id": "_:b23399", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14724", + "@id": "_:b1948", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20890", + "@id": "_:b26073", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14713", + "@id": "_:b1947", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "result": { - "@id": "_:b14714", + "@id": "_:b20917", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14721", + "@id": "_:b1952", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "result": { - "@id": "_:b24316", + "@id": "_:b26507", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14722", + "@id": "_:b1950", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018", "result": { - "@id": "_:b24317", + "@id": "_:b26312", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0018-out.jsonld", + "title": "no frame @context but @graph output", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0018-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0018-in.jsonld", + "rdfs:comment": "Set framing context to the value of @context from frame, if it exists, or to a new empty context, otherwise." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0023-frame.jsonld" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4943", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0023-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0023-out.jsonld", - "title": "No match on []", - "rdfs:comment": "No match if node has a property where frame has an empty array for that same property.", "assertions": [ { - "@id": "_:b4945", + "@id": "_:b14462", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "result": { - "@id": "_:b19842", + "@id": "_:b26367", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b4948", + "@id": "_:b14459", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "result": { - "@id": "_:b23608", + "@id": "_:b1589", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b4951", + "@id": "_:b14456", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25232", + "@id": "_:b17616", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4941", + "@id": "_:b14460", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4942", + "@id": "_:b24483", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4949", + "@id": "_:b14457", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "result": { - "@id": "_:b25724", + "@id": "_:b18798", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4946", + "@id": "_:b14454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20336", + "@id": "_:b14455", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4944", + "@id": "_:b14461", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16385", + "@id": "_:b20780", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4950", + "@id": "_:b14458", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "result": { - "@id": "_:b25764", + "@id": "_:b22187", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4947", + "@id": "_:b14463", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "result": { - "@id": "_:b25772", + "@id": "_:b26368", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4952", + "@id": "_:b14464", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019", "result": { - "@id": "_:b25907", + "@id": "_:b21961", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0019-out.jsonld", + "title": "Resources can be re-embedded again in each top-level frame match", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0019-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0019-in.jsonld", + "rdfs:comment": "@type matching matches nodes at top-level, and embedding causes them be embedded where referenced." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0024-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16750", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b6172", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0024-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0024-out.jsonld", - "title": "match on any common properties if @requireAll: false", - "rdfs:comment": "Match if @requireAll is false and both node and frame contain common non-keyword properties of any value.", "assertions": [ { - "@id": "_:b16751", + "@id": "_:b6177", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "result": { - "@id": "_:b5517", + "@id": "_:b20322", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b16748", + "@id": "_:b6178", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "result": { - "@id": "_:b16749", + "@id": "_:b25503", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b16752", + "@id": "_:b6181", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5944", + "@id": "_:b25630", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16754", + "@id": "_:b6180", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20313", + "@id": "_:b25629", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16759", + "@id": "_:b6174", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "result": { - "@id": "_:b21245", + "@id": "_:b8142", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16757", + "@id": "_:b6175", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26344", + "@id": "_:b24921", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16755", + "@id": "_:b6179", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25503", + "@id": "_:b25628", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16758", + "@id": "_:b6170", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "result": { - "@id": "_:b23395", + "@id": "_:b6171", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16753", + "@id": "_:b6176", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "result": { - "@id": "_:b24820", + "@id": "_:b22128", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16756", + "@id": "_:b6173", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020", "result": { - "@id": "_:b22991", + "@id": "_:b13778", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0020-out.jsonld", + "title": "Blank nodes in an array", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld", + "rdfs:comment": "Empty frame matches all nodes at top-level, and repeats where embedded in json-ld-1.0 mode." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0025-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6477", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b14246", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0025-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0025-out.jsonld", - "title": "@requireAll with missing values and @default", - "rdfs:comment": "Match if @requireAll is true and frame contains a non-keyword key not present in node, where the value is a JSON object containing only the key @default with any value.", "assertions": [ { - "@id": "_:b6478", + "@id": "_:b14244", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "result": { - "@id": "_:b16338", + "@id": "_:b14245", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b6475", + "@id": "_:b14247", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "result": { - "@id": "_:b6476", + "@id": "_:b22723", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b6482", + "@id": "_:b14251", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16342", + "@id": "_:b15579", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6481", + "@id": "_:b14249", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16341", + "@id": "_:b24102", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6480", + "@id": "_:b14252", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "result": { - "@id": "_:b16340", + "@id": "_:b26660", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6484", + "@id": "_:b14255", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16344", + "@id": "_:b19697", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6483", + "@id": "_:b14250", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16343", + "@id": "_:b24954", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6486", + "@id": "_:b14253", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "result": { - "@id": "_:b7602", + "@id": "_:b25476", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6479", + "@id": "_:b14248", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "result": { - "@id": "_:b16339", + "@id": "_:b23357", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6485", + "@id": "_:b14254", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021", "result": { - "@id": "_:b16345", + "@id": "_:b26184", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0021-out.jsonld", + "title": "Blank nodes in @type", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld", + "rdfs:comment": "Empty frame matches all nodes at top-level, and repeats where embedded (with list content) in json-ld-1.0 mode." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0026-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11597", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b991", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0026-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0026-out.jsonld", - "title": "explicitly excludes unframed properties (@explicit: true)", - "rdfs:comment": "If property is not in frame, and explicit is true, processors must not add any values for property to output.", "assertions": [ { - "@id": "_:b13740", + "@id": "_:b989", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "result": { - "@id": "_:b26304", + "@id": "_:b990", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b13735", + "@id": "_:b997", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "result": { - "@id": "_:b16279", + "@id": "_:b24652", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b13736", + "@id": "_:b1000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25615", + "@id": "_:b26913", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13733", + "@id": "_:b996", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13734", + "@id": "_:b26911", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13743", + "@id": "_:b998", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "result": { - "@id": "_:b25180", + "@id": "_:b5701", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13741", + "@id": "_:b995", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16251", + "@id": "_:b24052", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13738", + "@id": "_:b993", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26303", + "@id": "_:b24993", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13739", + "@id": "_:b994", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "result": { - "@id": "_:b22399", + "@id": "_:b25538", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13737", + "@id": "_:b992", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "result": { - "@id": "_:b22051", + "@id": "_:b25007", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13742", + "@id": "_:b999", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022", "result": { - "@id": "_:b26305", + "@id": "_:b26912", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0022-out.jsonld", + "title": "Match on @id", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0022-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0022-in.jsonld", + "rdfs:comment": "Match if node and frame both have the same @id property." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0027-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11358", + "@id": "_:b6110", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0027-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0027-out.jsonld", - "title": "non-existent framed properties create null property", - "rdfs:comment": "Recursively, replace all key-value pairs in compacted results where the key is @preserve with the value from the key-pair. If the value from the key-pair is @null, replace the value with null.", "assertions": [ { - "@id": "_:b14351", + "@id": "_:b6114", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "result": { - "@id": "_:b14352", + "@id": "_:b1550", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b14354", + "@id": "_:b6112", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "result": { - "@id": "_:b21480", + "@id": "_:b19023", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b14357", + "@id": "_:b6113", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26608", + "@id": "_:b19024", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14358", + "@id": "_:b6111", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26051", + "@id": "_:b13734", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14356", + "@id": "_:b6115", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "result": { - "@id": "_:b25982", + "@id": "_:b19025", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14359", + "@id": "_:b6116", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9072", + "@id": "_:b19026", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14361", + "@id": "_:b6119", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16571", + "@id": "_:b19028", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14360", + "@id": "_:b6108", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "result": { - "@id": "_:b26908", + "@id": "_:b6109", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14355", + "@id": "_:b6117", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "result": { - "@id": "_:b25456", + "@id": "_:b19027", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14353", + "@id": "_:b6118", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023", "result": { - "@id": "_:b20878", + "@id": "_:b8602", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0023-out.jsonld", + "title": "No match on []", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0023-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0023-in.jsonld", + "rdfs:comment": "No match if node has a property where frame has an empty array for that same property." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0028-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6329", + "@id": "_:b17215", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0028-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0028-out.jsonld", - "title": "embed matched frames with @reverse", - "rdfs:comment": "If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame.", "assertions": [ { - "@id": "_:b10175", + "@id": "_:b17221", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "result": { - "@id": "_:b19225", + "@id": "_:b24382", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b10170", + "@id": "_:b17217", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "result": { - "@id": "_:b20785", + "@id": "_:b11720", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b10171", + "@id": "_:b17219", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21860", + "@id": "_:b24380", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10176", + "@id": "_:b17218", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21112", + "@id": "_:b24379", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10173", + "@id": "_:b17223", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "result": { - "@id": "_:b23858", + "@id": "_:b22921", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10174", + "@id": "_:b17220", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26483", + "@id": "_:b24381", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10177", + "@id": "_:b17224", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19998", + "@id": "_:b24384", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10169", + "@id": "_:b17213", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "result": { - "@id": "_:b19284", + "@id": "_:b17214", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10172", + "@id": "_:b17216", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "result": { - "@id": "_:b11421", + "@id": "_:b17837", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10168", + "@id": "_:b17222", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024", "result": { - "@id": "_:b11768", + "@id": "_:b24383", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0024-out.jsonld", + "title": "match on any common properties if @requireAll: false", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0024-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0024-in.jsonld", + "rdfs:comment": "Match if @requireAll is false and both node and frame contain common non-keyword properties of any value." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0029-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13369", + "@id": "_:b19915", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0029-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0029-out.jsonld", - "title": "embed matched frames with reversed property", - "rdfs:comment": "If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame.", "assertions": [ { - "@id": "_:b13367", + "@id": "_:b19921", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "result": { - "@id": "_:b13368", + "@id": "_:b21825", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b13374", + "@id": "_:b19918", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "result": { - "@id": "_:b19424", + "@id": "_:b25680", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b13372", + "@id": "_:b19913", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23468", + "@id": "_:b19914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13376", + "@id": "_:b19920", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23470", + "@id": "_:b24143", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13377", + "@id": "_:b19917", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "result": { - "@id": "_:b23471", + "@id": "_:b20411", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13375", + "@id": "_:b19916", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23469", + "@id": "_:b6898", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13371", + "@id": "_:b19922", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22901", + "@id": "_:b23941", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13373", + "@id": "_:b19924", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "result": { - "@id": "_:b15519", + "@id": "_:b17969", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13370", + "@id": "_:b19919", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "result": { - "@id": "_:b19604", + "@id": "_:b17081", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13378", + "@id": "_:b19923", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025", "result": { - "@id": "_:b13723", + "@id": "_:b22734", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0025-out.jsonld", + "title": "@requireAll with missing values and @default", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0025-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0025-in.jsonld", + "rdfs:comment": "Match if @requireAll is true and frame contains a non-keyword key not present in node, where the value is a JSON object containing only the key @default with any value." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0030-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6644", + "@id": "_:b4678", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0030-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0030-out.jsonld", - "title": "@embed @always/@never", - "rdfs:comment": "@embed within a frame controls the object embed flag when processing that frame (@always and @never values).", "assertions": [ { - "@id": "_:b6642", + "@id": "_:b4685", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "result": { - "@id": "_:b6643", + "@id": "_:b1272", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b6649", + "@id": "_:b4683", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "result": { - "@id": "_:b23724", + "@id": "_:b4693", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b6647", + "@id": "_:b4679", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20846", + "@id": "_:b4689", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6650", + "@id": "_:b4680", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23798", + "@id": "_:b4690", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6652", + "@id": "_:b4687", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "result": { - "@id": "_:b23800", + "@id": "_:b4696", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6651", + "@id": "_:b4684", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23799", + "@id": "_:b4694", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6648", + "@id": "_:b4682", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22260", + "@id": "_:b4692", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6645", + "@id": "_:b4686", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "result": { - "@id": "_:b9656", + "@id": "_:b4695", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6653", + "@id": "_:b4681", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "result": { - "@id": "_:b22251", + "@id": "_:b4691", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6646", + "@id": "_:b4688", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026", "result": { - "@id": "_:b16194", + "@id": "_:b4697", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0026-out.jsonld", + "title": "explicitly excludes unframed properties (@explicit: true)", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0026-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0026-in.jsonld", + "rdfs:comment": "If property is not in frame, and explicit is true, processors must not add any values for property to output." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0031-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10452", + "@id": "_:b1463", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0031-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0031-out.jsonld", - "title": "match none @type match", - "rdfs:comment": "Do not match objects with @type, if frame uses @type: [].", "assertions": [ { - "@id": "_:b10454", + "@id": "_:b1465", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "result": { - "@id": "_:b10464", + "@id": "_:b19040", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b10461", + "@id": "_:b1469", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "result": { - "@id": "_:b10471", + "@id": "_:b22699", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b10460", + "@id": "_:b1470", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10470", + "@id": "_:b25693", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10453", + "@id": "_:b1466", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10463", + "@id": "_:b12394", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10456", + "@id": "_:b1471", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "result": { - "@id": "_:b10466", + "@id": "_:b26947", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10462", + "@id": "_:b1467", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10472", + "@id": "_:b26377", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10459", + "@id": "_:b1472", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10469", + "@id": "_:b26948", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10458", + "@id": "_:b1468", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "result": { - "@id": "_:b10468", + "@id": "_:b14824", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10455", + "@id": "_:b1464", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "result": { - "@id": "_:b10465", + "@id": "_:b23326", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10457", + "@id": "_:b1461", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027", "result": { - "@id": "_:b10467", + "@id": "_:b1462", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0027-out.jsonld", + "title": "non-existent framed properties create null property", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0027-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0027-in.jsonld", + "rdfs:comment": "Recursively, replace all key-value pairs in compacted results where the key is @preserve with the value from the key-pair. If the value from the key-pair is @null, replace the value with null." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0032-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4994", + "@id": "_:b10963", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0032-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0032-out.jsonld", - "title": "single @id match", - "rdfs:comment": "Match on a specific node with frame uses @id.", "assertions": [ { - "@id": "_:b5002", + "@id": "_:b10971", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "result": { - "@id": "_:b20734", + "@id": "_:b25631", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b5000", + "@id": "_:b10972", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "result": { - "@id": "_:b20732", + "@id": "_:b17669", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b5001", + "@id": "_:b10967", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20733", + "@id": "_:b24795", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4992", + "@id": "_:b10968", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4993", + "@id": "_:b21770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4998", + "@id": "_:b10966", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "result": { - "@id": "_:b20731", + "@id": "_:b17947", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5003", + "@id": "_:b10965", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20735", + "@id": "_:b24953", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4995", + "@id": "_:b10969", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12269", + "@id": "_:b22162", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4997", + "@id": "_:b10961", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "result": { - "@id": "_:b19874", + "@id": "_:b10962", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4996", + "@id": "_:b10964", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "result": { - "@id": "_:b18280", + "@id": "_:b24644", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4999", + "@id": "_:b10970", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028", "result": { - "@id": "_:b12027", + "@id": "_:b23816", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - }, - { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", - "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0028-out.jsonld", + "title": "embed matched frames with @reverse", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0028-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0028-in.jsonld", + "rdfs:comment": "If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame." + }, + { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", + "@type": [ "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0033-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15541", + "@id": "_:b10234", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0033-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0033-out.jsonld", - "title": "multiple @id match", - "rdfs:comment": "Match on a specific node with frame uses @id with an array of IRIs.", "assertions": [ { - "@id": "_:b23935", + "@id": "_:b14344", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "result": { - "@id": "_:b23936", + "@id": "_:b14353", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b23943", + "@id": "_:b14338", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "result": { - "@id": "_:b25111", + "@id": "_:b3408", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b23937", + "@id": "_:b14345", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23082", + "@id": "_:b14354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23942", + "@id": "_:b14342", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22826", + "@id": "_:b14351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23940", + "@id": "_:b14346", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "result": { - "@id": "_:b19792", + "@id": "_:b14355", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b23941", + "@id": "_:b14343", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25110", + "@id": "_:b14352", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b23938", + "@id": "_:b14341", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25108", + "@id": "_:b14350", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b23944", + "@id": "_:b14340", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "result": { - "@id": "_:b25112", + "@id": "_:b14349", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b23945", + "@id": "_:b14339", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "result": { - "@id": "_:b25113", + "@id": "_:b14348", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b23939", + "@id": "_:b14347", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029", "result": { - "@id": "_:b25109", + "@id": "_:b14356", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0029-out.jsonld", + "title": "embed matched frames with reversed property", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0029-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0029-in.jsonld", + "rdfs:comment": "If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0034-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20158", + "@id": "_:b7656", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0034-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0034-out.jsonld", - "title": "wildcard and match none", - "rdfs:comment": "Match/reject properties using both wildcard and match none.", "assertions": [ { - "@id": "_:b20164", + "@id": "_:b7658", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "result": { - "@id": "_:b20124", + "@id": "_:b13281", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b20161", + "@id": "_:b7657", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "result": { - "@id": "_:b24500", + "@id": "_:b9870", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b20167", + "@id": "_:b7660", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26972", + "@id": "_:b20835", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20159", + "@id": "_:b7664", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23463", + "@id": "_:b13067", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20163", + "@id": "_:b7665", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "result": { - "@id": "_:b26422", + "@id": "_:b17581", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20166", + "@id": "_:b7661", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26971", + "@id": "_:b20393", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20162", + "@id": "_:b7659", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24958", + "@id": "_:b17376", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20156", + "@id": "_:b7654", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "result": { - "@id": "_:b20157", + "@id": "_:b7655", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20160", + "@id": "_:b7662", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "result": { - "@id": "_:b24005", + "@id": "_:b21964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20165", + "@id": "_:b7663", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030", "result": { - "@id": "_:b25909", + "@id": "_:b10983", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0030-out.jsonld", + "title": "@embed @always/@never", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0030-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0030-in.jsonld", + "rdfs:comment": "@embed within a frame controls the object embed flag when processing that frame (@always and @never values)." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0035-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5277", + "@id": "_:b5644", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0035-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0035-out.jsonld", - "title": "matches a deep node pattern", - "rdfs:comment": "Node patterns that don't match all levels, don't match top level.", "assertions": [ { - "@id": "_:b5275", + "@id": "_:b5650", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "result": { - "@id": "_:b5276", + "@id": "_:b24482", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b5281", + "@id": "_:b5647", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "result": { - "@id": "_:b10017", + "@id": "_:b10575", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b5283", + "@id": "_:b5653", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10019", + "@id": "_:b25929", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5282", + "@id": "_:b5652", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10018", + "@id": "_:b26716", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5284", + "@id": "_:b5651", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "result": { - "@id": "_:b10020", + "@id": "_:b21712", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5280", + "@id": "_:b5649", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10016", + "@id": "_:b24994", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5285", + "@id": "_:b5654", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10021", + "@id": "_:b19149", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5279", + "@id": "_:b5646", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "result": { - "@id": "_:b10015", + "@id": "_:b15245", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5286", + "@id": "_:b5645", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "result": { - "@id": "_:b10022", + "@id": "_:b13082", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5278", + "@id": "_:b5648", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031", "result": { - "@id": "_:b8353", + "@id": "_:b23508", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0031-out.jsonld", + "title": "match none @type match", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0031-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0031-in.jsonld", + "rdfs:comment": "Do not match objects with @type, if frame uses @type: []." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0036-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12575", + "@id": "_:b2958", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0036-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0036-out.jsonld", - "title": "matches exact value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b12578", + "@id": "_:b2961", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "result": { - "@id": "_:b22908", + "@id": "_:b26324", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b12582", + "@id": "_:b2959", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "result": { - "@id": "_:b26991", + "@id": "_:b16999", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b12583", + "@id": "_:b2965", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b27000", + "@id": "_:b25935", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12580", + "@id": "_:b2962", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20409", + "@id": "_:b24148", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12576", + "@id": "_:b2957", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "result": { - "@id": "_:b21463", + "@id": "_:b2818", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12573", + "@id": "_:b2964", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12574", + "@id": "_:b8722", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12577", + "@id": "_:b2967", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22338", + "@id": "_:b26325", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12581", + "@id": "_:b2960", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "result": { - "@id": "_:b27012", + "@id": "_:b25612", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12584", + "@id": "_:b2966", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "result": { - "@id": "_:b9189", + "@id": "_:b6656", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12579", + "@id": "_:b2963", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032", "result": { - "@id": "_:b23918", + "@id": "_:b23596", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0032-out.jsonld", + "title": "single @id match", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0032-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0032-in.jsonld", + "rdfs:comment": "Match on a specific node with frame uses @id." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0037-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16784", + "@id": "_:b15917", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0037-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0037-out.jsonld", - "title": "matches wildcard @value in value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b16793", + "@id": "_:b15920", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "result": { - "@id": "_:b13578", + "@id": "_:b16691", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b16790", + "@id": "_:b15915", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "result": { - "@id": "_:b24632", + "@id": "_:b15916", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b16788", + "@id": "_:b15925", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23089", + "@id": "_:b26410", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16794", + "@id": "_:b15923", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21364", + "@id": "_:b25111", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16792", + "@id": "_:b15918", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "result": { - "@id": "_:b26847", + "@id": "_:b10985", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16787", + "@id": "_:b15922", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24048", + "@id": "_:b9601", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16785", + "@id": "_:b15921", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18634", + "@id": "_:b24708", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16786", + "@id": "_:b15924", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "result": { - "@id": "_:b21810", + "@id": "_:b26493", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16791", + "@id": "_:b15919", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "result": { - "@id": "_:b26676", + "@id": "_:b23328", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16789", + "@id": "_:b15926", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033", "result": { - "@id": "_:b20428", + "@id": "_:b27032", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0033-out.jsonld", + "title": "multiple @id match", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0033-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0033-in.jsonld", + "rdfs:comment": "Match on a specific node with frame uses @id with an array of IRIs." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0038-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13400", + "@id": "_:b10358", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0038-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0038-out.jsonld", - "title": "matches wildcard @type in value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b13409", + "@id": "_:b10360", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "result": { - "@id": "_:b14473", + "@id": "_:b10370", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b13403", + "@id": "_:b10367", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "result": { - "@id": "_:b19106", + "@id": "_:b10376", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b13398", + "@id": "_:b10359", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13399", + "@id": "_:b10369", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13402", + "@id": "_:b10363", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24715", + "@id": "_:b10373", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13404", + "@id": "_:b10361", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "result": { - "@id": "_:b25565", + "@id": "_:b10371", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13406", + "@id": "_:b10365", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25953", + "@id": "_:b10375", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13401", + "@id": "_:b10368", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22857", + "@id": "_:b10377", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13408", + "@id": "_:b10364", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "result": { - "@id": "_:b8252", + "@id": "_:b10374", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13405", + "@id": "_:b10366", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "result": { - "@id": "_:b25952", + "@id": "_:b2955", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13407", + "@id": "_:b10362", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034", "result": { - "@id": "_:b24470", + "@id": "_:b10372", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0034-out.jsonld", + "title": "wildcard and match none", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0034-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0034-in.jsonld", + "rdfs:comment": "Match/reject properties using both wildcard and match none." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0039-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10014", + "@id": "_:b10774", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0039-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0039-out.jsonld", - "title": "matches wildcard @language in value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b20935", + "@id": "_:b10776", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "result": { - "@id": "_:b23557", + "@id": "_:b21012", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b20933", + "@id": "_:b10781", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "result": { - "@id": "_:b23555", + "@id": "_:b26330", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b20930", + "@id": "_:b10779", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18138", + "@id": "_:b20797", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20929", + "@id": "_:b10777", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23552", + "@id": "_:b22408", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20928", + "@id": "_:b10775", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "result": { - "@id": "_:b15916", + "@id": "_:b18958", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20927", + "@id": "_:b10780", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21150", + "@id": "_:b25718", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20932", + "@id": "_:b10783", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23554", + "@id": "_:b21158", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20925", + "@id": "_:b10778", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "result": { - "@id": "_:b20926", + "@id": "_:b13864", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20934", + "@id": "_:b10772", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "result": { - "@id": "_:b23556", + "@id": "_:b10773", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20931", + "@id": "_:b10782", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035", "result": { - "@id": "_:b23553", + "@id": "_:b25616", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0035-out.jsonld", + "title": "matches a deep node pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0035-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0035-in.jsonld", + "rdfs:comment": "Node patterns that don't match all levels, don't match top level." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0040-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16878", + "@id": "_:b14008", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0040-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0040-out.jsonld", - "title": "matches match none @type in value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b16884", + "@id": "_:b14010", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "result": { - "@id": "_:b26695", + "@id": "_:b20437", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b16880", + "@id": "_:b14012", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "result": { - "@id": "_:b14875", + "@id": "_:b20854", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b16879", + "@id": "_:b14006", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24970", + "@id": "_:b14007", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16886", + "@id": "_:b14014", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25799", + "@id": "_:b23528", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16887", + "@id": "_:b14017", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "result": { - "@id": "_:b24325", + "@id": "_:b23531", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16885", + "@id": "_:b14009", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25597", + "@id": "_:b4793", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16882", + "@id": "_:b14013", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26914", + "@id": "_:b15487", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16881", + "@id": "_:b14011", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "result": { - "@id": "_:b4145", + "@id": "_:b14157", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16876", + "@id": "_:b14016", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "result": { - "@id": "_:b16877", + "@id": "_:b23530", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16883", + "@id": "_:b14015", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036", "result": { - "@id": "_:b26983", + "@id": "_:b23529", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0036-out.jsonld", + "title": "matches exact value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0036-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0036-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0041-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16540", + "@id": "_:b5992", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0041-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0041-out.jsonld", - "title": "matches match none @language in value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b16542", + "@id": "_:b6001", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "result": { - "@id": "_:b12212", + "@id": "_:b23828", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b16549", + "@id": "_:b5996", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "result": { - "@id": "_:b22175", + "@id": "_:b23800", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b16541", + "@id": "_:b6000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22171", + "@id": "_:b23081", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16543", + "@id": "_:b6002", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22172", + "@id": "_:b19279", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16547", + "@id": "_:b5995", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "result": { - "@id": "_:b13469", + "@id": "_:b10145", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16546", + "@id": "_:b5998", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13303", + "@id": "_:b22468", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16539", + "@id": "_:b5993", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8048", + "@id": "_:b16439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16548", + "@id": "_:b5994", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "result": { - "@id": "_:b18652", + "@id": "_:b19925", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16544", + "@id": "_:b5997", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "result": { - "@id": "_:b22173", + "@id": "_:b23826", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16545", + "@id": "_:b5999", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037", "result": { - "@id": "_:b22174", + "@id": "_:b23827", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0037-out.jsonld", + "title": "matches wildcard @value in value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0037-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0037-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0042-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3736", + "@id": "_:b4451", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0042-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0042-out.jsonld", - "title": "matches some @value in value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b3744", + "@id": "_:b4457", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "result": { - "@id": "_:b24720", + "@id": "_:b7208", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b3737", + "@id": "_:b4456", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "result": { - "@id": "_:b23502", + "@id": "_:b9844", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b3743", + "@id": "_:b4454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25896", + "@id": "_:b22785", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3741", + "@id": "_:b4458", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19048", + "@id": "_:b21763", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3740", + "@id": "_:b4452", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "result": { - "@id": "_:b26115", + "@id": "_:b10215", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3738", + "@id": "_:b4449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15332", + "@id": "_:b4450", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3745", + "@id": "_:b4459", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24319", + "@id": "_:b24563", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3734", + "@id": "_:b4460", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "result": { - "@id": "_:b3735", + "@id": "_:b4559", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3742", + "@id": "_:b4453", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "result": { - "@id": "_:b25780", + "@id": "_:b14998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3739", + "@id": "_:b4455", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038", "result": { - "@id": "_:b17886", + "@id": "_:b24562", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0038-out.jsonld", + "title": "matches wildcard @type in value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0038-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0038-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0043-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10604", + "@id": "_:b16429", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0043-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0043-out.jsonld", - "title": "matches some @type in value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b10608", + "@id": "_:b16437", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "result": { - "@id": "_:b17987", + "@id": "_:b6499", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b10610", + "@id": "_:b16435", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "result": { - "@id": "_:b22634", + "@id": "_:b21585", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b10606", + "@id": "_:b16430", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22632", + "@id": "_:b19174", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10605", + "@id": "_:b16436", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10347", + "@id": "_:b21504", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10607", + "@id": "_:b16432", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "result": { - "@id": "_:b22633", + "@id": "_:b15193", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10602", + "@id": "_:b16433", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10603", + "@id": "_:b26745", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10613", + "@id": "_:b16427", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20344", + "@id": "_:b16428", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10609", + "@id": "_:b16438", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "result": { - "@id": "_:b21366", + "@id": "_:b26758", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10612", + "@id": "_:b16434", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "result": { - "@id": "_:b22636", + "@id": "_:b26995", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10611", + "@id": "_:b16431", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039", "result": { - "@id": "_:b22635", + "@id": "_:b21597", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0039-out.jsonld", + "title": "matches wildcard @language in value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0039-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0039-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0044-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14455", + "@id": "_:b16963", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0044-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0044-out.jsonld", - "title": "matches some @language in value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b24052", + "@id": "_:b16961", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "result": { - "@id": "_:b24053", + "@id": "_:b16962", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b24054", + "@id": "_:b16967", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "result": { - "@id": "_:b25957", + "@id": "_:b25067", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b24059", + "@id": "_:b16970", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24952", + "@id": "_:b26954", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b24056", + "@id": "_:b16966", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9558", + "@id": "_:b17656", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b24057", + "@id": "_:b16965", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "result": { - "@id": "_:b26982", + "@id": "_:b17312", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b24055", + "@id": "_:b16964", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26539", + "@id": "_:b21488", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b24058", + "@id": "_:b16972", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b27013", + "@id": "_:b25374", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b24061", + "@id": "_:b16968", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "result": { - "@id": "_:b17628", + "@id": "_:b19839", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b24060", + "@id": "_:b16971", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "result": { - "@id": "_:b27028", + "@id": "_:b26425", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b24062", + "@id": "_:b16969", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040", "result": { - "@id": "_:b24253", + "@id": "_:b17226", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0040-out.jsonld", + "title": "matches match none @type in value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0040-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0040-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0045-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16133", + "@id": "_:b21720", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0045-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0045-out.jsonld", - "title": "excludes non-matched values in value pattern", - "rdfs:comment": "Value objects matching value patterns are output, others are filtered.", "assertions": [ { - "@id": "_:b16135", + "@id": "_:b21729", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "result": { - "@id": "_:b22422", + "@id": "_:b20626", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b16141", + "@id": "_:b21722", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "result": { - "@id": "_:b24931", + "@id": "_:b23415", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b16137", + "@id": "_:b21718", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24336", + "@id": "_:b21719", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16136", + "@id": "_:b21728", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23993", + "@id": "_:b17484", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16131", + "@id": "_:b21727", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "result": { - "@id": "_:b16132", + "@id": "_:b26120", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16142", + "@id": "_:b21724", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18005", + "@id": "_:b8129", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16140", + "@id": "_:b21721", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25860", + "@id": "_:b22234", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16138", + "@id": "_:b21726", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "result": { - "@id": "_:b24852", + "@id": "_:b20910", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16134", + "@id": "_:b21723", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "result": { - "@id": "_:b17501", + "@id": "_:b24441", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16139", + "@id": "_:b21725", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041", "result": { - "@id": "_:b22900", + "@id": "_:b26314", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0041-out.jsonld", + "title": "matches match none @language in value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0041-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0041-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19664", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b18672", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0046-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0046-out.jsonld", - "title": "Merge graphs if no outer @graph is used", - "rdfs:comment": "Unless @graph exists at the top level, framing uses merged node objects in json-ld-1.0 mode.", "assertions": [ { - "@id": "_:b19667", + "@id": "_:b18675", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "result": { - "@id": "_:b16312", + "@id": "_:b23406", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b19666", + "@id": "_:b18678", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "result": { - "@id": "_:b12304", + "@id": "_:b4710", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b19663", + "@id": "_:b18676", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1547", + "@id": "_:b24970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19671", + "@id": "_:b18673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26068", + "@id": "_:b19145", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19668", + "@id": "_:b18681", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "result": { - "@id": "_:b24576", + "@id": "_:b21496", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19669", + "@id": "_:b18679", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22947", + "@id": "_:b26749", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19670", + "@id": "_:b18677", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26108", + "@id": "_:b25426", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19672", + "@id": "_:b18674", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "result": { - "@id": "_:b22945", + "@id": "_:b6762", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19665", + "@id": "_:b18670", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "result": { - "@id": "_:b11073", + "@id": "_:b18671", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19673", + "@id": "_:b18680", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042", "result": { - "@id": "_:b3449", + "@id": "_:b18860", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0042-out.jsonld", + "title": "matches some @value in value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0042-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0042-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0047-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6797", + "@id": "_:b2013", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0047-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0047-out.jsonld", - "title": "Frame default graph if outer @graph is used", - "rdfs:comment": "If @graph exists at the top level, framing uses the default graph.", "assertions": [ { - "@id": "_:b6802", + "@id": "_:b2019", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "result": { - "@id": "_:b7491", + "@id": "_:b7326", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b6798", + "@id": "_:b2018", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "result": { - "@id": "_:b12614", + "@id": "_:b7325", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b6795", + "@id": "_:b2020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6796", + "@id": "_:b7327", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6801", + "@id": "_:b2023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26075", + "@id": "_:b7330", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6805", + "@id": "_:b2016", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "result": { - "@id": "_:b24252", + "@id": "_:b7323", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6800", + "@id": "_:b2015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20774", + "@id": "_:b7322", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6804", + "@id": "_:b2021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26214", + "@id": "_:b7328", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6803", + "@id": "_:b2022", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "result": { - "@id": "_:b26381", + "@id": "_:b7329", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6806", + "@id": "_:b2017", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "result": { - "@id": "_:b26382", + "@id": "_:b7324", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6799", + "@id": "_:b2014", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043", "result": { - "@id": "_:b18040", + "@id": "_:b2688", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0043-out.jsonld", + "title": "matches some @type in value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0043-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0043-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0048-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9086", + "@id": "_:b11589", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0048-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0048-out.jsonld", - "title": "Merge one graph and preserve another", - "rdfs:comment": "@graph used within a property value frames embedded values from a named graph.", "assertions": [ { - "@id": "_:b9095", + "@id": "_:b11587", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "result": { - "@id": "_:b16376", + "@id": "_:b11588", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b9087", + "@id": "_:b11592", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "result": { - "@id": "_:b11766", + "@id": "_:b13405", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b9091", + "@id": "_:b11593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26017", + "@id": "_:b13406", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9094", + "@id": "_:b11597", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16130", + "@id": "_:b12395", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9092", + "@id": "_:b11590", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "result": { - "@id": "_:b26999", + "@id": "_:b13403", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9090", + "@id": "_:b11595", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16632", + "@id": "_:b13408", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9093", + "@id": "_:b11598", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23601", + "@id": "_:b13410", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9089", + "@id": "_:b11596", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "result": { - "@id": "_:b15932", + "@id": "_:b13409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9088", + "@id": "_:b11594", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "result": { - "@id": "_:b15233", + "@id": "_:b13407", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9084", + "@id": "_:b11591", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044", "result": { - "@id": "_:b9085", + "@id": "_:b13404", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0044-out.jsonld", + "title": "matches some @language in value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0044-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0044-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1141", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b2841", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0049-out.jsonld", - "title": "Merge one graph and deep preserve another", - "rdfs:comment": "@graph used within a property value frames embedded values from a named graph in json-ld-1.0 mode.", "assertions": [ { - "@id": "_:b4553", + "@id": "_:b2847", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "result": { - "@id": "_:b20398", + "@id": "_:b25488", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b4551", + "@id": "_:b2839", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "result": { - "@id": "_:b18862", + "@id": "_:b2840", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b4549", + "@id": "_:b2844", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7320", + "@id": "_:b18205", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4557", + "@id": "_:b2845", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20402", + "@id": "_:b22742", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4554", + "@id": "_:b2843", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "result": { - "@id": "_:b20399", + "@id": "_:b15752", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4556", + "@id": "_:b2848", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20401", + "@id": "_:b26196", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4555", + "@id": "_:b2846", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20400", + "@id": "_:b24581", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4552", + "@id": "_:b2842", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "result": { - "@id": "_:b20397", + "@id": "_:b6760", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4547", + "@id": "_:b2849", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "result": { - "@id": "_:b4548", + "@id": "_:b12235", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4550", + "@id": "_:b2850", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045", "result": { - "@id": "_:b20396", + "@id": "_:b22269", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0045-out.jsonld", + "title": "excludes non-matched values in value pattern", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0045-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0045-in.jsonld", + "rdfs:comment": "Value objects matching value patterns are output, others are filtered." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0050-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17312", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b2403", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0050-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0050-out.jsonld", - "title": "Library example with named graphs", "assertions": [ { - "@id": "_:b17319", + "@id": "_:b2413", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "result": { - "@id": "_:b26163", + "@id": "_:b2423", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b17313", + "@id": "_:b2409", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "result": { - "@id": "_:b21534", + "@id": "_:b2419", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b17317", + "@id": "_:b2406", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19283", + "@id": "_:b2416", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17315", + "@id": "_:b2407", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25666", + "@id": "_:b2417", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17320", + "@id": "_:b2408", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "result": { - "@id": "_:b25461", + "@id": "_:b2418", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17314", + "@id": "_:b2404", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26161", + "@id": "_:b2414", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17321", + "@id": "_:b2412", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26164", + "@id": "_:b2422", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17318", + "@id": "_:b2411", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "result": { - "@id": "_:b26162", + "@id": "_:b2421", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17316", + "@id": "_:b2410", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "result": { - "@id": "_:b10847", + "@id": "_:b2420", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17310", + "@id": "_:b2405", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046", "result": { - "@id": "_:b17311", + "@id": "_:b2415", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0046-out.jsonld", + "title": "Merge graphs if no outer @graph is used", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0046-in.jsonld", + "rdfs:comment": "Unless @graph exists at the top level, framing uses merged node objects in json-ld-1.0 mode." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0051-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8445", + "@id": "_:b14327", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0051-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0051-out.jsonld", - "title": "Compacting values of @preserve", - "rdfs:comment": "When compacting the value of a property using @preserve, use the term definition for term to properly compact the value of @preserve.", "assertions": [ { - "@id": "_:b8664", + "@id": "_:b14335", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "result": { - "@id": "_:b18560", + "@id": "_:b26408", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b8661", + "@id": "_:b14331", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "result": { - "@id": "_:b18557", + "@id": "_:b26121", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b8660", + "@id": "_:b14334", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18556", + "@id": "_:b26407", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8663", + "@id": "_:b14332", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18559", + "@id": "_:b26406", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8667", + "@id": "_:b14336", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "result": { - "@id": "_:b15705", + "@id": "_:b26409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8659", + "@id": "_:b14330", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18555", + "@id": "_:b23100", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8666", + "@id": "_:b14325", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18562", + "@id": "_:b14326", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8662", + "@id": "_:b14329", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "result": { - "@id": "_:b18558", + "@id": "_:b20011", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8665", + "@id": "_:b14333", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "result": { - "@id": "_:b18561", + "@id": "_:b24891", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8657", + "@id": "_:b14328", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047", "result": { - "@id": "_:b8658", + "@id": "_:b18495", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0047-out.jsonld", + "title": "Frame default graph if outer @graph is used", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0047-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0047-in.jsonld", + "rdfs:comment": "If @graph exists at the top level, framing uses the default graph." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0052-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7429", + "@id": "_:b13435", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0052-in.jsonld", - "mf:result": "invalid frame", - "title": "@id must not include a blank node identifier", - "rdfs:comment": "Node matching does not consider blank nodes.", "assertions": [ { - "@id": "_:b7435", + "@id": "_:b13436", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "result": { - "@id": "_:b23447", + "@id": "_:b20259", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b7436", + "@id": "_:b13439", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "result": { - "@id": "_:b21511", + "@id": "_:b22956", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b7439", + "@id": "_:b13443", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23449", + "@id": "_:b22960", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7431", + "@id": "_:b13440", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20616", + "@id": "_:b22957", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7433", + "@id": "_:b13442", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "result": { - "@id": "_:b22840", + "@id": "_:b22959", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7438", + "@id": "_:b13437", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19922", + "@id": "_:b20339", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7432", + "@id": "_:b13438", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18398", + "@id": "_:b22955", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7430", + "@id": "_:b13441", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "result": { - "@id": "_:b18868", + "@id": "_:b22958", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7434", + "@id": "_:b13444", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "result": { - "@id": "_:b23446", + "@id": "_:b22961", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7437", + "@id": "_:b13445", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048", "result": { - "@id": "_:b23448", + "@id": "_:b22962", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0048-out.jsonld", + "title": "Merge one graph and preserve another", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0048-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0048-in.jsonld", + "rdfs:comment": "@graph used within a property value frames embedded values from a named graph." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0053-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2216", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b11643", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0053-in.jsonld", - "mf:result": "invalid frame", - "title": "@type must not include a blank node identifier", - "rdfs:comment": "Node matching does not consider blank nodes.", "assertions": [ { - "@id": "_:b2224", + "@id": "_:b11641", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "result": { - "@id": "_:b26610", + "@id": "_:b11642", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b2218", + "@id": "_:b11647", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "result": { - "@id": "_:b13459", + "@id": "_:b7978", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b2219", + "@id": "_:b11651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16569", + "@id": "_:b25021", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2221", + "@id": "_:b11646", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19232", + "@id": "_:b25133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2223", + "@id": "_:b11649", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "result": { - "@id": "_:b26463", + "@id": "_:b26158", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2214", + "@id": "_:b11650", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2215", + "@id": "_:b26159", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2225", + "@id": "_:b11652", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26002", + "@id": "_:b22676", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2220", + "@id": "_:b11648", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "result": { - "@id": "_:b17921", + "@id": "_:b26157", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2222", + "@id": "_:b11645", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "result": { - "@id": "_:b5136", + "@id": "_:b8432", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2217", + "@id": "_:b11644", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049", "result": { - "@id": "_:b7951", + "@id": "_:b15133", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0049-out.jsonld", + "title": "Merge one graph and deep preserve another", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld", + "rdfs:comment": "@graph used within a property value frames embedded values from a named graph in json-ld-1.0 mode." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0054-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12326", + "@id": "_:b5545", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0054-in.jsonld", - "mf:result": "invalid @embed value", - "title": "Out of range @embed value", - "rdfs:comment": "Any other value for @embed is invalid and indicates that an invalid @embed value error has been detected and processing is aborted.", "assertions": [ { - "@id": "_:b12332", + "@id": "_:b5552", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "result": { - "@id": "_:b16904", + "@id": "_:b26692", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b12328", + "@id": "_:b5551", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "result": { - "@id": "_:b16900", + "@id": "_:b17379", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b12331", + "@id": "_:b5546", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16903", + "@id": "_:b9689", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12335", + "@id": "_:b5548", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16907", + "@id": "_:b13931", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12333", + "@id": "_:b5550", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "result": { - "@id": "_:b16905", + "@id": "_:b26143", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12329", + "@id": "_:b5554", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16901", + "@id": "_:b19478", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12327", + "@id": "_:b5547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5006", + "@id": "_:b17848", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12334", + "@id": "_:b5549", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "result": { - "@id": "_:b16906", + "@id": "_:b7580", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12330", + "@id": "_:b5553", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "result": { - "@id": "_:b16902", + "@id": "_:b21370", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12324", + "@id": "_:b5543", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050", "result": { - "@id": "_:b12325", + "@id": "_:b5544", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0050-out.jsonld", + "title": "Library example with named graphs", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0050-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0050-in.jsonld" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0055-frame.jsonld" + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b17383", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0055-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0055-out.jsonld", - "title": "Framing list with mixed values", - "rdfs:comment": "Framing list values which are mixed.", "assertions": [ { - "@id": "_:b5246", + "@id": "_:b17385", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "result": { - "@id": "_:b17790", + "@id": "_:b21700", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b5239", + "@id": "_:b17384", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "result": { - "@id": "_:b5240", + "@id": "_:b21851", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b5248", + "@id": "_:b17389", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23081", + "@id": "_:b21854", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5242", + "@id": "_:b17388", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25925", + "@id": "_:b21853", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5249", + "@id": "_:b17390", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "result": { - "@id": "_:b19087", + "@id": "_:b7581", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5244", + "@id": "_:b17386", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8444", + "@id": "_:b20520", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5241", + "@id": "_:b17392", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19032", + "@id": "_:b21856", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5243", + "@id": "_:b17387", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "result": { - "@id": "_:b24927", + "@id": "_:b21852", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5245", + "@id": "_:b17381", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "result": { - "@id": "_:b2996", + "@id": "_:b17382", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5247", + "@id": "_:b17391", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051", "result": { - "@id": "_:b17261", + "@id": "_:b21855", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0051-out.jsonld", + "title": "Compacting values of @preserve", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0051-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0051-in.jsonld", + "rdfs:comment": "When compacting the value of a property using @preserve, use the term definition for term to properly compact the value of @preserve." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0056-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16830", + "@id": "_:b6528", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0056-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0056-out.jsonld", - "title": "Frame matching on matching value in list", - "rdfs:comment": "Lists match on any matching value.", "assertions": [ { - "@id": "_:b16835", + "@id": "_:b6531", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "result": { - "@id": "_:b17740", + "@id": "_:b25495", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b16831", + "@id": "_:b6529", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "result": { - "@id": "_:b19120", + "@id": "_:b18514", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b16832", + "@id": "_:b6536", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22951", + "@id": "_:b26867", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16839", + "@id": "_:b6535", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22955", + "@id": "_:b25430", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16837", + "@id": "_:b6537", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "result": { - "@id": "_:b22933", + "@id": "_:b25522", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16834", + "@id": "_:b6532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22953", + "@id": "_:b23454", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16836", + "@id": "_:b6526", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22954", + "@id": "_:b6527", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16828", + "@id": "_:b6534", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "result": { - "@id": "_:b16829", + "@id": "_:b20472", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16833", + "@id": "_:b6533", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "result": { - "@id": "_:b22952", + "@id": "_:b25962", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16838", + "@id": "_:b6530", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052", "result": { - "@id": "_:b21365", + "@id": "_:b22110", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid frame", + "title": "@id must not include a blank node identifier", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0052-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0052-in.jsonld", + "rdfs:comment": "Node matching does not consider blank nodes." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0057-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4235", + "@id": "_:b2943", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0057-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0057-out.jsonld", - "title": "Frame matching on any matching value in list", - "rdfs:comment": "Lists match on any matching value.", "assertions": [ { - "@id": "_:b4240", + "@id": "_:b2945", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "result": { - "@id": "_:b24623", + "@id": "_:b20858", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b4239", + "@id": "_:b2944", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "result": { - "@id": "_:b7595", + "@id": "_:b5189", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b4236", + "@id": "_:b2946", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22403", + "@id": "_:b21043", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4237", + "@id": "_:b2941", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25872", + "@id": "_:b2942", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4238", + "@id": "_:b2951", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "result": { - "@id": "_:b23205", + "@id": "_:b26523", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4242", + "@id": "_:b2950", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24520", + "@id": "_:b26536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4244", + "@id": "_:b2948", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25840", + "@id": "_:b25620", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4233", + "@id": "_:b2952", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "result": { - "@id": "_:b4234", + "@id": "_:b21425", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4241", + "@id": "_:b2947", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "result": { - "@id": "_:b24629", + "@id": "_:b21930", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4243", + "@id": "_:b2949", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053", "result": { - "@id": "_:b22241", + "@id": "_:b24810", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid frame", + "title": "@type must not include a blank node identifier", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0053-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0053-in.jsonld", + "rdfs:comment": "Node matching does not consider blank nodes." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0058-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4249", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#omitGraph": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b9804", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0058-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0058-out.jsonld", - "title": "Frame matching with no matching value in list", - "rdfs:comment": "Lists match on any matching value.", "assertions": [ { - "@id": "_:b4255", + "@id": "_:b18813", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "result": { - "@id": "_:b9685", + "@id": "_:b18814", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b4250", + "@id": "_:b18816", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "result": { - "@id": "_:b16816", + "@id": "_:b11029", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b4252", + "@id": "_:b18817", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21402", + "@id": "_:b22535", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4253", + "@id": "_:b18823", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21668", + "@id": "_:b15179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4254", + "@id": "_:b18821", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "result": { - "@id": "_:b21669", + "@id": "_:b22538", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4251", + "@id": "_:b18815", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7492", + "@id": "_:b22534", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4258", + "@id": "_:b18822", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21672", + "@id": "_:b22539", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4247", + "@id": "_:b18819", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "result": { - "@id": "_:b4248", + "@id": "_:b22537", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4256", + "@id": "_:b18820", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "result": { - "@id": "_:b21670", + "@id": "_:b16545", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4257", + "@id": "_:b18818", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054", "result": { - "@id": "_:b21671", + "@id": "_:b22536", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @embed value", + "title": "Out of range @embed value", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0054-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0054-in.jsonld", + "rdfs:comment": "Any other value for @embed is invalid and indicates that an invalid @embed value error has been detected and processing is aborted." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0059-frame.jsonld" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4044", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0059-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0059-out.jsonld", - "title": "@embed: @last replaces previous embed values with node reference", - "rdfs:comment": "Verify that within a matched node, by default only the last reference will be embedded in json-ld-1.0 mode.", "assertions": [ { - "@id": "_:b8621", + "@id": "_:b16517", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "result": { - "@id": "_:b13524", + "@id": "_:b18993", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b8624", + "@id": "_:b16514", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "result": { - "@id": "_:b19444", + "@id": "_:b18991", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b8620", + "@id": "_:b16518", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19442", + "@id": "_:b18994", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8625", + "@id": "_:b16519", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19445", + "@id": "_:b18995", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8622", + "@id": "_:b16509", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "result": { - "@id": "_:b14014", + "@id": "_:b16510", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8618", + "@id": "_:b16516", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16919", + "@id": "_:b11503", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8626", + "@id": "_:b16513", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19446", + "@id": "_:b18990", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8623", + "@id": "_:b16511", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "result": { - "@id": "_:b19443", + "@id": "_:b17767", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8619", + "@id": "_:b16515", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "result": { - "@id": "_:b19441", + "@id": "_:b18992", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8627", + "@id": "_:b16512", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055", "result": { - "@id": "_:b19447", + "@id": "_:b6224", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0055-out.jsonld", + "title": "Framing list with mixed values", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0055-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0055-in.jsonld", + "rdfs:comment": "Framing list values which are mixed." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0060-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11862", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#ordered": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b11327", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0060-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0060-out.jsonld", - "title": "@embed: @once only embeds first value with node reference", - "rdfs:comment": "Verify that within a matched node and @embed: @first, by only the first reference will be embedded.", "assertions": [ { - "@id": "_:b11863", + "@id": "_:b11330", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "result": { - "@id": "_:b14477", + "@id": "_:b24082", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b11867", + "@id": "_:b11332", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "result": { - "@id": "_:b25611", + "@id": "_:b24909", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b11860", + "@id": "_:b11331", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11861", + "@id": "_:b24908", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11864", + "@id": "_:b11333", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18472", + "@id": "_:b24910", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11865", + "@id": "_:b11335", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "result": { - "@id": "_:b21700", + "@id": "_:b12746", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11866", + "@id": "_:b11329", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23999", + "@id": "_:b21955", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11869", + "@id": "_:b11325", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22968", + "@id": "_:b11326", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11868", + "@id": "_:b11334", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "result": { - "@id": "_:b6639", + "@id": "_:b3448", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11870", + "@id": "_:b11328", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "result": { - "@id": "_:b19570", + "@id": "_:b21898", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11871", + "@id": "_:b11336", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056", "result": { - "@id": "_:b24626", + "@id": "_:b24911", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0056-out.jsonld", + "title": "Frame matching on matching value in list", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0056-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0056-in.jsonld", + "rdfs:comment": "Lists match on any matching value." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0061-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4631", + "@id": "_:b10885", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0061-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0061-out.jsonld", - "title": "Matching embedded nodes with @default", - "rdfs:comment": "Verify that embedded nodes match with @default and a wildcard @id.", "assertions": [ { - "@id": "_:b4635", + "@id": "_:b10893", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "result": { - "@id": "_:b4645", + "@id": "_:b21960", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b4633", + "@id": "_:b10891", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "result": { - "@id": "_:b4643", + "@id": "_:b25313", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b4638", + "@id": "_:b10890", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4648", + "@id": "_:b25091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4636", + "@id": "_:b10892", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4646", + "@id": "_:b12262", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4634", + "@id": "_:b10887", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "result": { - "@id": "_:b4644", + "@id": "_:b20410", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4632", + "@id": "_:b10883", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4642", + "@id": "_:b10884", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4637", + "@id": "_:b10894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4647", + "@id": "_:b25314", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4639", + "@id": "_:b10888", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "result": { - "@id": "_:b4649", + "@id": "_:b20725", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4641", + "@id": "_:b10886", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "result": { - "@id": "_:b4651", + "@id": "_:b19570", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4640", + "@id": "_:b10889", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057", "result": { - "@id": "_:b4650", + "@id": "_:b10825", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0057-out.jsonld", + "title": "Frame matching on any matching value in list", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0057-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0057-in.jsonld", + "rdfs:comment": "Lists match on any matching value." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0062-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20895", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b6044", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#omitGraph": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0062-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0062-out.jsonld", - "title": "An array with a single value remains an array if container is @set.", - "rdfs:comment": "Cleaning up @preserve/@null does not violate container: @set.", "assertions": [ { - "@id": "_:b20896", + "@id": "_:b6045", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "result": { - "@id": "_:b4586", + "@id": "_:b6055", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b20893", + "@id": "_:b6047", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "result": { - "@id": "_:b20894", + "@id": "_:b6057", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b20900", + "@id": "_:b6054", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26234", + "@id": "_:b6064", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20904", + "@id": "_:b6050", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25857", + "@id": "_:b6060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20898", + "@id": "_:b6053", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "result": { - "@id": "_:b21353", + "@id": "_:b6063", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20901", + "@id": "_:b6048", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24431", + "@id": "_:b6058", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20902", + "@id": "_:b6049", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21028", + "@id": "_:b6059", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20899", + "@id": "_:b6046", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "result": { - "@id": "_:b25728", + "@id": "_:b6056", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20897", + "@id": "_:b6051", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "result": { - "@id": "_:b22456", + "@id": "_:b6061", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20903", + "@id": "_:b6052", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058", "result": { - "@id": "_:b21682", + "@id": "_:b6062", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0058-out.jsonld", + "title": "Frame matching with no matching value in list", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0058-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0058-in.jsonld", + "rdfs:comment": "Lists match on any matching value." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0063-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2122", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b5840", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0063-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0063-out.jsonld", - "title": "Using @null in @default.", - "rdfs:comment": "@null may be used as an @default value and is preserved in output.", "assertions": [ { - "@id": "_:b2124", + "@id": "_:b5850", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "result": { - "@id": "_:b19399", + "@id": "_:b11261", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b2127", + "@id": "_:b5846", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "result": { - "@id": "_:b26117", + "@id": "_:b11258", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b2129", + "@id": "_:b5843", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26118", + "@id": "_:b11255", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2128", + "@id": "_:b5849", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24966", + "@id": "_:b11260", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2126", + "@id": "_:b5844", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "result": { - "@id": "_:b14364", + "@id": "_:b11256", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2120", + "@id": "_:b5841", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2121", + "@id": "_:b7652", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2123", + "@id": "_:b5845", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7425", + "@id": "_:b11257", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2125", + "@id": "_:b5848", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "result": { - "@id": "_:b24401", + "@id": "_:b1273", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2130", + "@id": "_:b5847", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "result": { - "@id": "_:b26119", + "@id": "_:b11259", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2131", + "@id": "_:b5842", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059", "result": { - "@id": "_:b2239", + "@id": "_:b11254", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0059-out.jsonld", + "title": "@embed: @last replaces previous embed values with node reference", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0059-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0059-in.jsonld", + "rdfs:comment": "Verify that within a matched node, by default only the last reference will be embedded in json-ld-1.0 mode." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0064-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20185", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b15901", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#ordered": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0064-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0064-out.jsonld", - "title": "Using @default in @type.", - "rdfs:comment": "@type may have a default value.", "assertions": [ { - "@id": "_:b20191", + "@id": "_:b15907", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "result": { - "@id": "_:b20790", + "@id": "_:b24945", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b20187", + "@id": "_:b15904", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "result": { - "@id": "_:b20787", + "@id": "_:b21420", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b20189", + "@id": "_:b15905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20788", + "@id": "_:b21917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20188", + "@id": "_:b15903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12688", + "@id": "_:b19392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20192", + "@id": "_:b15899", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "result": { - "@id": "_:b20791", + "@id": "_:b15900", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20183", + "@id": "_:b15906", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20184", + "@id": "_:b8835", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20193", + "@id": "_:b15909", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20792", + "@id": "_:b25339", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20190", + "@id": "_:b15908", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "result": { - "@id": "_:b20789", + "@id": "_:b25338", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20194", + "@id": "_:b15902", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "result": { - "@id": "_:b20793", + "@id": "_:b16047", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20186", + "@id": "_:b15910", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060", "result": { - "@id": "_:b20786", + "@id": "_:b21241", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0060-out.jsonld", + "title": "@embed: @once only embeds first value with node reference", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0060-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0060-in.jsonld", + "rdfs:comment": "Verify that within a matched node and @embed: @first, by only the first reference will be embedded." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0065-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4967", + "@id": "_:b1791", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0065-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0065-out.jsonld", - "title": "Match on value", - "rdfs:comment": "Value matching.", "assertions": [ { - "@id": "_:b4973", + "@id": "_:b1799", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "result": { - "@id": "_:b24978", + "@id": "_:b10430", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b4970", + "@id": "_:b1792", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "result": { - "@id": "_:b19605", + "@id": "_:b7994", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b4969", + "@id": "_:b1796", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11703", + "@id": "_:b10427", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4976", + "@id": "_:b1793", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6488", + "@id": "_:b10424", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4977", + "@id": "_:b1797", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "result": { - "@id": "_:b22505", + "@id": "_:b10428", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4974", + "@id": "_:b1795", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26555", + "@id": "_:b10426", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4975", + "@id": "_:b1800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16042", + "@id": "_:b10431", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4968", + "@id": "_:b1798", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "result": { - "@id": "_:b6124", + "@id": "_:b10429", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4971", + "@id": "_:b1789", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "result": { - "@id": "_:b25434", + "@id": "_:b1790", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4972", + "@id": "_:b1794", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061", "result": { - "@id": "_:b26352", + "@id": "_:b10425", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0061-out.jsonld", + "title": "Matching embedded nodes with @default", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0061-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0061-in.jsonld", + "rdfs:comment": "Verify that embedded nodes match with @default and a wildcard @id." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0066-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21599", + "@id": "_:b1726", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0066-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0066-out.jsonld", - "title": "Match on value reference", - "rdfs:comment": "Value reference matching.", "assertions": [ { - "@id": "_:b21606", + "@id": "_:b1730", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "result": { - "@id": "_:b22580", + "@id": "_:b23857", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b21605", + "@id": "_:b1727", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "result": { - "@id": "_:b22579", + "@id": "_:b6832", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b21604", + "@id": "_:b1733", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22578", + "@id": "_:b20217", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21607", + "@id": "_:b1724", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22581", + "@id": "_:b1725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21600", + "@id": "_:b1732", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "result": { - "@id": "_:b2184", + "@id": "_:b12396", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21603", + "@id": "_:b1731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19633", + "@id": "_:b24470", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21597", + "@id": "_:b1734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21598", + "@id": "_:b25439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21602", + "@id": "_:b1729", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "result": { - "@id": "_:b22577", + "@id": "_:b20010", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b21601", + "@id": "_:b1735", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "result": { - "@id": "_:b22576", + "@id": "_:b14621", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21608", + "@id": "_:b1728", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062", "result": { - "@id": "_:b22582", + "@id": "_:b12042", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0062-out.jsonld", + "title": "An array with a single value remains an array if container is @set.", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0062-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0062-in.jsonld", + "rdfs:comment": "Cleaning up @preserve/@null does not violate container: @set." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0067-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5377", + "@id": "_:b14169", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0067-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0067-out.jsonld", - "title": "Match on list value", - "rdfs:comment": "List value matching.", "assertions": [ { - "@id": "_:b5385", + "@id": "_:b14173", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "result": { - "@id": "_:b8953", + "@id": "_:b23307", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b5378", + "@id": "_:b14174", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "result": { - "@id": "_:b9867", + "@id": "_:b18085", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b5382", + "@id": "_:b14171", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1929", + "@id": "_:b22725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5375", + "@id": "_:b14178", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5376", + "@id": "_:b25685", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5379", + "@id": "_:b14177", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "result": { - "@id": "_:b23413", + "@id": "_:b24557", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5380", + "@id": "_:b14167", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20973", + "@id": "_:b14168", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5381", + "@id": "_:b14175", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24403", + "@id": "_:b26915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5383", + "@id": "_:b14170", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "result": { - "@id": "_:b25477", + "@id": "_:b20008", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5384", + "@id": "_:b14176", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "result": { - "@id": "_:b18526", + "@id": "_:b22177", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5386", + "@id": "_:b14172", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063", "result": { - "@id": "_:b16504", + "@id": "_:b19511", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0063-out.jsonld", + "title": "Using @null in @default.", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0063-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0063-in.jsonld", + "rdfs:comment": "@null may be used as an @default value and is preserved in output." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0068-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10774", + "@id": "_:b1642", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0068-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0068-out.jsonld", - "title": "Merge @type from different graphs", - "rdfs:comment": "When merging nodes, ensure that @type values from each node are retained.", "assertions": [ { - "@id": "_:b10781", + "@id": "_:b1649", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "result": { - "@id": "_:b22078", + "@id": "_:b11082", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b10782", + "@id": "_:b1650", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "result": { - "@id": "_:b22079", + "@id": "_:b11083", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b10783", + "@id": "_:b1646", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20108", + "@id": "_:b11080", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10772", + "@id": "_:b1643", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10773", + "@id": "_:b11077", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10777", + "@id": "_:b1645", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "result": { - "@id": "_:b19437", + "@id": "_:b11079", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10780", + "@id": "_:b1644", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22077", + "@id": "_:b11078", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10776", + "@id": "_:b1651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19596", + "@id": "_:b11084", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10775", + "@id": "_:b1648", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "result": { - "@id": "_:b17868", + "@id": "_:b11081", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10779", + "@id": "_:b1640", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "result": { - "@id": "_:b22076", + "@id": "_:b1641", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10778", + "@id": "_:b1647", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064", "result": { - "@id": "_:b22075", + "@id": "_:b8526", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0064-out.jsonld", + "title": "Using @default in @type.", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0064-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0064-in.jsonld", + "rdfs:comment": "@type may have a default value." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/eo01-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8305", + "@id": "_:b18161", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/eo01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/eo01-out.jsonld", - "title": "@embed true/false", - "rdfs:comment": "@embed within a frame controls the object embed flag when processing that frame (true and false values).", "assertions": [ { - "@id": "_:b8313", + "@id": "_:b18166", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "result": { - "@id": "_:b17260", + "@id": "_:b22194", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b8311", + "@id": "_:b18170", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "result": { - "@id": "_:b11420", + "@id": "_:b22645", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b8303", + "@id": "_:b18164", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8304", + "@id": "_:b25318", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8306", + "@id": "_:b18165", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14771", + "@id": "_:b25812", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8309", + "@id": "_:b18159", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "result": { - "@id": "_:b15685", + "@id": "_:b18160", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8307", + "@id": "_:b18168", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20827", + "@id": "_:b26796", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8310", + "@id": "_:b18167", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26541", + "@id": "_:b19946", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8312", + "@id": "_:b18162", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "result": { - "@id": "_:b26758", + "@id": "_:b18880", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8308", + "@id": "_:b18163", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "result": { - "@id": "_:b21413", + "@id": "_:b24428", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8314", + "@id": "_:b18169", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065", "result": { - "@id": "_:b23614", + "@id": "_:b26203", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0065-out.jsonld", + "title": "Match on value", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0065-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0065-in.jsonld", + "rdfs:comment": "Value matching." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g001-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10442", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#omitGraph": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } + "@id": "_:b16317", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g001-out.jsonld", - "title": "Library framing example with @graph and omitGraph is true.", - "rdfs:comment": "Basic example used in playground and spec examples.", "assertions": [ { - "@id": "_:b10451", + "@id": "_:b16327", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "result": { - "@id": "_:b26882", + "@id": "_:b16336", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b10444", + "@id": "_:b16325", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "result": { - "@id": "_:b13485", + "@id": "_:b16334", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b10448", + "@id": "_:b16324", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26532", + "@id": "_:b16333", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10443", + "@id": "_:b16320", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18393", + "@id": "_:b11338", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10450", + "@id": "_:b16322", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "result": { - "@id": "_:b10241", + "@id": "_:b16331", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10446", + "@id": "_:b16319", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26883", + "@id": "_:b16329", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10440", + "@id": "_:b16321", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10441", + "@id": "_:b16330", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10445", + "@id": "_:b16318", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "result": { - "@id": "_:b26269", + "@id": "_:b16328", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10449", + "@id": "_:b16323", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "result": { - "@id": "_:b17863", + "@id": "_:b16332", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10447", + "@id": "_:b16326", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066", "result": { - "@id": "_:b25807", + "@id": "_:b16335", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0066-out.jsonld", + "title": "Match on value reference", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0066-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0066-in.jsonld", + "rdfs:comment": "Value reference matching." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g002-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12552", + "@id": "_:b7419", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g002-out.jsonld", - "title": "Simple embed", - "rdfs:comment": "Test embedded graphs", "assertions": [ { - "@id": "_:b12560", + "@id": "_:b7428", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "result": { - "@id": "_:b15886", + "@id": "_:b7438", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b12557", + "@id": "_:b7422", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "result": { - "@id": "_:b15883", + "@id": "_:b7432", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b12556", + "@id": "_:b7427", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15882", + "@id": "_:b7437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12559", + "@id": "_:b7424", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15885", + "@id": "_:b7434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12550", + "@id": "_:b7421", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "result": { - "@id": "_:b12551", + "@id": "_:b7431", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12558", + "@id": "_:b7429", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15884", + "@id": "_:b7439", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12553", + "@id": "_:b7420", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15879", + "@id": "_:b7430", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12555", + "@id": "_:b7426", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "result": { - "@id": "_:b15881", + "@id": "_:b7436", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12554", + "@id": "_:b7423", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "result": { - "@id": "_:b15880", + "@id": "_:b7433", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12561", + "@id": "_:b7425", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067", "result": { - "@id": "_:b15887", + "@id": "_:b7435", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0067-out.jsonld", + "title": "Match on list value", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0067-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0067-in.jsonld", + "rdfs:comment": "List value matching." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g003-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b884", + "@id": "_:b5937", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g003-out.jsonld", - "title": "Embed with direct circular reference", - "rdfs:comment": "Test embedded graphs", "assertions": [ { - "@id": "_:b885", + "@id": "_:b5940", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "result": { - "@id": "_:b895", + "@id": "_:b21505", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b888", + "@id": "_:b5942", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "result": { - "@id": "_:b898", + "@id": "_:b22918", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b889", + "@id": "_:b5944", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b899", + "@id": "_:b24941", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b894", + "@id": "_:b5945", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b904", + "@id": "_:b24942", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b890", + "@id": "_:b5938", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "result": { - "@id": "_:b900", + "@id": "_:b14952", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b891", + "@id": "_:b5939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b901", + "@id": "_:b18622", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b892", + "@id": "_:b5943", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b902", + "@id": "_:b24497", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b893", + "@id": "_:b5946", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "result": { - "@id": "_:b903", + "@id": "_:b21233", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b887", + "@id": "_:b5947", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "result": { - "@id": "_:b897", + "@id": "_:b24943", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b886", + "@id": "_:b5941", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068", "result": { - "@id": "_:b896", + "@id": "_:b23123", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/0068-out.jsonld", + "title": "Merge @type from different graphs", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0068-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0068-in.jsonld", + "rdfs:comment": "When merging nodes, ensure that @type values from each node are retained." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g004-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17531", + "@id": "_:b13785", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g004-out.jsonld", - "title": "Embed with indirect circular reference", - "rdfs:comment": "Test embedded graphs", "assertions": [ { - "@id": "_:b17536", + "@id": "_:b13786", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "result": { - "@id": "_:b26112", + "@id": "_:b16035", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b17539", + "@id": "_:b13789", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "result": { - "@id": "_:b24985", + "@id": "_:b16038", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b17535", + "@id": "_:b13787", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25578", + "@id": "_:b16036", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17540", + "@id": "_:b13784", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26858", + "@id": "_:b1764", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17529", + "@id": "_:b13793", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "result": { - "@id": "_:b17530", + "@id": "_:b16041", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17534", + "@id": "_:b13791", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24177", + "@id": "_:b7993", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17538", + "@id": "_:b13792", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12083", + "@id": "_:b16040", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17533", + "@id": "_:b13794", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "result": { - "@id": "_:b22745", + "@id": "_:b16042", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17537", + "@id": "_:b13788", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "result": { - "@id": "_:b25785", + "@id": "_:b16037", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17532", + "@id": "_:b13790", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01", "result": { - "@id": "_:b20725", + "@id": "_:b16039", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/eo01-out.jsonld", + "title": "@embed true/false", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/eo01-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/eo01-in.jsonld", + "rdfs:comment": "@embed within a frame controls the object embed flag when processing that frame (true and false values)." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g005-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3817", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b2740", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#omitGraph": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g005-out.jsonld", - "title": "Embed with indirect circular reference via set", - "rdfs:comment": "Test embedded graphs", "assertions": [ { - "@id": "_:b3823", + "@id": "_:b2742", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "result": { - "@id": "_:b19694", + "@id": "_:b18793", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b3825", + "@id": "_:b2745", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "result": { - "@id": "_:b25881", + "@id": "_:b25843", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b3822", + "@id": "_:b2741", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23094", + "@id": "_:b9691", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3826", + "@id": "_:b2749", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11026", + "@id": "_:b26477", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3824", + "@id": "_:b2744", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "result": { - "@id": "_:b25018", + "@id": "_:b24540", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3821", + "@id": "_:b2743", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22445", + "@id": "_:b23849", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3818", + "@id": "_:b2748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14796", + "@id": "_:b21548", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3819", + "@id": "_:b2747", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "result": { - "@id": "_:b20850", + "@id": "_:b26656", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3815", + "@id": "_:b2746", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "result": { - "@id": "_:b3816", + "@id": "_:b22669", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3820", + "@id": "_:b2738", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001", "result": { - "@id": "_:b21891", + "@id": "_:b2739", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g001-out.jsonld", + "title": "Library framing example with @graph and omitGraph is true.", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g001-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g001-in.jsonld", + "rdfs:comment": "Basic example used in playground and spec examples." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g006-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11310", + "@id": "_:b8275", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g006-out.jsonld", - "title": "Embed with nested indirect circular reference via set", - "rdfs:comment": "Test embedded graphs", "assertions": [ { - "@id": "_:b11312", + "@id": "_:b8279", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "result": { - "@id": "_:b5413", + "@id": "_:b17232", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b11314", + "@id": "_:b8278", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "result": { - "@id": "_:b15434", + "@id": "_:b20223", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b11311", + "@id": "_:b8283", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13394", + "@id": "_:b20298", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11315", + "@id": "_:b8276", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17713", + "@id": "_:b16549", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11318", + "@id": "_:b8277", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "result": { - "@id": "_:b17716", + "@id": "_:b18608", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11319", + "@id": "_:b8281", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17717", + "@id": "_:b7440", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11316", + "@id": "_:b8280", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17714", + "@id": "_:b24312", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11313", + "@id": "_:b8273", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "result": { - "@id": "_:b17712", + "@id": "_:b8274", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11317", + "@id": "_:b8282", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "result": { - "@id": "_:b17715", + "@id": "_:b24660", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11308", + "@id": "_:b8284", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002", "result": { - "@id": "_:b11309", + "@id": "_:b20208", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g002-out.jsonld", + "title": "Simple embed", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g002-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g002-in.jsonld", + "rdfs:comment": "Test embedded graphs" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g007-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5390", + "@id": "_:b2753", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g007-out.jsonld", - "title": "Multi-level simple embeds", - "rdfs:comment": "Test embedded graphs", "assertions": [ { - "@id": "_:b5396", + "@id": "_:b2751", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "result": { - "@id": "_:b25548", + "@id": "_:b2752", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b5391", + "@id": "_:b2755", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "result": { - "@id": "_:b19137", + "@id": "_:b10678", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b5398", + "@id": "_:b2759", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23674", + "@id": "_:b25606", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5395", + "@id": "_:b2762", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26065", + "@id": "_:b25608", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5392", + "@id": "_:b2758", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "result": { - "@id": "_:b21324", + "@id": "_:b25605", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5393", + "@id": "_:b2760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14035", + "@id": "_:b25607", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5399", + "@id": "_:b2754", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22052", + "@id": "_:b11142", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5394", + "@id": "_:b2757", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "result": { - "@id": "_:b15707", + "@id": "_:b25604", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5388", + "@id": "_:b2756", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "result": { - "@id": "_:b5389", + "@id": "_:b23028", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5397", + "@id": "_:b2761", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003", "result": { - "@id": "_:b24311", + "@id": "_:b14649", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g003-out.jsonld", + "title": "Embed with direct circular reference", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g003-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g003-in.jsonld", + "rdfs:comment": "Test embedded graphs" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g008-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2804", + "@id": "_:b17061", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g008-out.jsonld", - "title": "A tangle of nastiness", - "rdfs:comment": "Test embedded graphs", "assertions": [ { - "@id": "_:b2802", + "@id": "_:b17066", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "result": { - "@id": "_:b2803", + "@id": "_:b8850", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b2809", + "@id": "_:b17065", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "result": { - "@id": "_:b23334", + "@id": "_:b17075", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b2808", + "@id": "_:b17069", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26015", + "@id": "_:b17078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2811", + "@id": "_:b17068", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25273", + "@id": "_:b17077", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2805", + "@id": "_:b17071", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "result": { - "@id": "_:b9800", + "@id": "_:b14981", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2806", + "@id": "_:b17063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7475", + "@id": "_:b17073", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2810", + "@id": "_:b17062", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19569", + "@id": "_:b17072", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2812", + "@id": "_:b17064", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "result": { - "@id": "_:b26645", + "@id": "_:b17074", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2813", + "@id": "_:b17067", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "result": { - "@id": "_:b2903", + "@id": "_:b17076", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2807", + "@id": "_:b17070", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004", "result": { - "@id": "_:b21899", + "@id": "_:b17079", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g004-out.jsonld", + "title": "Embed with indirect circular reference", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g004-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g004-in.jsonld", + "rdfs:comment": "Test embedded graphs" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g009-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15440", + "@id": "_:b13797", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g009-out.jsonld", - "title": "Recursive property embed w/o circular reference", - "rdfs:comment": "Test embedded graphs", "assertions": [ { - "@id": "_:b15441", + "@id": "_:b13801", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "result": { - "@id": "_:b20121", + "@id": "_:b25844", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b15444", + "@id": "_:b13802", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "result": { - "@id": "_:b21104", + "@id": "_:b21034", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b15445", + "@id": "_:b13795", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23464", + "@id": "_:b13796", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15447", + "@id": "_:b13799", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24999", + "@id": "_:b23400", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15438", + "@id": "_:b13800", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "result": { - "@id": "_:b15439", + "@id": "_:b25257", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15446", + "@id": "_:b13798", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3010", + "@id": "_:b22803", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15449", + "@id": "_:b13804", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25001", + "@id": "_:b26217", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15443", + "@id": "_:b13803", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "result": { - "@id": "_:b21781", + "@id": "_:b7354", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15448", + "@id": "_:b13805", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "result": { - "@id": "_:b25000", + "@id": "_:b25156", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15442", + "@id": "_:b13806", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005", "result": { - "@id": "_:b24998", + "@id": "_:b23101", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g005-out.jsonld", + "title": "Embed with indirect circular reference via set", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g005-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g005-in.jsonld", + "rdfs:comment": "Test embedded graphs" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g010-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11656", + "@id": "_:b15224", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g010-out.jsonld", - "title": "Framing blank node unnamed graphs", - "rdfs:comment": "Test embedded graphs", "assertions": [ { - "@id": "_:b11659", + "@id": "_:b15234", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "result": { - "@id": "_:b13219", + "@id": "_:b15243", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b11663", + "@id": "_:b15226", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "result": { - "@id": "_:b13223", + "@id": "_:b15236", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b11658", + "@id": "_:b15230", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13218", + "@id": "_:b15240", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11660", + "@id": "_:b15228", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13220", + "@id": "_:b15238", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11665", + "@id": "_:b15231", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "result": { - "@id": "_:b13224", + "@id": "_:b11466", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11657", + "@id": "_:b15232", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13217", + "@id": "_:b15241", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11664", + "@id": "_:b15227", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12149", + "@id": "_:b15237", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11654", + "@id": "_:b15225", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "result": { - "@id": "_:b11655", + "@id": "_:b15235", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11661", + "@id": "_:b15229", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "result": { - "@id": "_:b13221", + "@id": "_:b15239", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11662", + "@id": "_:b15233", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006", "result": { - "@id": "_:b13222", + "@id": "_:b15242", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g006-out.jsonld", + "title": "Embed with nested indirect circular reference via set", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g006-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g006-in.jsonld", + "rdfs:comment": "Test embedded graphs" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/in01-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17200", + "@id": "_:b4921", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/in01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/in01-out.jsonld", - "title": "Basic Included array", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b17206", + "@id": "_:b4928", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "result": { - "@id": "_:b25266", + "@id": "_:b25092", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b17204", + "@id": "_:b4923", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "result": { - "@id": "_:b22964", + "@id": "_:b14101", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b17208", + "@id": "_:b4924", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24426", + "@id": "_:b24868", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17207", + "@id": "_:b4926", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23616", + "@id": "_:b26473", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17205", + "@id": "_:b4930", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "result": { - "@id": "_:b11688", + "@id": "_:b24559", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17201", + "@id": "_:b4927", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19215", + "@id": "_:b7766", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17203", + "@id": "_:b4925", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23600", + "@id": "_:b23289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17198", + "@id": "_:b4919", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "result": { - "@id": "_:b17199", + "@id": "_:b4920", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17202", + "@id": "_:b4922", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "result": { - "@id": "_:b20469", + "@id": "_:b8223", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17209", + "@id": "_:b4929", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007", "result": { - "@id": "_:b25520", + "@id": "_:b8663", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g007-out.jsonld", + "title": "Multi-level simple embeds", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g007-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g007-in.jsonld", + "rdfs:comment": "Test embedded graphs" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/in02-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14946", + "@id": "_:b7558", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/in02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/in02-out.jsonld", - "title": "Basic Included object", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b14956", + "@id": "_:b7562", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "result": { - "@id": "_:b14966", + "@id": "_:b10864", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b14951", + "@id": "_:b7560", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "result": { - "@id": "_:b14961", + "@id": "_:b10862", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b14949", + "@id": "_:b7559", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14959", + "@id": "_:b9149", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14947", + "@id": "_:b7564", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14957", + "@id": "_:b10866", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14953", + "@id": "_:b7567", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "result": { - "@id": "_:b14963", + "@id": "_:b10869", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14952", + "@id": "_:b7565", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14962", + "@id": "_:b10867", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14948", + "@id": "_:b7556", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14958", + "@id": "_:b7557", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14955", + "@id": "_:b7566", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "result": { - "@id": "_:b14965", + "@id": "_:b10868", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14954", + "@id": "_:b7561", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "result": { - "@id": "_:b14964", + "@id": "_:b10863", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14950", + "@id": "_:b7563", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008", "result": { - "@id": "_:b14960", + "@id": "_:b10865", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g008-out.jsonld", + "title": "A tangle of nastiness", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g008-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g008-in.jsonld", + "rdfs:comment": "Test embedded graphs" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/in03-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9028", + "@id": "_:b19745", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/in03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/in03-out.jsonld", - "title": "json.api example", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b9033", + "@id": "_:b19747", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "result": { - "@id": "_:b26030", + "@id": "_:b24716", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b9026", + "@id": "_:b19748", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "result": { - "@id": "_:b9027", + "@id": "_:b25376", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b9034", + "@id": "_:b19746", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21697", + "@id": "_:b21650", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9030", + "@id": "_:b19752", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b907", + "@id": "_:b26879", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9029", + "@id": "_:b19750", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "result": { - "@id": "_:b14426", + "@id": "_:b25486", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9031", + "@id": "_:b19754", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25519", + "@id": "_:b26880", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9037", + "@id": "_:b19753", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21433", + "@id": "_:b22395", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9036", + "@id": "_:b19749", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "result": { - "@id": "_:b26606", + "@id": "_:b26271", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9032", + "@id": "_:b19743", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "result": { - "@id": "_:b25841", + "@id": "_:b19744", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9035", + "@id": "_:b19751", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009", "result": { - "@id": "_:b21533", + "@id": "_:b26878", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g009-out.jsonld", + "title": "Recursive property embed w/o circular reference", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g009-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g009-in.jsonld", + "rdfs:comment": "Test embedded graphs" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20708", + "@id": "_:b6302", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p020-out.jsonld", - "title": "Blank nodes in an array (prune bnodes)", - "rdfs:comment": "Empty frame matches all nodes at top-level, and repeats where embedded.", "assertions": [ { - "@id": "_:b20715", + "@id": "_:b6305", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "result": { - "@id": "_:b25618", + "@id": "_:b24120", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b20713", + "@id": "_:b6303", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "result": { - "@id": "_:b16282", + "@id": "_:b22891", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b20709", + "@id": "_:b6308", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24361", + "@id": "_:b25995", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20717", + "@id": "_:b6311", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25856", + "@id": "_:b23228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20711", + "@id": "_:b6300", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "result": { - "@id": "_:b26264", + "@id": "_:b6301", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20714", + "@id": "_:b6309", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13919", + "@id": "_:b23305", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20716", + "@id": "_:b6307", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22793", + "@id": "_:b19977", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20712", + "@id": "_:b6304", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "result": { - "@id": "_:b24493", + "@id": "_:b23507", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20710", + "@id": "_:b6306", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "result": { - "@id": "_:b25143", + "@id": "_:b23580", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20706", + "@id": "_:b6310", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010", "result": { - "@id": "_:b20707", + "@id": "_:b6239", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/g010-out.jsonld", + "title": "Framing blank node unnamed graphs", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/g010-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/g010-in.jsonld", + "rdfs:comment": "Test embedded graphs" }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2609", + "@id": "_:b4252", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p021-out.jsonld", - "title": "Blank nodes in @type (prune bnodes)", - "rdfs:comment": "Empty frame matches all nodes at top-level, and repeats where embedded (with list content).", "assertions": [ { - "@id": "_:b2611", + "@id": "_:b4257", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "result": { - "@id": "_:b12441", + "@id": "_:b6978", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b2617", + "@id": "_:b4255", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "result": { - "@id": "_:b12447", + "@id": "_:b24077", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b2616", + "@id": "_:b4261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12446", + "@id": "_:b7024", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2612", + "@id": "_:b4260", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12442", + "@id": "_:b22080", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2619", + "@id": "_:b4253", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "result": { - "@id": "_:b12449", + "@id": "_:b17920", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2618", + "@id": "_:b4259", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12448", + "@id": "_:b26504", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2615", + "@id": "_:b4256", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12445", + "@id": "_:b24133", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2610", + "@id": "_:b4258", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "result": { - "@id": "_:b12440", + "@id": "_:b26305", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2614", + "@id": "_:b4251", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "result": { - "@id": "_:b12444", + "@id": "_:b1359", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2613", + "@id": "_:b4254", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01", "result": { - "@id": "_:b12443", + "@id": "_:b22067", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/in01-out.jsonld", + "title": "Basic Included array", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/in01-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/in01-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15809", + "@id": "_:b13055", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0046-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p046-out.jsonld", - "title": "Merge graphs if no outer @graph is used (prune bnodes)", - "rdfs:comment": "Unless @graph exists at the top level, framing uses merged node objects.", "assertions": [ { - "@id": "_:b15811", + "@id": "_:b13062", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "result": { - "@id": "_:b8615", + "@id": "_:b22929", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b15813", + "@id": "_:b13057", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "result": { - "@id": "_:b26383", + "@id": "_:b23042", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b15816", + "@id": "_:b13060", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9136", + "@id": "_:b24781", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15815", + "@id": "_:b13063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24139", + "@id": "_:b24059", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15818", + "@id": "_:b13064", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "result": { - "@id": "_:b26446", + "@id": "_:b24601", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15812", + "@id": "_:b13054", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2906", + "@id": "_:b3049", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15817", + "@id": "_:b13061", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18641", + "@id": "_:b26151", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15810", + "@id": "_:b13058", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "result": { - "@id": "_:b17962", + "@id": "_:b24151", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15814", + "@id": "_:b13056", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "result": { - "@id": "_:b20816", + "@id": "_:b17173", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15808", + "@id": "_:b13059", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02", "result": { - "@id": "_:b13720", + "@id": "_:b24326", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/in02-out.jsonld", + "title": "Basic Included object", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/in02-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/in02-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b512", + "@id": "_:b4590", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p049-out.jsonld", - "title": "Merge one graph and deep preserve another (prune bnodes)", - "rdfs:comment": "@graph used within a property value frames embedded values from a named graph.", "assertions": [ { - "@id": "_:b514", + "@id": "_:b4588", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "result": { - "@id": "_:b11348", + "@id": "_:b4589", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b518", + "@id": "_:b4594", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "result": { - "@id": "_:b26079", + "@id": "_:b21684", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b520", + "@id": "_:b4597", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26549", + "@id": "_:b18948", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b515", + "@id": "_:b4599", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21897", + "@id": "_:b18099", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b516", + "@id": "_:b4595", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "result": { - "@id": "_:b25422", + "@id": "_:b21203", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b513", + "@id": "_:b4593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15393", + "@id": "_:b17373", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b522", + "@id": "_:b4591", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26113", + "@id": "_:b4967", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b519", + "@id": "_:b4592", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "result": { - "@id": "_:b24798", + "@id": "_:b21683", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b521", + "@id": "_:b4598", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "result": { - "@id": "_:b13923", + "@id": "_:b21686", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b517", + "@id": "_:b4596", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03", "result": { - "@id": "_:b20141", + "@id": "_:b21685", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/in03-out.jsonld", + "title": "json.api example", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/in03-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/in03-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/p050-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1021", + "@id": "_:b3704", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/p050-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p050-out.jsonld", - "title": "Prune blank nodes with alias of @id", - "rdfs:comment": "If @id is aliased in a frame, an unreferenced blank node is still pruned.", "assertions": [ { - "@id": "_:b1025", + "@id": "_:b3705", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "result": { - "@id": "_:b20596", + "@id": "_:b6551", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b1019", + "@id": "_:b3711", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "result": { - "@id": "_:b1020", + "@id": "_:b22466", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b1029", + "@id": "_:b3708", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20598", + "@id": "_:b18371", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1030", + "@id": "_:b3707", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13362", + "@id": "_:b19843", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1028", + "@id": "_:b3710", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "result": { - "@id": "_:b19218", + "@id": "_:b22465", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1022", + "@id": "_:b3713", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13960", + "@id": "_:b22271", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1023", + "@id": "_:b3712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16250", + "@id": "_:b22467", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1024", + "@id": "_:b3706", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "result": { - "@id": "_:b20595", + "@id": "_:b15042", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1027", + "@id": "_:b3709", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "result": { - "@id": "_:b12812", + "@id": "_:b22464", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1026", + "@id": "_:b3714", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020", "result": { - "@id": "_:b20597", + "@id": "_:b21205", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p020-out.jsonld", + "title": "Blank nodes in an array (prune bnodes)", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld", + "rdfs:comment": "Empty frame matches all nodes at top-level, and repeats where embedded." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/ra01-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2487", + "@id": "_:b9975", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/ra01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/ra01-out.jsonld", - "title": "@requireAll only matches if @type and other properties are present", - "rdfs:comment": "If @requireAll is true, then all listed properties, including @type, must be present to match.", "assertions": [ { - "@id": "_:b2494", + "@id": "_:b9976", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "result": { - "@id": "_:b23768", + "@id": "_:b12101", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b2493", + "@id": "_:b9983", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "result": { - "@id": "_:b26525", + "@id": "_:b22911", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b2496", + "@id": "_:b9980", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26290", + "@id": "_:b23815", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2489", + "@id": "_:b9977", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1571", + "@id": "_:b18258", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2488", + "@id": "_:b9973", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "result": { - "@id": "_:b18550", + "@id": "_:b9974", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2490", + "@id": "_:b9981", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24845", + "@id": "_:b24070", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2492", + "@id": "_:b9984", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26088", + "@id": "_:b18897", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2485", + "@id": "_:b9978", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "result": { - "@id": "_:b2486", + "@id": "_:b22843", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2495", + "@id": "_:b9982", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "result": { - "@id": "_:b22151", + "@id": "_:b21937", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2491", + "@id": "_:b9979", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021", "result": { - "@id": "_:b25465", + "@id": "_:b22839", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p021-out.jsonld", + "title": "Blank nodes in @type (prune bnodes)", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld", + "rdfs:comment": "Empty frame matches all nodes at top-level, and repeats where embedded (with list content)." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/ra02-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5991", + "@id": "_:b15624", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/ra02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/ra02-out.jsonld", - "title": "@requireAll only matches if @id and @type match", - "rdfs:comment": "If @requireAll is true, then all listed properties, including @id and @type, must be present to match.", "assertions": [ { - "@id": "_:b5996", + "@id": "_:b15625", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "result": { - "@id": "_:b6006", + "@id": "_:b16020", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b5997", + "@id": "_:b15631", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "result": { - "@id": "_:b6007", + "@id": "_:b25804", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b5994", + "@id": "_:b15626", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6004", + "@id": "_:b20918", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5993", + "@id": "_:b15630", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6003", + "@id": "_:b25521", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6000", + "@id": "_:b15633", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "result": { - "@id": "_:b6010", + "@id": "_:b2143", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5999", + "@id": "_:b15628", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6009", + "@id": "_:b20292", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5995", + "@id": "_:b15627", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6005", + "@id": "_:b23851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5998", + "@id": "_:b15632", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "result": { - "@id": "_:b6008", + "@id": "_:b6285", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6001", + "@id": "_:b15629", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "result": { - "@id": "_:b6011", + "@id": "_:b23799", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5992", + "@id": "_:b15622", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046", "result": { - "@id": "_:b6002", + "@id": "_:b15623", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p046-out.jsonld", + "title": "Merge graphs if no outer @graph is used (prune bnodes)", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0046-in.jsonld", + "rdfs:comment": "Unless @graph exists at the top level, framing uses merged node objects." }, { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#frame": { - "@id": "https://w3c.github.io/json-ld-framing/tests/frame/ra03-frame.jsonld" - }, "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19002", + "@id": "_:b13119", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/ra03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/ra03-out.jsonld", - "title": "@requireAll with type and properties", - "rdfs:comment": "If @requireAll is true, then all listed properties, including @type, must be present to match.", "assertions": [ { - "@id": "_:b19009", + "@id": "_:b13129", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "result": { - "@id": "_:b23781", + "@id": "_:b13139", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b19004", + "@id": "_:b13125", "@type": "Assertion", - "subject": "https://framagit.org/tyreunom/guile-jsonld", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "result": { - "@id": "_:b23786", + "@id": "_:b13135", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", + "subject": "https://framagit.org/tyreunom/guile-jsonld", "assertedBy": null }, { - "@id": "_:b19007", + "@id": "_:b13127", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20855", + "@id": "_:b13137", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19010", + "@id": "_:b13128", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24202", + "@id": "_:b13138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19011", + "@id": "_:b13122", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "result": { - "@id": "_:b24546", + "@id": "_:b13132", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19006", + "@id": "_:b13124", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11423", + "@id": "_:b13134", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19003", + "@id": "_:b13120", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23519", + "@id": "_:b13130", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19000", + "@id": "_:b13123", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "result": { - "@id": "_:b19001", + "@id": "_:b13133", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19008", + "@id": "_:b13126", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "result": { - "@id": "_:b26587", + "@id": "_:b13136", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19005", + "@id": "_:b13121", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049", "result": { - "@id": "_:b25663", + "@id": "_:b13131", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - } - ], - "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-framing/tests/", - "title": "Framing", - "rdfs:comment": "These tests implement the requirements for the JSON-LD [Framing Algorithm](https://www.w3.org/TR/json-ld11-framing/#framing-algorithm)." - }, - { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest", - "@type": [ - "mf:Manifest", - "Report" - ], - "entries": [ + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p049-out.jsonld", + "title": "Merge one graph and deep preserve another (prune bnodes)", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld", + "rdfs:comment": "@graph used within a property value frames embedded values from a named graph." + }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0001-out.jsonld", - "title": "drop free-floating nodes", - "rdfs:comment": "Expand drops unreferenced nodes having only @id", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7041", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b16303", + "@id": "_:b11444", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "result": { - "@id": "_:b26932", + "@id": "_:b20817", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16302", + "@id": "_:b11441", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "result": { - "@id": "_:b21858", + "@id": "_:b12650", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": null }, { - "@id": "_:b16300", + "@id": "_:b11442", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22689", + "@id": "_:b13682", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16304", + "@id": "_:b11446", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17069", + "@id": "_:b25300", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16307", + "@id": "_:b11448", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "result": { - "@id": "_:b22398", + "@id": "_:b23533", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16306", + "@id": "_:b11449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25276", + "@id": "_:b25302", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16301", + "@id": "_:b11445", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19084", + "@id": "_:b23868", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16299", + "@id": "_:b11439", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "result": { - "@id": "_:b22510", + "@id": "_:b11440", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16297", + "@id": "_:b11447", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "result": { - "@id": "_:b16298", + "@id": "_:b25301", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16305", + "@id": "_:b11443", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050", "result": { - "@id": "_:b2641", + "@id": "_:b16930", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/p050-out.jsonld", + "title": "Prune blank nodes with alias of @id", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/p050-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/p050-in.jsonld", + "rdfs:comment": "If @id is aliased in a frame, an unreferenced blank node is still pruned." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0002-out.jsonld", - "title": "basic", - "rdfs:comment": "Expanding terms with different types of values", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8605", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12831", + "@id": "_:b8610", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "result": { - "@id": "_:b22428", + "@id": "_:b13432", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12824", + "@id": "_:b8606", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "result": { - "@id": "_:b12825", + "@id": "_:b7518", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": null }, { - "@id": "_:b12827", + "@id": "_:b8611", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21806", + "@id": "_:b13433", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12828", + "@id": "_:b8609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16980", + "@id": "_:b13431", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12832", + "@id": "_:b8603", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "result": { - "@id": "_:b21339", + "@id": "_:b8604", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12826", + "@id": "_:b8608", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20985", + "@id": "_:b13430", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12834", + "@id": "_:b8612", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26496", + "@id": "_:b13434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12833", + "@id": "_:b8607", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "result": { - "@id": "_:b10833", + "@id": "_:b13429", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12830", + "@id": "_:b8613", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "result": { - "@id": "_:b25725", + "@id": "_:b13031", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12829", + "@id": "_:b8614", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01", "result": { - "@id": "_:b22039", + "@id": "_:b12745", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/ra01-out.jsonld", + "title": "@requireAll only matches if @type and other properties are present", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/ra01-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/ra01-in.jsonld", + "rdfs:comment": "If @requireAll is true, then all listed properties, including @type, must be present to match." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0003-out.jsonld", - "title": "drop null and unmapped properties", - "rdfs:comment": "Verifies that null values and unmapped properties are removed from expanded output", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b11423", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2504", + "@id": "_:b11429", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "result": { - "@id": "_:b11439", + "@id": "_:b22326", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2502", + "@id": "_:b11427", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "result": { - "@id": "_:b11437", + "@id": "_:b22324", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": null }, { - "@id": "_:b2506", + "@id": "_:b11426", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11441", + "@id": "_:b22323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2509", + "@id": "_:b11430", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11443", + "@id": "_:b7043", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2503", + "@id": "_:b11431", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "result": { - "@id": "_:b11438", + "@id": "_:b22327", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2507", + "@id": "_:b11424", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11442", + "@id": "_:b18458", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2499", + "@id": "_:b11421", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2500", + "@id": "_:b11422", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2501", + "@id": "_:b11428", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "result": { - "@id": "_:b11436", + "@id": "_:b22325", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2508", + "@id": "_:b11425", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "result": { - "@id": "_:b7179", + "@id": "_:b22322", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2505", + "@id": "_:b11432", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02", "result": { - "@id": "_:b11440", + "@id": "_:b22328", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/ra02-out.jsonld", + "title": "@requireAll only matches if @id and @type match", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/ra02-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/ra02-in.jsonld", + "rdfs:comment": "If @requireAll is true, then all listed properties, including @id and @type, must be present to match." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", + "@id": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#FrameTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0004-out.jsonld", - "title": "optimize @set, keep empty arrays", - "rdfs:comment": "Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10339", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b3378", + "@id": "_:b10346", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "result": { - "@id": "_:b23915", + "@id": "_:b21779", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3381", + "@id": "_:b10348", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "result": { - "@id": "_:b24805", + "@id": "_:b24919", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": null }, { - "@id": "_:b3374", + "@id": "_:b10340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3375", + "@id": "_:b18046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3380", + "@id": "_:b10349", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22381", + "@id": "_:b22750", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3377", + "@id": "_:b10341", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "result": { - "@id": "_:b16983", + "@id": "_:b20489", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3376", + "@id": "_:b10347", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8352", + "@id": "_:b21648", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3384", + "@id": "_:b10345", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17149", + "@id": "_:b25664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3382", + "@id": "_:b10343", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "result": { - "@id": "_:b25251", + "@id": "_:b22337", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3383", + "@id": "_:b10342", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "result": { - "@id": "_:b25252", + "@id": "_:b23402", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3379", + "@id": "_:b10344", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03", "result": { - "@id": "_:b24714", + "@id": "_:b25223", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - }, + ], + "testResult": "https://w3c.github.io/json-ld-framing/tests/frame/ra03-out.jsonld", + "title": "@requireAll with type and properties", + "https://w3c.github.io/json-ld-api/tests/vocab#frame": { + "@id": "https://w3c.github.io/json-ld-framing/tests/frame/ra03-frame.jsonld" + }, + "testAction": "https://w3c.github.io/json-ld-framing/tests/frame/ra03-in.jsonld", + "rdfs:comment": "If @requireAll is true, then all listed properties, including @type, must be present to match." + } + ], + "title": "Framing", + "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-framing/tests/", + "rdfs:comment": "These tests implement the requirements for the JSON-LD [Framing Algorithm](https://www.w3.org/TR/json-ld11-framing/#framing-algorithm)." + }, + { + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest", + "@type": [ + "Report", + "mf:Manifest" + ], + "entries": [ { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0005-out.jsonld", - "title": "do not expand aliased @id/@type", - "rdfs:comment": "If a keyword is aliased, it is not used when expanding", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b13523", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b18995", + "@id": "_:b20503", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "result": { - "@id": "_:b26166", + "@id": "_:b25556", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18997", + "@id": "_:b20500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26981", + "@id": "_:b18351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18991", + "@id": "_:b20496", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "result": { - "@id": "_:b12997", + "@id": "_:b21112", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b18998", + "@id": "_:b20504", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16379", + "@id": "_:b25557", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18996", + "@id": "_:b20497", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "result": { - "@id": "_:b24172", + "@id": "_:b3643", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18990", + "@id": "_:b20502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23953", + "@id": "_:b23025", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18988", + "@id": "_:b20501", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18989", + "@id": "_:b25306", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18993", + "@id": "_:b20498", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "result": { - "@id": "_:b13890", + "@id": "_:b25554", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18994", + "@id": "_:b20499", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "result": { - "@id": "_:b26261", + "@id": "_:b25555", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18992", + "@id": "_:b20495", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", "result": { - "@id": "_:b22539", + "@id": "_:b4424", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld", + "title": "Expands embedded JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e001-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0006-out.jsonld", - "title": "alias keywords", - "rdfs:comment": "Aliased keywords expand in resulting document", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5521", + "https://w3c.github.io/json-ld-api/tests/vocab#contentType": "application/xhtml+xml", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b15188", + "@id": "_:b5523", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "result": { - "@id": "_:b23246", + "@id": "_:b21160", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15191", + "@id": "_:b5525", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14994", + "@id": "_:b23314", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15183", + "@id": "_:b5522", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "result": { - "@id": "_:b15184", + "@id": "_:b13936", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b15193", + "@id": "_:b5529", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23249", + "@id": "_:b18286", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15186", + "@id": "_:b5524", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "result": { - "@id": "_:b23119", + "@id": "_:b23313", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15185", + "@id": "_:b5526", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23178", + "@id": "_:b23315", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15187", + "@id": "_:b5530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23245", + "@id": "_:b20613", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15190", + "@id": "_:b5519", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "result": { - "@id": "_:b23248", + "@id": "_:b5520", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15192", + "@id": "_:b5528", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "result": { - "@id": "_:b20738", + "@id": "_:b23316", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15189", + "@id": "_:b5527", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", "result": { - "@id": "_:b23247", + "@id": "_:b22673", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld", + "title": "Expands embedded JSON-LD script element (xhtml)", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e001-in.html", + "rdfs:comment": "Tests embedded JSON-LD in XHTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0007-out.jsonld", - "title": "date type-coercion", - "rdfs:comment": "Expand strings to expanded value with @type: xsd:dateTime", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b11105", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b477", + "@id": "_:b11112", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "result": { - "@id": "_:b487", + "@id": "_:b6614", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b474", + "@id": "_:b11113", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b484", + "@id": "_:b26247", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b473", + "@id": "_:b11108", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "result": { - "@id": "_:b483", + "@id": "_:b25822", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b476", + "@id": "_:b11106", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b486", + "@id": "_:b16876", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b478", + "@id": "_:b11111", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "result": { - "@id": "_:b488", + "@id": "_:b11182", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b471", + "@id": "_:b11107", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b481", + "@id": "_:b23612", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b472", + "@id": "_:b11110", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b482", + "@id": "_:b21710", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b480", + "@id": "_:b11109", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "result": { - "@id": "_:b490", + "@id": "_:b26006", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b479", + "@id": "_:b11114", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "result": { - "@id": "_:b489", + "@id": "_:b20574", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b475", + "@id": "_:b11104", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", "result": { - "@id": "_:b485", + "@id": "_:b9628", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e002-out.jsonld", + "title": "Expands first embedded JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e002-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0008-out.jsonld", - "title": "@value with @language", - "rdfs:comment": "Keep expanded values with @language, drop non-conforming value objects containing just @language", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b928", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b14905", + "@id": "_:b933", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "result": { - "@id": "_:b6655", + "@id": "_:b25752", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14901", + "@id": "_:b934", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23374", + "@id": "_:b23323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14900", + "@id": "_:b931", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "result": { - "@id": "_:b21371", + "@id": "_:b18875", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b14899", + "@id": "_:b936", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14579", + "@id": "_:b16989", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14902", + "@id": "_:b926", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "result": { - "@id": "_:b23375", + "@id": "_:b927", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14903", + "@id": "_:b932", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15365", + "@id": "_:b19934", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14898", + "@id": "_:b935", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17866", + "@id": "_:b7379", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14896", + "@id": "_:b930", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "result": { - "@id": "_:b14897", + "@id": "_:b12607", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14904", + "@id": "_:b929", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "result": { - "@id": "_:b16531", + "@id": "_:b5421", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14906", + "@id": "_:b937", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", "result": { - "@id": "_:b21648", + "@id": "_:b25272", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e003-out.jsonld", + "title": "Expands targeted JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e003-in.html#second", + "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0009-out.jsonld", - "title": "@graph with terms", - "rdfs:comment": "Use of @graph to contain multiple nodes within array", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3467", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } + }, "assertions": [ { - "@id": "_:b19539", + "@id": "_:b3472", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "result": { - "@id": "_:b20071", + "@id": "_:b26722", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19531", + "@id": "_:b3469", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19532", + "@id": "_:b21191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19537", + "@id": "_:b3471", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "result": { - "@id": "_:b20436", + "@id": "_:b19782", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b19536", + "@id": "_:b3468", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24047", + "@id": "_:b14390", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19541", + "@id": "_:b3470", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "result": { - "@id": "_:b24341", + "@id": "_:b20409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19535", + "@id": "_:b3473", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23501", + "@id": "_:b26385", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19538", + "@id": "_:b3476", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26632", + "@id": "_:b17088", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19533", + "@id": "_:b3475", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "result": { - "@id": "_:b20407", + "@id": "_:b18432", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19534", + "@id": "_:b3465", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "result": { - "@id": "_:b22887", + "@id": "_:b3466", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19540", + "@id": "_:b3474", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", "result": { - "@id": "_:b12873", + "@id": "_:b26260", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e004-out.jsonld", + "title": "Expands all embedded JSON-LD script elements with extractAllScripts option", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e004-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0010-out.jsonld", - "title": "native types", - "rdfs:comment": "Expanding native scalar retains native scalar within expanded value", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7417", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } + }, "assertions": [ { - "@id": "_:b3389", + "@id": "_:b19758", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "result": { - "@id": "_:b23322", + "@id": "_:b21701", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3393", + "@id": "_:b19761", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25868", + "@id": "_:b23111", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3395", + "@id": "_:b19763", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "result": { - "@id": "_:b26666", + "@id": "_:b23113", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b3396", + "@id": "_:b19762", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6257", + "@id": "_:b23112", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3386", + "@id": "_:b19766", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "result": { - "@id": "_:b3387", + "@id": "_:b23115", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3391", + "@id": "_:b19759", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22486", + "@id": "_:b23109", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3392", + "@id": "_:b19760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9823", + "@id": "_:b23110", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3394", + "@id": "_:b19764", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "result": { - "@id": "_:b26665", + "@id": "_:b21983", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3390", + "@id": "_:b19765", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "result": { - "@id": "_:b24251", + "@id": "_:b23114", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3388", + "@id": "_:b19767", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", "result": { - "@id": "_:b21812", + "@id": "_:b23116", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e005-out.jsonld", + "title": "Expands multiple embedded JSON-LD script elements where one is an array", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e005-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements with array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0011-out.jsonld", - "title": "coerced @id", - "rdfs:comment": "A value of a property with @type: @id coercion expands to a node reference", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14041", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b21123", + "@id": "_:b14046", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "result": { - "@id": "_:b26198", + "@id": "_:b25054", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b21117", + "@id": "_:b14048", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22406", + "@id": "_:b1486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21115", + "@id": "_:b14044", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "result": { - "@id": "_:b22466", + "@id": "_:b23592", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b21121", + "@id": "_:b14040", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15935", + "@id": "_:b10443", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21122", + "@id": "_:b14042", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "result": { - "@id": "_:b14830", + "@id": "_:b20392", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21118", + "@id": "_:b14043", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12930", + "@id": "_:b22842", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21113", + "@id": "_:b14050", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21114", + "@id": "_:b23266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21116", + "@id": "_:b14047", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "result": { - "@id": "_:b17959", + "@id": "_:b18260", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b21119", + "@id": "_:b14049", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "result": { - "@id": "_:b1329", + "@id": "_:b25055", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21120", + "@id": "_:b14045", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", "result": { - "@id": "_:b2183", + "@id": "_:b24545", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "loading document failed", + "title": "Expands as empty with no embedded JSON-LD script elements", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e006-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML when none exist" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0012-out.jsonld", - "title": "@graph with embed", - "rdfs:comment": "Use of @graph to contain multiple nodes within array", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10446", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } + }, "assertions": [ { - "@id": "_:b1811", + "@id": "_:b10455", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "result": { - "@id": "_:b1812", + "@id": "_:b4983", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1816", + "@id": "_:b10444", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17969", + "@id": "_:b10445", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1819", + "@id": "_:b10453", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "result": { - "@id": "_:b25052", + "@id": "_:b26037", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b1820", + "@id": "_:b10452", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25053", + "@id": "_:b25814", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1817", + "@id": "_:b10451", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "result": { - "@id": "_:b24324", + "@id": "_:b25437", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1818", + "@id": "_:b10448", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25051", + "@id": "_:b19708", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1815", + "@id": "_:b10454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24846", + "@id": "_:b23586", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1821", + "@id": "_:b10450", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "result": { - "@id": "_:b4147", + "@id": "_:b18453", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1813", + "@id": "_:b10449", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "result": { - "@id": "_:b14591", + "@id": "_:b22809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1814", + "@id": "_:b10447", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", "result": { - "@id": "_:b24120", + "@id": "_:b17658", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e007-out.jsonld", + "title": "Expands as empty with no embedded JSON-LD script elements and extractAllScripts", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e007-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML when none exist extracting all elements" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0013-out.jsonld", - "title": "expand already expanded", - "rdfs:comment": "Expand does not mess up already expanded document", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1714", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b114", + "@id": "_:b1717", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "result": { - "@id": "_:b19960", + "@id": "_:b22753", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b120", + "@id": "_:b1715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24848", + "@id": "_:b17595", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b117", + "@id": "_:b1722", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "result": { - "@id": "_:b19413", + "@id": "_:b24042", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b116", + "@id": "_:b1716", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23702", + "@id": "_:b22442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b119", + "@id": "_:b1719", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "result": { - "@id": "_:b24847", + "@id": "_:b24040", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b118", + "@id": "_:b1721", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20773", + "@id": "_:b24041", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b122", + "@id": "_:b1712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24849", + "@id": "_:b1713", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b113", + "@id": "_:b1723", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "result": { - "@id": "_:b2457", + "@id": "_:b24043", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b115", + "@id": "_:b1718", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "result": { - "@id": "_:b20481", + "@id": "_:b23388", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b121", + "@id": "_:b1720", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", "result": { - "@id": "_:b24838", + "@id": "_:b1121", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e010-out.jsonld", + "title": "Expands embedded JSON-LD script element with HTML character references", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e010-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML with character references" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0014-out.jsonld", - "title": "@set of @value objects with keyword aliases", - "rdfs:comment": "Expanding aliased @set and @value", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b17897", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b16553", + "@id": "_:b17904", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "result": { - "@id": "_:b16554", + "@id": "_:b17912", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16558", + "@id": "_:b17905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24959", + "@id": "_:b17913", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16557", + "@id": "_:b17902", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "result": { - "@id": "_:b24601", + "@id": "_:b17910", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b16559", + "@id": "_:b17901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22495", + "@id": "_:b15931", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16561", + "@id": "_:b17906", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "result": { - "@id": "_:b24425", + "@id": "_:b17914", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16556", + "@id": "_:b17903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22746", + "@id": "_:b17911", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16560", + "@id": "_:b17899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24960", + "@id": "_:b17909", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16563", + "@id": "_:b17900", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "result": { - "@id": "_:b18024", + "@id": "_:b11363", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16562", + "@id": "_:b17898", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "result": { - "@id": "_:b24961", + "@id": "_:b17908", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16555", + "@id": "_:b17907", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", "result": { - "@id": "_:b20480", + "@id": "_:b17915", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "loading document failed", + "title": "Errors if no element found at target", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e011-in.html#third", + "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0015-out.jsonld", - "title": "collapse set of sets, keep empty lists", - "rdfs:comment": "An array of multiple @set nodes are collapsed into a single array", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16937", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b3578", + "@id": "_:b16938", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "result": { - "@id": "_:b24450", + "@id": "_:b17797", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3577", + "@id": "_:b16940", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25657", + "@id": "_:b25703", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3571", + "@id": "_:b16945", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "result": { - "@id": "_:b14504", + "@id": "_:b26895", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b3573", + "@id": "_:b16942", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25181", + "@id": "_:b26752", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3572", + "@id": "_:b16935", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "result": { - "@id": "_:b23453", + "@id": "_:b16936", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3576", + "@id": "_:b16943", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25656", + "@id": "_:b2448", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3575", + "@id": "_:b16946", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25655", + "@id": "_:b18211", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3579", + "@id": "_:b16939", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "result": { - "@id": "_:b19925", + "@id": "_:b25134", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3574", + "@id": "_:b16944", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "result": { - "@id": "_:b25654", + "@id": "_:b25509", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3580", + "@id": "_:b16941", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", "result": { - "@id": "_:b13773", + "@id": "_:b26386", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "loading document failed", + "title": "Errors if targeted element is not a script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e012-in.html#first", + "rdfs:comment": "Tests embedded JSON-LD in HTML which isn't a script element" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0016-out.jsonld", - "title": "context reset", - "rdfs:comment": "Setting @context to null within an embedded object resets back to initial context state", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6915", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b20180", + "@id": "_:b6918", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "result": { - "@id": "_:b19788", + "@id": "_:b22036", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b20179", + "@id": "_:b6916", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21990", + "@id": "_:b7418", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20178", + "@id": "_:b6922", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "result": { - "@id": "_:b22267", + "@id": "_:b25153", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b20176", + "@id": "_:b6921", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22584", + "@id": "_:b26724", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20181", + "@id": "_:b6917", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "result": { - "@id": "_:b22585", + "@id": "_:b17124", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20177", + "@id": "_:b6913", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25103", + "@id": "_:b6914", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20182", + "@id": "_:b6924", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25224", + "@id": "_:b22394", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20175", + "@id": "_:b6919", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "result": { - "@id": "_:b21472", + "@id": "_:b25697", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20174", + "@id": "_:b6923", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "result": { - "@id": "_:b20654", + "@id": "_:b11995", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20172", + "@id": "_:b6920", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", "result": { - "@id": "_:b20173", + "@id": "_:b22871", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "loading document failed", + "title": "Errors if targeted element does not have type application/ld+json", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e013-in.html#first", + "rdfs:comment": "Tests embedded JSON-LD in HTML with wrong type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0017-out.jsonld", - "title": "@graph and @id aliased", - "rdfs:comment": "Expanding with @graph and @id aliases", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6397", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b18218", + "@id": "_:b10086", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "result": { - "@id": "_:b23459", + "@id": "_:b23169", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18210", + "@id": "_:b10080", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21276", + "@id": "_:b10081", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18211", + "@id": "_:b10088", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "result": { - "@id": "_:b23454", + "@id": "_:b23171", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b18219", + "@id": "_:b10089", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23460", + "@id": "_:b20672", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18217", + "@id": "_:b10084", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "result": { - "@id": "_:b23458", + "@id": "_:b23168", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18212", + "@id": "_:b10082", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23455", + "@id": "_:b20784", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18216", + "@id": "_:b10085", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15971", + "@id": "_:b19321", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18215", + "@id": "_:b10087", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "result": { - "@id": "_:b20916", + "@id": "_:b23170", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18213", + "@id": "_:b10083", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "result": { - "@id": "_:b23456", + "@id": "_:b22164", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18214", + "@id": "_:b10090", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", "result": { - "@id": "_:b23457", + "@id": "_:b22477", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid script element", + "title": "Errors if uncommented script text contains comment", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e014-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML with comments leftover" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0018-out.jsonld", - "title": "override default @language", - "rdfs:comment": "override default @language in terms; only language-tag strings", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3930", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b14819", + "@id": "_:b3936", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "result": { - "@id": "_:b14820", + "@id": "_:b25897", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14822", + "@id": "_:b3931", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19979", + "@id": "_:b14484", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14824", + "@id": "_:b3937", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "result": { - "@id": "_:b24996", + "@id": "_:b26288", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b14823", + "@id": "_:b3928", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8811", + "@id": "_:b3929", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14825", + "@id": "_:b3932", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "result": { - "@id": "_:b16043", + "@id": "_:b23667", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14827", + "@id": "_:b3938", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3683", + "@id": "_:b16840", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14828", + "@id": "_:b3939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19318", + "@id": "_:b9355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14826", + "@id": "_:b3933", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "result": { - "@id": "_:b25977", + "@id": "_:b23973", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14821", + "@id": "_:b3935", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "result": { - "@id": "_:b18628", + "@id": "_:b25813", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14829", + "@id": "_:b3934", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", "result": { - "@id": "_:b23379", + "@id": "_:b25489", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid script element", + "title": "Errors if end comment missing", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e015-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML with unballanced comments" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0019-out.jsonld", - "title": "remove @value = null", - "rdfs:comment": "Expanding a value of null removes the value", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14195", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b2454", + "@id": "_:b14202", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "result": { - "@id": "_:b20207", + "@id": "_:b18187", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2451", + "@id": "_:b14203", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20205", + "@id": "_:b23537", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2448", + "@id": "_:b14196", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "result": { - "@id": "_:b5501", + "@id": "_:b9488", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b2456", + "@id": "_:b14193", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15231", + "@id": "_:b14194", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2446", + "@id": "_:b14201", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "result": { - "@id": "_:b2447", + "@id": "_:b23536", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2452", + "@id": "_:b14197", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20206", + "@id": "_:b22391", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2449", + "@id": "_:b14198", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13071", + "@id": "_:b14122", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2450", + "@id": "_:b14204", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "result": { - "@id": "_:b20204", + "@id": "_:b21952", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2455", + "@id": "_:b14200", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "result": { - "@id": "_:b4840", + "@id": "_:b23535", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2453", + "@id": "_:b14199", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", "result": { - "@id": "_:b1617", + "@id": "_:b23226", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid script element", + "title": "Errors if start comment missing", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e016-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML with unballanced comments" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0020-out.jsonld", - "title": "do not remove @graph if not at top-level", - "rdfs:comment": "@graph used under a node is retained", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5969", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b4595", + "@id": "_:b5978", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "result": { - "@id": "_:b26568", + "@id": "_:b8032", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4594", + "@id": "_:b5970", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26187", + "@id": "_:b13942", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4591", + "@id": "_:b5973", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "result": { - "@id": "_:b24358", + "@id": "_:b24473", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b4592", + "@id": "_:b5979", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8083", + "@id": "_:b11102", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4593", + "@id": "_:b5975", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "result": { - "@id": "_:b24436", + "@id": "_:b15540", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4597", + "@id": "_:b5974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16057", + "@id": "_:b24981", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4596", + "@id": "_:b5976", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26794", + "@id": "_:b25650", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4590", + "@id": "_:b5971", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "result": { - "@id": "_:b23796", + "@id": "_:b16353", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4587", + "@id": "_:b5977", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "result": { - "@id": "_:b4588", + "@id": "_:b2689", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4589", + "@id": "_:b5972", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", "result": { - "@id": "_:b20766", + "@id": "_:b20577", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid script element", + "title": "Errors if uncommented script is not valid JSON", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e017-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML which is invalid JSON" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0021-out.jsonld", - "title": "do not remove @graph at top-level if not only property", - "rdfs:comment": "@graph used at the top level is retained if there are other properties", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5080", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b14429", + "@id": "_:b5088", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "result": { - "@id": "_:b19421", + "@id": "_:b12767", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14436", + "@id": "_:b5085", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24689", + "@id": "_:b22726", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14428", + "@id": "_:b5082", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "result": { - "@id": "_:b16821", + "@id": "_:b17664", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b14430", + "@id": "_:b5084", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21877", + "@id": "_:b23049", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14434", + "@id": "_:b5083", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "result": { - "@id": "_:b23319", + "@id": "_:b19572", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14431", + "@id": "_:b5087", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22442", + "@id": "_:b25526", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14432", + "@id": "_:b5081", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23838", + "@id": "_:b12167", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14435", + "@id": "_:b5086", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "result": { - "@id": "_:b24688", + "@id": "_:b26366", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14433", + "@id": "_:b5078", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "result": { - "@id": "_:b24687", + "@id": "_:b5079", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14427", + "@id": "_:b5089", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", "result": { - "@id": "_:b11135", + "@id": "_:b26352", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e018-out.jsonld", + "title": "Expands embedded JSON-LD script element relative to document base", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e018-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0022-out.jsonld", - "title": "expand value with default language", - "rdfs:comment": "Expanding with a default language applies that language to string values", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3838", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://a.example.com/doc" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b7097", + "@id": "_:b3844", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "result": { - "@id": "_:b10712", + "@id": "_:b26669", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7096", + "@id": "_:b3836", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24544", + "@id": "_:b3837", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7091", + "@id": "_:b3846", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "result": { - "@id": "_:b22921", + "@id": "_:b26998", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b7092", + "@id": "_:b3841", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22567", + "@id": "_:b18959", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7093", + "@id": "_:b3847", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "result": { - "@id": "_:b25125", + "@id": "_:b17225", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7089", + "@id": "_:b3842", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12870", + "@id": "_:b26167", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7094", + "@id": "_:b3843", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25816", + "@id": "_:b24666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7087", + "@id": "_:b3839", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "result": { - "@id": "_:b7088", + "@id": "_:b16719", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7090", + "@id": "_:b3840", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "result": { - "@id": "_:b15915", + "@id": "_:b21111", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7095", + "@id": "_:b3845", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", "result": { - "@id": "_:b9655", + "@id": "_:b25974", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e019-out.jsonld", + "title": "Expands embedded JSON-LD script element relative to base option", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e019-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0023-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0023-out.jsonld", - "title": "Expanding list/set with coercion", - "rdfs:comment": "Expanding lists and sets with properties having coercion coerces list/set values", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b532", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://a.example.com/doc" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b22548", + "@id": "_:b542", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "result": { - "@id": "_:b19963", + "@id": "_:b552", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b22549", + "@id": "_:b537", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21727", + "@id": "_:b547", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22546", + "@id": "_:b535", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "result": { - "@id": "_:b24552", + "@id": "_:b545", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b22544", + "@id": "_:b540", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9825", + "@id": "_:b550", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22550", + "@id": "_:b538", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "result": { - "@id": "_:b26418", + "@id": "_:b548", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22545", + "@id": "_:b536", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18043", + "@id": "_:b546", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22551", + "@id": "_:b541", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18826", + "@id": "_:b551", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22547", + "@id": "_:b539", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "result": { - "@id": "_:b23079", + "@id": "_:b549", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b22542", + "@id": "_:b533", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "result": { - "@id": "_:b22543", + "@id": "_:b543", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22552", + "@id": "_:b534", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", "result": { - "@id": "_:b24649", + "@id": "_:b544", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e020-out.jsonld", + "title": "Expands embedded JSON-LD script element relative to HTML base", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e020-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0024-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0024-out.jsonld", - "title": "Multiple contexts", - "rdfs:comment": "Tests that contexts in an array are merged", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12935", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://a.example.com/doc" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b595", + "@id": "_:b12942", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "result": { - "@id": "_:b605", + "@id": "_:b21554", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b596", + "@id": "_:b12937", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b606", + "@id": "_:b10201", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b592", + "@id": "_:b12941", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "result": { - "@id": "_:b602", + "@id": "_:b21186", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b591", + "@id": "_:b12940", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b601", + "@id": "_:b18065", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b597", + "@id": "_:b12943", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "result": { - "@id": "_:b607", + "@id": "_:b21555", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b598", + "@id": "_:b12936", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b608", + "@id": "_:b13283", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b590", + "@id": "_:b12938", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b600", + "@id": "_:b18808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b593", + "@id": "_:b12944", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "result": { - "@id": "_:b603", + "@id": "_:b21556", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b589", + "@id": "_:b12939", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "result": { - "@id": "_:b599", + "@id": "_:b20487", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b594", + "@id": "_:b12933", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", "result": { - "@id": "_:b604", + "@id": "_:b12934", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e021-out.jsonld", + "title": "Expands embedded JSON-LD script element relative to relative HTML base", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e021-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0025-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0025-out.jsonld", - "title": "Problematic IRI expansion tests", - "rdfs:comment": "Expanding different kinds of terms and Compact IRIs", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3317", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b10066", + "@id": "_:b3323", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "result": { - "@id": "_:b25008", + "@id": "_:b24341", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10065", + "@id": "_:b3319", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25156", + "@id": "_:b18859", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10063", + "@id": "_:b3318", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "result": { - "@id": "_:b22290", + "@id": "_:b7638", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b10061", + "@id": "_:b3321", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12450", + "@id": "_:b17652", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10069", + "@id": "_:b3325", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "result": { - "@id": "_:b24502", + "@id": "_:b23271", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10062", + "@id": "_:b3322", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9610", + "@id": "_:b22228", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10070", + "@id": "_:b3326", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24342", + "@id": "_:b5607", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10064", + "@id": "_:b3324", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "result": { - "@id": "_:b25087", + "@id": "_:b25305", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10067", + "@id": "_:b3320", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "result": { - "@id": "_:b26494", + "@id": "_:b20153", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10068", + "@id": "_:b3315", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", "result": { - "@id": "_:b23234", + "@id": "_:b3316", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/e022-out.jsonld", + "title": "Expands targeted JSON-LD script element with fragment and HTML base", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/e022-in.html#second", + "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0027-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0027-out.jsonld", - "title": "Duplicate values in @list and @set", - "rdfs:comment": "Duplicate values in @list and @set are not merged", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1990", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b12507", + "@id": "_:b1998", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "result": { - "@id": "_:b17459", + "@id": "_:b2008", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12508", + "@id": "_:b1993", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17460", + "@id": "_:b2003", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12504", + "@id": "_:b1996", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "result": { - "@id": "_:b7334", + "@id": "_:b2006", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b12511", + "@id": "_:b1991", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17463", + "@id": "_:b2001", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12510", + "@id": "_:b1999", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "result": { - "@id": "_:b17462", + "@id": "_:b2009", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12509", + "@id": "_:b1992", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17461", + "@id": "_:b2002", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12501", + "@id": "_:b2000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12502", + "@id": "_:b2010", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12505", + "@id": "_:b1994", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "result": { - "@id": "_:b17457", + "@id": "_:b2004", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12503", + "@id": "_:b1997", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "result": { - "@id": "_:b12701", + "@id": "_:b2007", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12506", + "@id": "_:b1995", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", "result": { - "@id": "_:b17458", + "@id": "_:b2005", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/c001-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/html/c001-context.jsonld" + }, + "title": "Compacts embedded JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/c001-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0028-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0028-out.jsonld", - "title": "Use @vocab in properties and @type but not in @id", - "rdfs:comment": "@vocab is used to compact properties and @type, but is not used for @id", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16025", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b2755", + "@id": "_:b16026", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "result": { - "@id": "_:b3632", + "@id": "_:b17378", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2757", + "@id": "_:b16032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19382", + "@id": "_:b26664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2752", + "@id": "_:b16029", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "result": { - "@id": "_:b2753", + "@id": "_:b3191", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b2756", + "@id": "_:b16034", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19381", + "@id": "_:b11656", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2760", + "@id": "_:b16027", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "result": { - "@id": "_:b14500", + "@id": "_:b18657", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2754", + "@id": "_:b16031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19380", + "@id": "_:b17765", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2759", + "@id": "_:b16023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19384", + "@id": "_:b16024", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2758", + "@id": "_:b16030", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "result": { - "@id": "_:b19383", + "@id": "_:b26108", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2762", + "@id": "_:b16033", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "result": { - "@id": "_:b19386", + "@id": "_:b11050", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2761", + "@id": "_:b16028", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", "result": { - "@id": "_:b19385", + "@id": "_:b20833", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/c002-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/html/c002-context.jsonld" + }, + "title": "Compacts first embedded JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/c002-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0029-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0029-out.jsonld", - "title": "Relative IRIs", - "rdfs:comment": "@base is used to compact @id; test with different relative IRIs", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12514", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b18144", + "@id": "_:b12521", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "result": { - "@id": "_:b21929", + "@id": "_:b21958", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18146", + "@id": "_:b12517", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18729", + "@id": "_:b19695", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18141", + "@id": "_:b12515", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "result": { - "@id": "_:b3298", + "@id": "_:b14859", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b18148", + "@id": "_:b12512", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21931", + "@id": "_:b12513", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18149", + "@id": "_:b12522", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "result": { - "@id": "_:b21932", + "@id": "_:b14097", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18143", + "@id": "_:b12518", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17775", + "@id": "_:b4641", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18142", + "@id": "_:b12520", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21928", + "@id": "_:b21957", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18145", + "@id": "_:b12519", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "result": { - "@id": "_:b3073", + "@id": "_:b21956", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18140", + "@id": "_:b12523", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "result": { - "@id": "_:b18598", + "@id": "_:b21959", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18147", + "@id": "_:b12516", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", "result": { - "@id": "_:b21930", + "@id": "_:b18284", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/c003-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/html/c003-context.jsonld" + }, + "title": "Compacts targeted JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/c003-in.html#second", + "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0030-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0030-out.jsonld", - "title": "Language maps", - "rdfs:comment": "Language Maps expand values to include @language", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6821", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } + }, "assertions": [ { - "@id": "_:b9792", + "@id": "_:b6829", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "result": { - "@id": "_:b1259", + "@id": "_:b8988", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9798", + "@id": "_:b6822", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18639", + "@id": "_:b8981", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9791", + "@id": "_:b6824", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "result": { - "@id": "_:b16500", + "@id": "_:b8983", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b9794", + "@id": "_:b6827", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18635", + "@id": "_:b8986", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9793", + "@id": "_:b6819", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "result": { - "@id": "_:b18389", + "@id": "_:b6820", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9797", + "@id": "_:b6825", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18638", + "@id": "_:b8984", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9799", + "@id": "_:b6830", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17257", + "@id": "_:b8989", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9796", + "@id": "_:b6828", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "result": { - "@id": "_:b18637", + "@id": "_:b8987", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9795", + "@id": "_:b6826", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "result": { - "@id": "_:b18636", + "@id": "_:b8985", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9789", + "@id": "_:b6823", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", "result": { - "@id": "_:b9790", + "@id": "_:b8982", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/c004-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/html/c004-context.jsonld" + }, + "title": "Compacts all embedded JSON-LD script elements with extractAllScripts option", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/c004-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0031-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0031-out.jsonld", - "title": "type-coercion of native types", - "rdfs:comment": "Expanding native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1290", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b8230", + "@id": "_:b1299", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "result": { - "@id": "_:b21650", + "@id": "_:b23542", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8223", + "@id": "_:b1294", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21017", + "@id": "_:b23449", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8228", + "@id": "_:b1297", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "result": { - "@id": "_:b25316", + "@id": "_:b13324", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b8224", + "@id": "_:b1288", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22714", + "@id": "_:b1289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8225", + "@id": "_:b1295", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "result": { - "@id": "_:b23597", + "@id": "_:b24131", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8221", + "@id": "_:b1293", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8222", + "@id": "_:b21324", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8227", + "@id": "_:b1296", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25424", + "@id": "_:b24649", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8231", + "@id": "_:b1292", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "result": { - "@id": "_:b25425", + "@id": "_:b16133", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8226", + "@id": "_:b1291", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "result": { - "@id": "_:b24084", + "@id": "_:b6631", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8229", + "@id": "_:b1298", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", "result": { - "@id": "_:b18434", + "@id": "_:b24528", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/f001-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/html/f001-context.jsonld" + }, + "title": "Flattens embedded JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/f001-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0032-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0032-out.jsonld", - "title": "Null term and @vocab", - "rdfs:comment": "Mapping a term to null decouples it from @vocab", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14077", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } + }, "assertions": [ { - "@id": "_:b9277", + "@id": "_:b14075", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "result": { - "@id": "_:b9286", + "@id": "_:b14076", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9272", + "@id": "_:b14083", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9281", + "@id": "_:b25241", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9268", + "@id": "_:b14079", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "result": { - "@id": "_:b7237", + "@id": "_:b22226", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b9271", + "@id": "_:b14081", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9280", + "@id": "_:b4665", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9276", + "@id": "_:b14085", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "result": { - "@id": "_:b9285", + "@id": "_:b25243", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9269", + "@id": "_:b14078", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9278", + "@id": "_:b14218", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9270", + "@id": "_:b14082", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9279", + "@id": "_:b24129", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9273", + "@id": "_:b14086", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "result": { - "@id": "_:b9282", + "@id": "_:b25244", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9275", + "@id": "_:b14084", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "result": { - "@id": "_:b9284", + "@id": "_:b25242", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9274", + "@id": "_:b14080", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", "result": { - "@id": "_:b9283", + "@id": "_:b5757", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/f002-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/html/f002-context.jsonld" + }, + "title": "Flattens first embedded JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/f002-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0033-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0033-out.jsonld", - "title": "Using @vocab with with type-coercion", - "rdfs:comment": "Verifies that terms can be defined using @vocab", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b15002", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b11131", + "@id": "_:b15005", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "result": { - "@id": "_:b1695", + "@id": "_:b19560", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11124", + "@id": "_:b15006", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19648", + "@id": "_:b2066", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11127", + "@id": "_:b15004", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "result": { - "@id": "_:b17967", + "@id": "_:b17118", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b11125", + "@id": "_:b15007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24231", + "@id": "_:b25284", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11126", + "@id": "_:b15009", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "result": { - "@id": "_:b24449", + "@id": "_:b19141", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11128", + "@id": "_:b15011", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24885", + "@id": "_:b26623", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11132", + "@id": "_:b15010", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24887", + "@id": "_:b26554", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11129", + "@id": "_:b15000", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "result": { - "@id": "_:b15711", + "@id": "_:b15001", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11130", + "@id": "_:b15003", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "result": { - "@id": "_:b24886", + "@id": "_:b15941", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11122", + "@id": "_:b15008", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", "result": { - "@id": "_:b11123", + "@id": "_:b17168", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/f003-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/html/f003-context.jsonld" + }, + "title": "Flattens targeted JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/f003-in.html#second", + "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0034-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0034-out.jsonld", - "title": "Multiple properties expanding to the same IRI", - "rdfs:comment": "Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1835", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b6166", + "@id": "_:b1836", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "result": { - "@id": "_:b26637", + "@id": "_:b9656", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6161", + "@id": "_:b1837", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11609", + "@id": "_:b17736", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6163", + "@id": "_:b1841", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "result": { - "@id": "_:b26635", + "@id": "_:b19262", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b6168", + "@id": "_:b1843", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24408", + "@id": "_:b19264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6165", + "@id": "_:b1838", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "result": { - "@id": "_:b26636", + "@id": "_:b14474", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6159", + "@id": "_:b1839", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6160", + "@id": "_:b13027", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6169", + "@id": "_:b1840", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26570", + "@id": "_:b19261", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6167", + "@id": "_:b1833", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "result": { - "@id": "_:b7319", + "@id": "_:b1834", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6162", + "@id": "_:b1842", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "result": { - "@id": "_:b26423", + "@id": "_:b19263", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6164", + "@id": "_:b1844", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", "result": { - "@id": "_:b26451", + "@id": "_:b2642", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/f004-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/html/f004-context.jsonld" + }, + "title": "Flattens all script elements by default", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/f004-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML multiple script elements" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0035-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0035-out.jsonld", - "title": "Language maps with @vocab, default language, and colliding property", - "rdfs:comment": "Pathological tests of language maps", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6750", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b4933", + "@id": "_:b6759", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "result": { - "@id": "_:b13156", + "@id": "_:b8736", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4935", + "@id": "_:b6754", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13158", + "@id": "_:b24363", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4939", + "@id": "_:b6757", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "result": { - "@id": "_:b13162", + "@id": "_:b26461", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b4934", + "@id": "_:b6748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13157", + "@id": "_:b6749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4930", + "@id": "_:b6751", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "result": { - "@id": "_:b4931", + "@id": "_:b15027", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4938", + "@id": "_:b6752", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13161", + "@id": "_:b21143", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4932", + "@id": "_:b6753", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13155", + "@id": "_:b20096", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4936", + "@id": "_:b6756", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "result": { - "@id": "_:b13159", + "@id": "_:b25904", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4940", + "@id": "_:b6758", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", "result": { - "@id": "_:b13163", + "@id": "_:b26462", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4937", + "@id": "_:b6755", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", + "mode": "earl:automatic", "result": { - "@id": "_:b13160", + "@id": "_:b24703", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r001-out.nq", + "title": "Transforms embedded JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r001-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0036-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0036-out.jsonld", - "title": "Expanding @index", - "rdfs:comment": "Expanding index maps for terms defined with @container: @index", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3114", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } + }, "assertions": [ { - "@id": "_:b14020", + "@id": "_:b3112", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "result": { - "@id": "_:b14030", + "@id": "_:b3113", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14018", + "@id": "_:b3119", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14028", + "@id": "_:b22937", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14016", + "@id": "_:b3121", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "result": { - "@id": "_:b14026", + "@id": "_:b22939", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b14023", + "@id": "_:b3120", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14033", + "@id": "_:b22938", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14021", + "@id": "_:b3116", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "result": { - "@id": "_:b14031", + "@id": "_:b22934", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14017", + "@id": "_:b3117", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14027", + "@id": "_:b22935", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14024", + "@id": "_:b3123", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14034", + "@id": "_:b22941", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14022", + "@id": "_:b3122", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "result": { - "@id": "_:b14032", + "@id": "_:b22940", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14015", + "@id": "_:b3118", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", "result": { - "@id": "_:b14025", + "@id": "_:b22936", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14019", + "@id": "_:b3115", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", + "mode": "earl:automatic", "result": { - "@id": "_:b14029", + "@id": "_:b18925", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r002-out.nq", + "title": "Transforms first embedded JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r002-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0037-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0037-out.jsonld", - "title": "Expanding @reverse", - "rdfs:comment": "Expanding @reverse keeps @reverse", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16377", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b3226", + "@id": "_:b16385", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "result": { - "@id": "_:b13927", + "@id": "_:b23888", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3224", + "@id": "_:b16382", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18733", + "@id": "_:b25232", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3220", + "@id": "_:b16383", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "result": { - "@id": "_:b3221", + "@id": "_:b24510", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b3229", + "@id": "_:b16375", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18737", + "@id": "_:b16376", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3230", + "@id": "_:b16380", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "result": { - "@id": "_:b1749", + "@id": "_:b23491", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3222", + "@id": "_:b16381", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18731", + "@id": "_:b17973", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3227", + "@id": "_:b16379", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18735", + "@id": "_:b20466", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3223", + "@id": "_:b16384", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "result": { - "@id": "_:b18732", + "@id": "_:b25377", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3228", + "@id": "_:b16386", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", "result": { - "@id": "_:b18736", + "@id": "_:b23082", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3225", + "@id": "_:b16378", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", + "mode": "earl:automatic", "result": { - "@id": "_:b18734", + "@id": "_:b18585", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r003-out.nq", + "title": "Transforms targeted JSON-LD script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r003-in.html#second", + "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0039-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0039-out.jsonld", - "title": "Using terms in a reverse-maps", - "rdfs:comment": "Terms within @reverse are expanded", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9449", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } + }, "assertions": [ { - "@id": "_:b14891", + "@id": "_:b9453", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "result": { - "@id": "_:b25858", + "@id": "_:b24080", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14888", + "@id": "_:b9454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7541", + "@id": "_:b24937", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14889", + "@id": "_:b9452", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "result": { - "@id": "_:b24379", + "@id": "_:b20696", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b14894", + "@id": "_:b9457", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21136", + "@id": "_:b24637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14884", + "@id": "_:b9455", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "result": { - "@id": "_:b14885", + "@id": "_:b25735", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14887", + "@id": "_:b9458", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25721", + "@id": "_:b17053", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14892", + "@id": "_:b9447", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25509", + "@id": "_:b9448", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14890", + "@id": "_:b9450", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "result": { - "@id": "_:b24619", + "@id": "_:b21299", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14886", + "@id": "_:b9451", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", "result": { - "@id": "_:b25202", + "@id": "_:b21631", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14893", + "@id": "_:b9456", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", + "mode": "earl:automatic", "result": { - "@id": "_:b25192", + "@id": "_:b26036", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r004-out.nq", + "title": "Expands all embedded JSON-LD script elements with extractAllScripts option", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r004-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0040-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0040-out.jsonld", - "title": "language and index expansion on non-objects", - "rdfs:comment": "Only invoke language and index map expansion if the value is a JSON object", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7113", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } + }, "assertions": [ { - "@id": "_:b6448", + "@id": "_:b7121", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "result": { - "@id": "_:b13134", + "@id": "_:b7131", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6440", + "@id": "_:b7118", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6441", + "@id": "_:b7128", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6443", + "@id": "_:b7120", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "result": { - "@id": "_:b13129", + "@id": "_:b7130", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b6446", + "@id": "_:b7116", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13132", + "@id": "_:b7126", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6450", + "@id": "_:b7123", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "result": { - "@id": "_:b13136", + "@id": "_:b7133", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6445", + "@id": "_:b7115", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13131", + "@id": "_:b7125", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6449", + "@id": "_:b7122", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13135", + "@id": "_:b7132", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6442", + "@id": "_:b7119", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "result": { - "@id": "_:b13128", + "@id": "_:b7129", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6444", + "@id": "_:b7114", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", "result": { - "@id": "_:b13130", + "@id": "_:b7124", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6447", + "@id": "_:b7117", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", + "mode": "earl:automatic", "result": { - "@id": "_:b13133", + "@id": "_:b7127", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r005-out.nq", + "title": "Expands multiple embedded JSON-LD script elements where one is an array", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r005-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements with array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0041-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0041-out.jsonld", - "title": "@language: null resets the default language", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b23471", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b13508", + "@id": "_:b23478", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "result": { - "@id": "_:b26730", + "@id": "_:b24635", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13504", + "@id": "_:b23476", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19606", + "@id": "_:b25656", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13511", + "@id": "_:b23474", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "result": { - "@id": "_:b23876", + "@id": "_:b25408", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b13507", + "@id": "_:b23473", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4131", + "@id": "_:b25651", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13509", + "@id": "_:b23479", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "result": { - "@id": "_:b26744", + "@id": "_:b16049", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13506", + "@id": "_:b23475", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22170", + "@id": "_:b25655", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13512", + "@id": "_:b23480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13704", + "@id": "_:b20717", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13502", + "@id": "_:b23472", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "result": { - "@id": "_:b13503", + "@id": "_:b24714", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13510", + "@id": "_:b23477", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", "result": { - "@id": "_:b26566", + "@id": "_:b7111", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13505", + "@id": "_:b23470", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", + "mode": "earl:automatic", "result": { - "@id": "_:b16862", + "@id": "_:b22887", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r006-out.nq", + "title": "Expands as empty with no embedded JSON-LD script elements", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r006-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML when none exist" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0042-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0042-out.jsonld", - "title": "Reverse properties", - "rdfs:comment": "Expanding terms defined as reverse properties uses @reverse in expanded document", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b967", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } + }, "assertions": [ { - "@id": "_:b5340", + "@id": "_:b969", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "result": { - "@id": "_:b23678", + "@id": "_:b18656", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5335", + "@id": "_:b970", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23676", + "@id": "_:b23248", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5338", + "@id": "_:b973", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "result": { - "@id": "_:b18327", + "@id": "_:b24015", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b5336", + "@id": "_:b974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22518", + "@id": "_:b26631", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5341", + "@id": "_:b968", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "result": { - "@id": "_:b23679", + "@id": "_:b16046", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5331", + "@id": "_:b965", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5332", + "@id": "_:b966", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5337", + "@id": "_:b971", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8652", + "@id": "_:b24767", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5334", + "@id": "_:b975", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "result": { - "@id": "_:b22417", + "@id": "_:b22354", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5339", + "@id": "_:b972", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", "result": { - "@id": "_:b23677", + "@id": "_:b7653", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5333", + "@id": "_:b976", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", + "mode": "earl:automatic", "result": { - "@id": "_:b11675", + "@id": "_:b27002", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r007-out.nq", + "title": "Expands as empty with no embedded JSON-LD script elements and extractAllScripts", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r007-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML when none exist extracting all elements" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0043-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0043-out.jsonld", - "title": "Using reverse properties inside a @reverse-container", - "rdfs:comment": "Expanding a reverse property within a @reverse undoes both reversals", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10378", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b7919", + "@id": "_:b12694", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "result": { - "@id": "_:b20210", + "@id": "_:b25330", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7915", + "@id": "_:b12686", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7916", + "@id": "_:b12687", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7918", + "@id": "_:b12688", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "result": { - "@id": "_:b20209", + "@id": "_:b18920", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b7922", + "@id": "_:b12689", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20213", + "@id": "_:b19619", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7921", + "@id": "_:b12691", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "result": { - "@id": "_:b20212", + "@id": "_:b23994", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7920", + "@id": "_:b12696", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20211", + "@id": "_:b15498", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7925", + "@id": "_:b12693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19983", + "@id": "_:b25329", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7917", + "@id": "_:b12692", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "result": { - "@id": "_:b14876", + "@id": "_:b25328", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7923", + "@id": "_:b12695", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", "result": { - "@id": "_:b8047", + "@id": "_:b15674", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7924", + "@id": "_:b12690", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", + "mode": "earl:automatic", "result": { - "@id": "_:b20214", + "@id": "_:b21764", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r010-out.nq", + "title": "Expands embedded JSON-LD script element with HTML character references", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r010-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML with character references" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0044-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0044-out.jsonld", - "title": "Index maps with language mappings", - "rdfs:comment": "Ensure index maps use language mapping", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5341", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b5452", + "@id": "_:b5350", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "result": { - "@id": "_:b19199", + "@id": "_:b19135", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5457", + "@id": "_:b5345", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20680", + "@id": "_:b19131", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5454", + "@id": "_:b5347", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "result": { - "@id": "_:b26071", + "@id": "_:b19133", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b5458", + "@id": "_:b5344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26110", + "@id": "_:b19130", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5450", + "@id": "_:b5349", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "result": { - "@id": "_:b12262", + "@id": "_:b19134", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5453", + "@id": "_:b5346", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18613", + "@id": "_:b19132", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5456", + "@id": "_:b5339", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21384", + "@id": "_:b5340", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5455", + "@id": "_:b5343", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "result": { - "@id": "_:b24864", + "@id": "_:b14005", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5448", + "@id": "_:b5348", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", "result": { - "@id": "_:b5449", + "@id": "_:b14115", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5451", + "@id": "_:b5342", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", + "mode": "earl:automatic", "result": { - "@id": "_:b13460", + "@id": "_:b9860", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "mf:result": "loading document failed", + "title": "Errors if no element found at target", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r011-in.html#third", + "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0045-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0045-out.jsonld", - "title": "Top-level value objects", - "rdfs:comment": "Expanding top-level value objects causes them to be removed", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b13958", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b2148", + "@id": "_:b13962", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "result": { - "@id": "_:b5901", + "@id": "_:b25759", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2151", + "@id": "_:b13960", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5904", + "@id": "_:b21783", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2147", + "@id": "_:b13965", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "result": { - "@id": "_:b5900", + "@id": "_:b27003", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b2153", + "@id": "_:b13967", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5906", + "@id": "_:b25087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2152", + "@id": "_:b13966", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "result": { - "@id": "_:b5905", + "@id": "_:b18922", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2144", + "@id": "_:b13956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2145", + "@id": "_:b13957", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2149", + "@id": "_:b13963", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5902", + "@id": "_:b22642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2150", + "@id": "_:b13961", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "result": { - "@id": "_:b5903", + "@id": "_:b22143", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2146", + "@id": "_:b13959", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", "result": { - "@id": "_:b5899", + "@id": "_:b18107", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2154", + "@id": "_:b13964", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", + "mode": "earl:automatic", "result": { - "@id": "_:b5907", + "@id": "_:b24872", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "mf:result": "loading document failed", + "title": "Errors if targeted element is not a script element", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r012-in.html#first", + "rdfs:comment": "Tests embedded JSON-LD in HTML which isn't a script element" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0046-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0046-out.jsonld", - "title": "Free-floating nodes", - "rdfs:comment": "Expanding free-floating nodes causes them to be removed", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5423", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b5044", + "@id": "_:b5426", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "result": { - "@id": "_:b10136", + "@id": "_:b5436", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5047", + "@id": "_:b5424", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10139", + "@id": "_:b5434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5039", + "@id": "_:b5431", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "result": { - "@id": "_:b5040", + "@id": "_:b5441", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b5042", + "@id": "_:b5429", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10134", + "@id": "_:b5439", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5048", + "@id": "_:b5433", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "result": { - "@id": "_:b10140", + "@id": "_:b1031", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5045", + "@id": "_:b5428", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10137", + "@id": "_:b5438", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5041", + "@id": "_:b5425", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10133", + "@id": "_:b5435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5049", + "@id": "_:b5427", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "result": { - "@id": "_:b10141", + "@id": "_:b5437", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5046", + "@id": "_:b5430", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", "result": { - "@id": "_:b10138", + "@id": "_:b5440", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5043", + "@id": "_:b5432", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", + "mode": "earl:automatic", "result": { - "@id": "_:b10135", + "@id": "_:b5442", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "mf:result": "loading document failed", + "title": "Errors if targeted element does not have type application/ld+json", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r013-in.html#first", + "rdfs:comment": "Tests embedded JSON-LD in HTML with wrong type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0047-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0047-out.jsonld", - "title": "Free-floating values in sets and free-floating lists", - "rdfs:comment": "Free-floating values in sets are removed, free-floating lists are removed completely", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12123", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b17809", + "@id": "_:b12131", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "result": { - "@id": "_:b24237", + "@id": "_:b26089", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17810", + "@id": "_:b12127", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24186", + "@id": "_:b26088", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17804", + "@id": "_:b12130", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "result": { - "@id": "_:b21044", + "@id": "_:b25065", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b17808", + "@id": "_:b12121", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24236", + "@id": "_:b12122", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17812", + "@id": "_:b12124", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "result": { - "@id": "_:b22930", + "@id": "_:b16706", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17807", + "@id": "_:b12126", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21312", + "@id": "_:b25294", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17806", + "@id": "_:b12129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24235", + "@id": "_:b14060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17803", + "@id": "_:b12125", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "result": { - "@id": "_:b23025", + "@id": "_:b24907", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17805", + "@id": "_:b12128", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", "result": { - "@id": "_:b24234", + "@id": "_:b21790", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17811", + "@id": "_:b12132", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", + "mode": "earl:automatic", "result": { - "@id": "_:b24238", + "@id": "_:b26090", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "mf:result": "invalid script element", + "title": "Errors if uncommented script text contains comment", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r014-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML with comments leftover" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0048-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0048-out.jsonld", - "title": "Terms are ignored in @id", - "rdfs:comment": "Values of @id are not expanded as terms", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8070", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b12413", + "@id": "_:b8076", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "result": { - "@id": "_:b18741", + "@id": "_:b25916", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12415", + "@id": "_:b8075", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18743", + "@id": "_:b25668", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12417", + "@id": "_:b8072", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "result": { - "@id": "_:b18745", + "@id": "_:b19662", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b12416", + "@id": "_:b8073", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18744", + "@id": "_:b24107", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12418", + "@id": "_:b8078", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "result": { - "@id": "_:b18746", + "@id": "_:b26816", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12411", + "@id": "_:b8071", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18127", + "@id": "_:b11684", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12419", + "@id": "_:b8068", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18747", + "@id": "_:b8069", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12412", + "@id": "_:b8077", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "result": { - "@id": "_:b15706", + "@id": "_:b18881", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12414", + "@id": "_:b8079", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", "result": { - "@id": "_:b18742", + "@id": "_:b19152", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12410", + "@id": "_:b8074", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", + "mode": "earl:automatic", "result": { - "@id": "_:b14659", + "@id": "_:b24377", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "mf:result": "invalid script element", + "title": "Errors if end comment missing", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r015-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML with unballanced comments" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0049-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0049-out.jsonld", - "title": "String values of reverse properties", - "rdfs:comment": "String values of a reverse property with @type: @id are treated as IRIs", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8914", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b7627", + "@id": "_:b8916", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "result": { - "@id": "_:b10728", + "@id": "_:b16102", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7625", + "@id": "_:b8917", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23864", + "@id": "_:b10591", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7621", + "@id": "_:b8915", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "result": { - "@id": "_:b23861", + "@id": "_:b7466", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b7620", + "@id": "_:b8920", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23860", + "@id": "_:b16105", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7622", + "@id": "_:b8921", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "result": { - "@id": "_:b23862", + "@id": "_:b9484", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7623", + "@id": "_:b8918", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23415", + "@id": "_:b16103", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7626", + "@id": "_:b8923", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21693", + "@id": "_:b16107", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7618", + "@id": "_:b8912", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "result": { - "@id": "_:b22957", + "@id": "_:b8913", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7624", + "@id": "_:b8919", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", "result": { - "@id": "_:b23863", + "@id": "_:b16104", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7619", + "@id": "_:b8922", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", + "mode": "earl:automatic", "result": { - "@id": "_:b23859", + "@id": "_:b16106", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "mf:result": "invalid script element", + "title": "Errors if start comment missing", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r016-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML with unballanced comments" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0050-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0050-out.jsonld", - "title": "Term definitions with prefix separate from prefix definitions", - "rdfs:comment": "Term definitions using compact IRIs don't inherit the definitions of the prefix", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2892", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b16179", + "@id": "_:b2898", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "result": { - "@id": "_:b19903", + "@id": "_:b23788", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16173", + "@id": "_:b2897", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9384", + "@id": "_:b3537", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16175", + "@id": "_:b2899", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "result": { - "@id": "_:b20366", + "@id": "_:b23789", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b16170", + "@id": "_:b2894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16171", + "@id": "_:b17165", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16178", + "@id": "_:b2895", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "result": { - "@id": "_:b20368", + "@id": "_:b23787", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16177", + "@id": "_:b2896", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20367", + "@id": "_:b20516", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16180", + "@id": "_:b2901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20369", + "@id": "_:b5469", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16176", + "@id": "_:b2900", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "result": { - "@id": "_:b5557", + "@id": "_:b16012", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16174", + "@id": "_:b2893", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", "result": { - "@id": "_:b20365", + "@id": "_:b7479", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16172", + "@id": "_:b2890", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", + "mode": "earl:automatic", "result": { - "@id": "_:b1785", + "@id": "_:b2891", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "mf:result": "invalid script element", + "title": "Errors if uncommented script is not valid JSON", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r017-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML which is invalid JSON" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0051-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0051-out.jsonld", - "title": "Expansion of keyword aliases in term definitions", - "rdfs:comment": "Expanding terms which are keyword aliases", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6033", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b8117", + "@id": "_:b6043", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "result": { - "@id": "_:b25195", + "@id": "_:b9526", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8113", + "@id": "_:b6037", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25333", + "@id": "_:b20007", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8112", + "@id": "_:b6042", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "result": { - "@id": "_:b23031", + "@id": "_:b26295", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b8120", + "@id": "_:b6036", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18121", + "@id": "_:b14180", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8118", + "@id": "_:b6039", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "result": { - "@id": "_:b19632", + "@id": "_:b26294", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8116", + "@id": "_:b6038", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20723", + "@id": "_:b16230", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8119", + "@id": "_:b6035", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19542", + "@id": "_:b11323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8115", + "@id": "_:b6041", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "result": { - "@id": "_:b20419", + "@id": "_:b20465", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8114", + "@id": "_:b6034", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", "result": { - "@id": "_:b14236", + "@id": "_:b7517", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8111", + "@id": "_:b6040", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", + "mode": "earl:automatic", "result": { - "@id": "_:b20081", + "@id": "_:b19490", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r018-out.nq", + "title": "Expands embedded JSON-LD script element relative to document base", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r018-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0052-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0052-out.jsonld", - "title": "@vocab-relative IRIs in term definitions", - "rdfs:comment": "If @vocab is defined, term definitions are expanded relative to @vocab", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14693", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://a.example.com/doc" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b9691", + "@id": "_:b14694", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "result": { - "@id": "_:b20310", + "@id": "_:b14704", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9690", + "@id": "_:b14695", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19651", + "@id": "_:b10786", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9689", + "@id": "_:b14696", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "result": { - "@id": "_:b12263", + "@id": "_:b14705", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b9694", + "@id": "_:b14703", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22448", + "@id": "_:b14711", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9687", + "@id": "_:b14702", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "result": { - "@id": "_:b9688", + "@id": "_:b14710", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9692", + "@id": "_:b14699", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22446", + "@id": "_:b14707", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9697", + "@id": "_:b14700", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22450", + "@id": "_:b14708", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9695", + "@id": "_:b14701", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "result": { - "@id": "_:b15753", + "@id": "_:b14709", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9696", + "@id": "_:b14698", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", "result": { - "@id": "_:b22449", + "@id": "_:b9150", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9693", + "@id": "_:b14697", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", + "mode": "earl:automatic", "result": { - "@id": "_:b22447", + "@id": "_:b14706", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r019-out.nq", + "title": "Expands embedded JSON-LD script element relative to base option", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r019-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0053-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0053-out.jsonld", - "title": "Expand absolute IRI with @type: @vocab", - "rdfs:comment": "Expanding values of properties of @type: @vocab does not further expand absolute IRIs", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b6646", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://a.example.com/doc" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b12037", + "@id": "_:b6649", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "result": { - "@id": "_:b20466", + "@id": "_:b21862", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12032", + "@id": "_:b6644", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1167", + "@id": "_:b6645", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12034", + "@id": "_:b6651", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "result": { - "@id": "_:b25174", + "@id": "_:b21864", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b12036", + "@id": "_:b6647", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24249", + "@id": "_:b19741", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12030", + "@id": "_:b6648", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "result": { - "@id": "_:b24343", + "@id": "_:b21016", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12033", + "@id": "_:b6653", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24412", + "@id": "_:b21866", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12035", + "@id": "_:b6655", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25983", + "@id": "_:b21867", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12028", + "@id": "_:b6650", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "result": { - "@id": "_:b12029", + "@id": "_:b21863", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12038", + "@id": "_:b6652", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", "result": { - "@id": "_:b26853", + "@id": "_:b21865", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12031", + "@id": "_:b6654", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", + "mode": "earl:automatic", "result": { - "@id": "_:b15300", + "@id": "_:b11961", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r020-out.nq", + "title": "Expands embedded JSON-LD script element relative to HTML base", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r020-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0054-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0054-out.jsonld", - "title": "Expand term with @type: @vocab", - "rdfs:comment": "Expanding values of properties of @type: @vocab does not expand term values", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7947", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://a.example.com/doc" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b11110", + "@id": "_:b18464", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "result": { - "@id": "_:b11119", + "@id": "_:b22812", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11103", + "@id": "_:b18466", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11113", + "@id": "_:b26035", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11106", + "@id": "_:b18465", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "result": { - "@id": "_:b8032", + "@id": "_:b25290", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b11108", + "@id": "_:b18468", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11117", + "@id": "_:b18806", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11107", + "@id": "_:b18461", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "result": { - "@id": "_:b11116", + "@id": "_:b17795", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11104", + "@id": "_:b18467", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11114", + "@id": "_:b23764", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11109", + "@id": "_:b18463", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11118", + "@id": "_:b20097", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11112", + "@id": "_:b18469", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "result": { - "@id": "_:b11121", + "@id": "_:b24270", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11105", + "@id": "_:b18462", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", "result": { - "@id": "_:b11115", + "@id": "_:b17660", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11111", + "@id": "_:b18470", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", + "mode": "earl:automatic", "result": { - "@id": "_:b11120", + "@id": "_:b23308", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r021-out.nq", + "title": "Expands embedded JSON-LD script element relative to relative HTML base", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r021-in.html", + "rdfs:comment": "Tests embedded JSON-LD in HTML" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", + "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0055-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0055-out.jsonld", - "title": "Expand @vocab-relative term with @type: @vocab", - "rdfs:comment": "Expanding values of properties of @type: @vocab expands relative IRIs using @vocab", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4714", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + }, "assertions": [ { - "@id": "_:b13806", + "@id": "_:b4715", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "result": { - "@id": "_:b21649", + "@id": "_:b10827", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13808", + "@id": "_:b4721", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25748", + "@id": "_:b14383", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13805", + "@id": "_:b4718", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "result": { - "@id": "_:b19982", + "@id": "_:b14380", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b13813", + "@id": "_:b4722", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26257", + "@id": "_:b14384", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13810", + "@id": "_:b4712", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "result": { - "@id": "_:b26215", + "@id": "_:b4713", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13804", + "@id": "_:b4720", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16935", + "@id": "_:b14382", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13811", + "@id": "_:b4723", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23318", + "@id": "_:b14385", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13809", + "@id": "_:b4717", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "result": { - "@id": "_:b26411", + "@id": "_:b14379", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13807", + "@id": "_:b4716", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", "result": { - "@id": "_:b24214", + "@id": "_:b14378", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13812", + "@id": "_:b4719", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", + "mode": "earl:automatic", "result": { - "@id": "_:b26571", + "@id": "_:b14381", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055", - "assertedBy": null + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": "https://www.rubensworks.net/#me" } - ] - }, + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/html/r022-out.nq", + "title": "Expands targeted JSON-LD script element with fragment and HTML base", + "testAction": "https://w3c.github.io/json-ld-api/tests/html/r022-in.html#second", + "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier" + } + ], + "title": "HTML", + "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", + "rdfs:comment": "These tests implement the requirements for the JSON-LD [HTML Content Algorithms](https://www.w3.org/TR/json-ld11-api/#html-content-algorithms)." + }, + { + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest", + "@type": [ + "Report", + "mf:Manifest" + ], + "entries": [ { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0056-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0056-out.jsonld", - "title": "Use terms with @type: @vocab but not with @type: @id", - "rdfs:comment": "Checks that expansion uses appropriate base depending on term definition having @type @id or @vocab", "assertions": [ { - "@id": "_:b10653", + "@id": "_:b28", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "result": { - "@id": "_:b26954", + "@id": "_:b26101", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10649", + "@id": "_:b22", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21405", + "@id": "_:b25887", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10651", + "@id": "_:b25", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26993", + "@id": "_:b23866", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10647", + "@id": "_:b20", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22409", + "@id": "_:b23440", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10643", + "@id": "_:b26", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "result": { - "@id": "_:b10644", + "@id": "_:b26100", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10650", + "@id": "_:b24", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26109", + "@id": "_:b26099", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10645", + "@id": "_:b21", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20847", + "@id": "_:b23886", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10646", + "@id": "_:b29", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "result": { - "@id": "_:b18865", + "@id": "_:b18342", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10648", + "@id": "_:b23", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "result": { - "@id": "_:b19614", + "@id": "_:b26098", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10652", + "@id": "_:b27", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001", "result": { - "@id": "_:b26638", + "@id": "_:b15408", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0001-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0001-context.jsonld" + }, + "title": "drop free-floating nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0001-in.jsonld", + "rdfs:comment": "Unreferenced nodes not containing properties are dropped" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0057-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0057-out.jsonld", - "title": "Expand relative IRI with @type: @vocab", - "rdfs:comment": "Relative values of terms with @type: @vocab expand relative to @vocab", "assertions": [ { - "@id": "_:b10868", + "@id": "_:b111", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "result": { - "@id": "_:b21967", + "@id": "_:b121", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10861", + "@id": "_:b106", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20662", + "@id": "_:b116", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10867", + "@id": "_:b107", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21966", + "@id": "_:b117", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10866", + "@id": "_:b109", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21965", + "@id": "_:b119", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10860", + "@id": "_:b104", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "result": { - "@id": "_:b1457", + "@id": "_:b114", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10863", + "@id": "_:b110", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21963", + "@id": "_:b120", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10865", + "@id": "_:b103", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17598", + "@id": "_:b113", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10862", + "@id": "_:b102", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "result": { - "@id": "_:b21962", + "@id": "_:b112", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10858", + "@id": "_:b108", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "result": { - "@id": "_:b10859", + "@id": "_:b118", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10864", + "@id": "_:b105", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002", "result": { - "@id": "_:b21964", + "@id": "_:b115", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0002-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0002-context.jsonld" + }, + "title": "basic", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0002-in.jsonld", + "rdfs:comment": "Basic term and value compaction" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0058-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0058-out.jsonld", - "title": "Expand compact IRI with @type: @vocab", - "rdfs:comment": "Compact IRIs are expanded normally even if term has @type: @vocab", "assertions": [ { - "@id": "_:b18775", + "@id": "_:b97", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "result": { - "@id": "_:b5593", + "@id": "_:b23450", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18772", + "@id": "_:b95", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23487", + "@id": "_:b17244", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18774", + "@id": "_:b94", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9556", + "@id": "_:b23830", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18779", + "@id": "_:b93", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26939", + "@id": "_:b2956", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18770", + "@id": "_:b100", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "result": { - "@id": "_:b11470", + "@id": "_:b23832", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18777", + "@id": "_:b98", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23610", + "@id": "_:b23158", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18771", + "@id": "_:b92", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21494", + "@id": "_:b18353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18776", + "@id": "_:b99", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "result": { - "@id": "_:b26461", + "@id": "_:b22974", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18778", + "@id": "_:b96", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "result": { - "@id": "_:b25636", + "@id": "_:b23831", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18773", + "@id": "_:b101", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003", "result": { - "@id": "_:b7877", + "@id": "_:b9790", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0003-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0003-context.jsonld" + }, + "title": "drop null and unmapped properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0003-in.jsonld", + "rdfs:comment": "Properties mapped to null or which are never mapped are dropped" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0059-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0059-out.jsonld", - "title": "Reset @vocab by setting it to null", - "rdfs:comment": "Setting @vocab to null removes a previous definition", "assertions": [ { - "@id": "_:b12964", + "@id": "_:b311", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "result": { - "@id": "_:b12965", + "@id": "_:b20512", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12971", + "@id": "_:b309", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20275", + "@id": "_:b21928", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12972", + "@id": "_:b304", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26060", + "@id": "_:b8561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12968", + "@id": "_:b310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22497", + "@id": "_:b20306", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12966", + "@id": "_:b307", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "result": { - "@id": "_:b17287", + "@id": "_:b11682", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12969", + "@id": "_:b312", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22757", + "@id": "_:b21929", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12974", + "@id": "_:b313", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22532", + "@id": "_:b20014", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12967", + "@id": "_:b305", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "result": { - "@id": "_:b19086", + "@id": "_:b20319", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12970", + "@id": "_:b306", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "result": { - "@id": "_:b18137", + "@id": "_:b19821", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12973", + "@id": "_:b308", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004", "result": { - "@id": "_:b21524", + "@id": "_:b16625", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0004-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0004-context.jsonld" + }, + "title": "optimize @set, keep empty arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0004-in.jsonld", + "rdfs:comment": "Containers mapped to @set keep empty arrays" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0060-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0060-out.jsonld", - "title": "Overwrite document base with @base and reset it again", - "rdfs:comment": "Setting @base to an IRI and then resetting it to nil", "assertions": [ { - "@id": "_:b6576", + "@id": "_:b296", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "result": { - "@id": "_:b3233", + "@id": "_:b419", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6578", + "@id": "_:b297", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24659", + "@id": "_:b420", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6580", + "@id": "_:b295", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23746", + "@id": "_:b418", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6575", + "@id": "_:b294", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2187", + "@id": "_:b417", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6584", + "@id": "_:b299", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "result": { - "@id": "_:b24663", + "@id": "_:b422", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6579", + "@id": "_:b301", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24660", + "@id": "_:b424", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6577", + "@id": "_:b302", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24658", + "@id": "_:b425", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6583", + "@id": "_:b300", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "result": { - "@id": "_:b20378", + "@id": "_:b423", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6582", + "@id": "_:b303", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "result": { - "@id": "_:b24662", + "@id": "_:b426", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6581", + "@id": "_:b298", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005", "result": { - "@id": "_:b24661", + "@id": "_:b421", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0005-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0005-context.jsonld" + }, + "title": "@type and prefix compaction", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0005-in.jsonld", + "rdfs:comment": "Compact uses prefixes in @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0061-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0061-out.jsonld", - "title": "Coercing native types to arbitrary datatypes", - "rdfs:comment": "Expanding native types when coercing to arbitrary datatypes", "assertions": [ { - "@id": "_:b7469", + "@id": "_:b737", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "result": { - "@id": "_:b20199", + "@id": "_:b747", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7471", + "@id": "_:b739", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20200", + "@id": "_:b749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7466", + "@id": "_:b734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13000", + "@id": "_:b744", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7470", + "@id": "_:b735", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8331", + "@id": "_:b745", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7472", + "@id": "_:b731", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "result": { - "@id": "_:b20201", + "@id": "_:b741", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7467", + "@id": "_:b733", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15005", + "@id": "_:b743", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7464", + "@id": "_:b736", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7465", + "@id": "_:b746", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7468", + "@id": "_:b738", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "result": { - "@id": "_:b20198", + "@id": "_:b748", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7473", + "@id": "_:b740", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "result": { - "@id": "_:b14501", + "@id": "_:b750", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7474", + "@id": "_:b732", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006", "result": { - "@id": "_:b20202", + "@id": "_:b742", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0006-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0006-context.jsonld" + }, + "title": "keep expanded object format if @type doesn't match", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0006-in.jsonld", + "rdfs:comment": "Values not matching a coerced @type remain in expanded form" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0062-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0062-out.jsonld", - "title": "Various relative IRIs with with @base", - "rdfs:comment": "Pathological relative IRIs", "assertions": [ { - "@id": "_:b12278", + "@id": "_:b17560", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "result": { - "@id": "_:b15008", + "@id": "_:b25484", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12272", + "@id": "_:b17564", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17892", + "@id": "_:b26032", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12277", + "@id": "_:b17565", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26238", + "@id": "_:b27027", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12275", + "@id": "_:b17567", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10899", + "@id": "_:b26988", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12270", + "@id": "_:b17559", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "result": { - "@id": "_:b12271", + "@id": "_:b22965", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12280", + "@id": "_:b17557", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b27030", + "@id": "_:b17558", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12273", + "@id": "_:b17563", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23843", + "@id": "_:b11719", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12276", + "@id": "_:b17562", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "result": { - "@id": "_:b16310", + "@id": "_:b23447", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12279", + "@id": "_:b17566", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "result": { - "@id": "_:b26058", + "@id": "_:b26496", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12274", + "@id": "_:b17561", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007", "result": { - "@id": "_:b25194", + "@id": "_:b25198", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0007-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0007-context.jsonld" + }, + "title": "add context", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0007-in.jsonld", + "rdfs:comment": "External context is added to the compacted document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0063-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0063-out.jsonld", - "title": "Reverse property and index container", - "rdfs:comment": "Expaning reverse properties with an index-container", "assertions": [ { - "@id": "_:b9744", + "@id": "_:b221", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "result": { - "@id": "_:b26086", + "@id": "_:b372", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9741", + "@id": "_:b214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18397", + "@id": "_:b365", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9742", + "@id": "_:b223", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24114", + "@id": "_:b374", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9743", + "@id": "_:b217", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24809", + "@id": "_:b368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9740", + "@id": "_:b215", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "result": { - "@id": "_:b10711", + "@id": "_:b366", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9746", + "@id": "_:b216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6071", + "@id": "_:b367", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9745", + "@id": "_:b220", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26293", + "@id": "_:b371", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9747", + "@id": "_:b222", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "result": { - "@id": "_:b26871", + "@id": "_:b373", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9738", + "@id": "_:b218", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "result": { - "@id": "_:b9739", + "@id": "_:b369", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9748", + "@id": "_:b219", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008", "result": { - "@id": "_:b22109", + "@id": "_:b370", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0008-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0008-context.jsonld" + }, + "title": "alias keywords", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0008-in.jsonld", + "rdfs:comment": "Aliases for keywords are used in compacted document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0064-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0064-out.jsonld", - "title": "bnode values of reverse properties", - "rdfs:comment": "Expand reverse property whose values are unlabeled blank nodes", "assertions": [ { - "@id": "_:b2005", + "@id": "_:b14109", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "result": { - "@id": "_:b26906", + "@id": "_:b26302", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2003", + "@id": "_:b14108", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24113", + "@id": "_:b21595", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1998", + "@id": "_:b14112", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4866", + "@id": "_:b14996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2004", + "@id": "_:b14113", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23890", + "@id": "_:b26303", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2001", + "@id": "_:b14107", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "result": { - "@id": "_:b12514", + "@id": "_:b10232", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2002", + "@id": "_:b14111", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19975", + "@id": "_:b21946", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2000", + "@id": "_:b14114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14476", + "@id": "_:b26304", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1999", + "@id": "_:b14106", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "result": { - "@id": "_:b10641", + "@id": "_:b17181", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1996", + "@id": "_:b14110", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "result": { - "@id": "_:b1997", + "@id": "_:b10999", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2006", + "@id": "_:b14104", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009", "result": { - "@id": "_:b20125", + "@id": "_:b14105", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0009-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0009-context.jsonld" + }, + "title": "compact @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0009-in.jsonld", + "rdfs:comment": "Value with @id is compacted to string if property cast to @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0065-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0065-out.jsonld", - "title": "Drop unmapped keys in reverse map", - "rdfs:comment": "Keys that are not mapped to an IRI in a reverse-map are dropped", "assertions": [ { - "@id": "_:b13647", + "@id": "_:b7276", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "result": { - "@id": "_:b21291", + "@id": "_:b7277", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13643", + "@id": "_:b7278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13644", + "@id": "_:b15946", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13649", + "@id": "_:b7282", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26089", + "@id": "_:b25027", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13652", + "@id": "_:b7286", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19403", + "@id": "_:b24707", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13646", + "@id": "_:b7284", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "result": { - "@id": "_:b20440", + "@id": "_:b25029", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13645", + "@id": "_:b7285", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12795", + "@id": "_:b19492", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13653", + "@id": "_:b7280", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19513", + "@id": "_:b23880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13650", + "@id": "_:b7279", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "result": { - "@id": "_:b26391", + "@id": "_:b19875", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13651", + "@id": "_:b7281", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "result": { - "@id": "_:b25447", + "@id": "_:b24857", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13648", + "@id": "_:b7283", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010", "result": { - "@id": "_:b24242", + "@id": "_:b25028", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0010-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0010-context.jsonld" + }, + "title": "array to @graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0010-in.jsonld", + "rdfs:comment": "An array of objects is serialized with @graph" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0066-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0066-out.jsonld", - "title": "Reverse-map keys with @vocab", - "rdfs:comment": "Expand uses @vocab to expand keys in reverse-maps", "assertions": [ { - "@id": "_:b19210", + "@id": "_:b8243", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "result": { - "@id": "_:b20342", + "@id": "_:b23892", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19209", + "@id": "_:b8244", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26445", + "@id": "_:b25666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19201", + "@id": "_:b8245", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19202", + "@id": "_:b26881", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19204", + "@id": "_:b8247", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10642", + "@id": "_:b23061", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19211", + "@id": "_:b8246", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "result": { - "@id": "_:b17905", + "@id": "_:b24967", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19203", + "@id": "_:b8240", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23643", + "@id": "_:b23013", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19206", + "@id": "_:b8237", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26102", + "@id": "_:b8238", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19205", + "@id": "_:b8239", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "result": { - "@id": "_:b25289", + "@id": "_:b15939", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19208", + "@id": "_:b8241", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "result": { - "@id": "_:b26444", + "@id": "_:b23347", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19207", + "@id": "_:b8242", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011", "result": { - "@id": "_:b23504", + "@id": "_:b4984", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0011-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0011-context.jsonld" + }, + "title": "compact date", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0011-in.jsonld", + "rdfs:comment": "Expanded value with type xsd:dateTime is represented as string with type coercion" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0067-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0067-out.jsonld", - "title": "prefix://suffix not a compact IRI", - "rdfs:comment": "prefix:suffix values are not interpreted as compact IRIs if suffix begins with two slashes", "assertions": [ { - "@id": "_:b1012", + "@id": "_:b38", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "result": { - "@id": "_:b19846", + "@id": "_:b48", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1015", + "@id": "_:b39", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25646", + "@id": "_:b49", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1011", + "@id": "_:b36", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19575", + "@id": "_:b46", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1014", + "@id": "_:b32", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18023", + "@id": "_:b42", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1018", + "@id": "_:b33", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "result": { - "@id": "_:b12918", + "@id": "_:b43", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1016", + "@id": "_:b31", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25936", + "@id": "_:b41", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1013", + "@id": "_:b37", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22485", + "@id": "_:b47", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1007", + "@id": "_:b30", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "result": { - "@id": "_:b1008", + "@id": "_:b40", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1017", + "@id": "_:b35", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "result": { - "@id": "_:b25937", + "@id": "_:b45", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1010", + "@id": "_:b34", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012", "result": { - "@id": "_:b10213", + "@id": "_:b44", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0012-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0012-context.jsonld" + }, + "title": "native types", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0012-in.jsonld", + "rdfs:comment": "Native values are unmodified during compaction" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0068-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0068-out.jsonld", - "title": "_:suffix values are not a compact IRI", - "rdfs:comment": "prefix:suffix values are not interpreted as compact IRIs if prefix is an underscore", "assertions": [ { - "@id": "_:b13199", + "@id": "_:b128", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "result": { - "@id": "_:b13209", + "@id": "_:b138", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13201", + "@id": "_:b124", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13211", + "@id": "_:b134", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13208", + "@id": "_:b129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13216", + "@id": "_:b139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13204", + "@id": "_:b126", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13213", + "@id": "_:b136", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13207", + "@id": "_:b123", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "result": { - "@id": "_:b9190", + "@id": "_:b133", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13203", + "@id": "_:b125", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13212", + "@id": "_:b135", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13202", + "@id": "_:b127", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6956", + "@id": "_:b137", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13205", + "@id": "_:b130", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "result": { - "@id": "_:b13214", + "@id": "_:b140", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13200", + "@id": "_:b122", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "result": { - "@id": "_:b13210", + "@id": "_:b132", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13206", + "@id": "_:b131", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013", "result": { - "@id": "_:b13215", + "@id": "_:b141", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0013-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0013-context.jsonld" + }, + "title": "@value with @language", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0013-in.jsonld", + "rdfs:comment": "Values with @language remain in expanded form by default" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0069-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0069-out.jsonld", - "title": "Compact IRI as term with type mapping", - "rdfs:comment": "Redefine compact IRI to define type mapping using the compact IRI itself as value of @id", "assertions": [ { - "@id": "_:b9940", + "@id": "_:b19273", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "result": { - "@id": "_:b23345", + "@id": "_:b14783", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9936", + "@id": "_:b19270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20404", + "@id": "_:b22392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9937", + "@id": "_:b19278", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22909", + "@id": "_:b19971", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9942", + "@id": "_:b19275", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17887", + "@id": "_:b25235", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9944", + "@id": "_:b19271", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "result": { - "@id": "_:b24724", + "@id": "_:b20407", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9943", + "@id": "_:b19268", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20691", + "@id": "_:b19269", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9934", + "@id": "_:b19276", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9935", + "@id": "_:b26522", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9938", + "@id": "_:b19272", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "result": { - "@id": "_:b24078", + "@id": "_:b24403", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9939", + "@id": "_:b19274", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "result": { - "@id": "_:b23973", + "@id": "_:b25983", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9941", + "@id": "_:b19277", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014", "result": { - "@id": "_:b24723", + "@id": "_:b12135", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0014-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0014-context.jsonld" + }, + "title": "array to aliased @graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0014-in.jsonld", + "rdfs:comment": "Aliasing @graph uses alias in compacted document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0070-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0070-out.jsonld", - "title": "Compact IRI as term defined using equivalent compact IRI", - "rdfs:comment": "Redefine compact IRI to define type mapping using the compact IRI itself as string value", "assertions": [ { - "@id": "_:b14077", + "@id": "_:b71", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "result": { - "@id": "_:b14087", + "@id": "_:b711", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14074", + "@id": "_:b72", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14084", + "@id": "_:b712", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14075", + "@id": "_:b73", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14085", + "@id": "_:b713", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14078", + "@id": "_:b76", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14088", + "@id": "_:b716", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14079", + "@id": "_:b75", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "result": { - "@id": "_:b14089", + "@id": "_:b715", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14080", + "@id": "_:b74", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14090", + "@id": "_:b714", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14082", + "@id": "_:b80", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14091", + "@id": "_:b720", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14076", + "@id": "_:b78", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "result": { - "@id": "_:b14086", + "@id": "_:b718", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14073", + "@id": "_:b79", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "result": { - "@id": "_:b14083", + "@id": "_:b719", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14081", + "@id": "_:b77", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015", "result": { - "@id": "_:b5416", + "@id": "_:b717", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0015-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0015-context.jsonld" + }, + "title": "best match compaction", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0015-in.jsonld", + "rdfs:comment": "Property with values of different types use most appropriate term when compacting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0072-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0072-out.jsonld", - "title": "Redefine term using @vocab, not itself", - "rdfs:comment": "Redefining a term as itself when @vocab is defined uses @vocab, not previous term definition", "assertions": [ { - "@id": "_:b1160", + "@id": "_:b6359", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "result": { - "@id": "_:b16069", + "@id": "_:b6369", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1161", + "@id": "_:b6357", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25892", + "@id": "_:b6367", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1164", + "@id": "_:b6363", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26336", + "@id": "_:b6373", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1165", + "@id": "_:b6361", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25219", + "@id": "_:b6371", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1156", + "@id": "_:b6364", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "result": { - "@id": "_:b1157", + "@id": "_:b6374", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1159", + "@id": "_:b6356", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4178", + "@id": "_:b6366", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1158", + "@id": "_:b6365", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11065", + "@id": "_:b6375", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1162", + "@id": "_:b6360", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "result": { - "@id": "_:b21080", + "@id": "_:b6370", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1163", + "@id": "_:b6358", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "result": { - "@id": "_:b26734", + "@id": "_:b6368", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1166", + "@id": "_:b6362", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016", "result": { - "@id": "_:b24587", + "@id": "_:b6372", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0016-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0016-context.jsonld" + }, + "title": "recursive named graphs", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0016-in.jsonld", + "rdfs:comment": "Compacting a document with multiple embedded uses of @graph" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0073-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0073-out.jsonld", - "title": "@context not first property", - "rdfs:comment": "Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition", "assertions": [ { - "@id": "_:b3804", + "@id": "_:b1230", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "result": { - "@id": "_:b22084", + "@id": "_:b22362", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3805", + "@id": "_:b1221", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23591", + "@id": "_:b1222", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3807", + "@id": "_:b1224", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17990", + "@id": "_:b19837", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3809", + "@id": "_:b1231", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19658", + "@id": "_:b19831", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3801", + "@id": "_:b1227", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "result": { - "@id": "_:b3802", + "@id": "_:b22359", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3808", + "@id": "_:b1226", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25887", + "@id": "_:b18752", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3803", + "@id": "_:b1223", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8950", + "@id": "_:b18882", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3810", + "@id": "_:b1229", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "result": { - "@id": "_:b23687", + "@id": "_:b22361", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3811", + "@id": "_:b1228", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "result": { - "@id": "_:b26751", + "@id": "_:b22360", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3806", + "@id": "_:b1225", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017", "result": { - "@id": "_:b24722", + "@id": "_:b21320", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0017-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0017-context.jsonld" + }, + "title": "A term mapping to null removes the mapping", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0017-in.jsonld", + "rdfs:comment": "Mapping a term to null causes the property and its values to be removed from the compacted document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0074-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0074-out.jsonld", - "title": "@id not first property", - "rdfs:comment": "Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition", "assertions": [ { - "@id": "_:b12948", + "@id": "_:b16462", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "result": { - "@id": "_:b26504", + "@id": "_:b18184", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12940", + "@id": "_:b16464", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14998", + "@id": "_:b22916", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12938", + "@id": "_:b16457", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12939", + "@id": "_:b17667", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12947", + "@id": "_:b16463", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1229", + "@id": "_:b26165", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12945", + "@id": "_:b16455", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "result": { - "@id": "_:b26639", + "@id": "_:b16456", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12941", + "@id": "_:b16459", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19612", + "@id": "_:b20774", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12942", + "@id": "_:b16460", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21471", + "@id": "_:b21730", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12944", + "@id": "_:b16458", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "result": { - "@id": "_:b26540", + "@id": "_:b18586", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12946", + "@id": "_:b16461", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "result": { - "@id": "_:b13552", + "@id": "_:b25166", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12943", + "@id": "_:b16465", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018", "result": { - "@id": "_:b25297", + "@id": "_:b26166", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0018-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0018-context.jsonld" + }, + "title": "best matching term for lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0018-in.jsonld", + "rdfs:comment": "Lists with values of different types use best term in compacted document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6612", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0075-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0075-out.jsonld", - "title": "@vocab as blank node identifier", - "rdfs:comment": "Use @vocab to map all properties to blank node identifiers", "assertions": [ { - "@id": "_:b6610", + "@id": "_:b9768", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "result": { - "@id": "_:b6611", + "@id": "_:b19857", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6615", + "@id": "_:b9773", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22191", + "@id": "_:b26287", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6613", + "@id": "_:b9774", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16168", + "@id": "_:b22910", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6617", + "@id": "_:b9772", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23873", + "@id": "_:b22196", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6620", + "@id": "_:b9770", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "result": { - "@id": "_:b19139", + "@id": "_:b25456", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6616", + "@id": "_:b9771", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23056", + "@id": "_:b26059", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6621", + "@id": "_:b9766", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21991", + "@id": "_:b9767", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6614", + "@id": "_:b9769", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "result": { - "@id": "_:b7488", + "@id": "_:b23708", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6619", + "@id": "_:b9775", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "result": { - "@id": "_:b23875", + "@id": "_:b20850", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6618", + "@id": "_:b9776", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019", "result": { - "@id": "_:b23874", + "@id": "_:b23403", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0019-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0019-context.jsonld" + }, + "title": "Keep duplicate values in @list and @set", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0019-in.jsonld", + "rdfs:comment": "Duplicate values in @list or @set are retained in compacted document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b912", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example/base/" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0076-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0076-out.jsonld", - "title": "base option overrides document location", - "rdfs:comment": "Use of the base option overrides the document location", "assertions": [ { - "@id": "_:b918", + "@id": "_:b16125", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "result": { - "@id": "_:b23325", + "@id": "_:b18799", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b914", + "@id": "_:b16127", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11155", + "@id": "_:b3384", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b917", + "@id": "_:b16128", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23324", + "@id": "_:b25989", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b913", + "@id": "_:b16126", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4742", + "@id": "_:b18372", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b920", + "@id": "_:b16132", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "result": { - "@id": "_:b23327", + "@id": "_:b18434", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b919", + "@id": "_:b16124", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23326", + "@id": "_:b17359", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b909", + "@id": "_:b16122", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b910", + "@id": "_:b16123", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b921", + "@id": "_:b16131", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "result": { - "@id": "_:b23328", + "@id": "_:b25846", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b915", + "@id": "_:b16129", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "result": { - "@id": "_:b17286", + "@id": "_:b19147", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b916", + "@id": "_:b16130", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020", "result": { - "@id": "_:b18399", + "@id": "_:b26179", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0020-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0020-context.jsonld" + }, + "title": "Compact @id that is a property IRI when @container is @list", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0020-in.jsonld", + "rdfs:comment": "A term with @container: @list is also used as the value of an @id, if appropriate" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11337", - "https://w3c.github.io/json-ld-api/tests/vocab#expandContext": { - "@id": "https://w3c.github.io/json-ld-api/tests/expand/0077-context.jsonld" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0077-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0077-out.jsonld", - "title": "expandContext option", - "rdfs:comment": "Use of the expandContext option to expand the input document", "assertions": [ { - "@id": "_:b11335", + "@id": "_:b3289", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "result": { - "@id": "_:b11336", + "@id": "_:b26298", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11340", + "@id": "_:b3287", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16318", + "@id": "_:b1676", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11343", + "@id": "_:b3284", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19081", + "@id": "_:b20605", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11339", + "@id": "_:b3283", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19078", + "@id": "_:b19739", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11341", + "@id": "_:b3282", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "result": { - "@id": "_:b19079", + "@id": "_:b14997", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11342", + "@id": "_:b3286", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19080", + "@id": "_:b18074", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11345", + "@id": "_:b3288", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19082", + "@id": "_:b23465", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11344", + "@id": "_:b3285", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "result": { - "@id": "_:b12095", + "@id": "_:b22124", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11346", + "@id": "_:b3290", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "result": { - "@id": "_:b19083", + "@id": "_:b13237", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11338", + "@id": "_:b3291", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021", "result": { - "@id": "_:b19077", + "@id": "_:b5133", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0021-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0021-context.jsonld" + }, + "title": "Compact properties and types using @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0021-in.jsonld", + "rdfs:comment": "@vocab is used to create relative properties and types if no other term matches" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0078-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0078-out.jsonld", - "title": "multiple reverse properties", - "rdfs:comment": "Use of multiple reverse properties", "assertions": [ { - "@id": "_:b805", + "@id": "_:b6458", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "result": { - "@id": "_:b815", + "@id": "_:b22107", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b798", + "@id": "_:b6460", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b808", + "@id": "_:b20743", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b801", + "@id": "_:b6457", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b811", + "@id": "_:b22106", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b800", + "@id": "_:b6462", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b810", + "@id": "_:b1449", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b806", + "@id": "_:b6456", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "result": { - "@id": "_:b816", + "@id": "_:b22105", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b803", + "@id": "_:b6461", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b813", + "@id": "_:b22109", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b802", + "@id": "_:b6455", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b812", + "@id": "_:b17971", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b804", + "@id": "_:b6454", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "result": { - "@id": "_:b814", + "@id": "_:b17626", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b799", + "@id": "_:b6459", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "result": { - "@id": "_:b809", + "@id": "_:b22108", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b807", + "@id": "_:b6452", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022", "result": { - "@id": "_:b817", + "@id": "_:b6453", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0022-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0022-context.jsonld" + }, + "title": "@list compaction of nested properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0022-in.jsonld", + "rdfs:comment": "Compact nested properties using @list containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b327", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0079-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0079-out.jsonld", - "title": "expand @graph container", - "rdfs:comment": "Use of @graph containers", "assertions": [ { - "@id": "_:b336", + "@id": "_:b1898", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "result": { - "@id": "_:b346", + "@id": "_:b19975", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b331", + "@id": "_:b1903", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b341", + "@id": "_:b21664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b328", + "@id": "_:b1905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b338", + "@id": "_:b21666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b332", + "@id": "_:b1902", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b342", + "@id": "_:b21663", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b329", + "@id": "_:b1904", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "result": { - "@id": "_:b339", + "@id": "_:b21665", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b334", + "@id": "_:b1901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b344", + "@id": "_:b21662", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b333", + "@id": "_:b1899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b343", + "@id": "_:b21422", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b337", + "@id": "_:b1900", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "result": { - "@id": "_:b347", + "@id": "_:b17195", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b335", + "@id": "_:b1897", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "result": { - "@id": "_:b345", + "@id": "_:b17663", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b330", + "@id": "_:b1895", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023", "result": { - "@id": "_:b340", + "@id": "_:b1896", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0023-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0023-context.jsonld" + }, + "title": "prefer @vocab over compacted IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0023-in.jsonld", + "rdfs:comment": "@vocab takes precedence over prefixes - even if the result is longer" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14412", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0080-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0080-out.jsonld", - "title": "expand [@graph, @set] container", - "rdfs:comment": "Use of [@graph, @set] containers", "assertions": [ { - "@id": "_:b14419", + "@id": "_:b4507", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "result": { - "@id": "_:b22883", + "@id": "_:b22790", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14415", + "@id": "_:b4505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22880", + "@id": "_:b17455", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14413", + "@id": "_:b4504", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20280", + "@id": "_:b22140", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14421", + "@id": "_:b4506", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22885", + "@id": "_:b8496", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14418", + "@id": "_:b4508", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "result": { - "@id": "_:b22882", + "@id": "_:b8415", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14416", + "@id": "_:b4503", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14740", + "@id": "_:b20853", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14420", + "@id": "_:b4499", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22884", + "@id": "_:b4500", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14417", + "@id": "_:b4501", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "result": { - "@id": "_:b22881", + "@id": "_:b11242", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14410", + "@id": "_:b4502", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "result": { - "@id": "_:b14411", + "@id": "_:b17515", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14414", + "@id": "_:b4509", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024", "result": { - "@id": "_:b22879", + "@id": "_:b16726", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0024-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0024-context.jsonld" + }, + "title": "most specific term matching in @list.", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0024-in.jsonld", + "rdfs:comment": "The most specific term that matches all of the elements in the list, taking into account the default language, must be selected." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8685", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0081-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0081-out.jsonld", - "title": "Creates an @graph container if value is a graph", - "rdfs:comment": "Don't double-expand an already expanded graph", "assertions": [ { - "@id": "_:b8686", + "@id": "_:b168", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "result": { - "@id": "_:b11822", + "@id": "_:b178", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8688", + "@id": "_:b165", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16386", + "@id": "_:b175", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8693", + "@id": "_:b169", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19387", + "@id": "_:b179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8689", + "@id": "_:b167", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26286", + "@id": "_:b177", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8694", + "@id": "_:b171", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "result": { - "@id": "_:b24908", + "@id": "_:b181", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8687", + "@id": "_:b166", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21735", + "@id": "_:b176", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8691", + "@id": "_:b163", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4711", + "@id": "_:b173", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8683", + "@id": "_:b164", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "result": { - "@id": "_:b8684", + "@id": "_:b174", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8690", + "@id": "_:b162", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "result": { - "@id": "_:b26287", + "@id": "_:b172", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8692", + "@id": "_:b170", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025", "result": { - "@id": "_:b6574", + "@id": "_:b180", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0025-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0025-context.jsonld" + }, + "title": "Language maps", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0025-in.jsonld", + "rdfs:comment": "Multiple values with different languages use language maps if property has @container: @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b22890", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0082-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0082-out.jsonld", - "title": "expand [@graph, @index] container", - "rdfs:comment": "Use of @graph containers with @index", "assertions": [ { - "@id": "_:b22896", + "@id": "_:b19657", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "result": { - "@id": "_:b26976", + "@id": "_:b23905", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b22897", + "@id": "_:b19651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3270", + "@id": "_:b1564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22899", + "@id": "_:b19655", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26980", + "@id": "_:b22385", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22893", + "@id": "_:b19652", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25306", + "@id": "_:b25580", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22894", + "@id": "_:b19656", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "result": { - "@id": "_:b25596", + "@id": "_:b25876", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22891", + "@id": "_:b19654", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22489", + "@id": "_:b25875", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22892", + "@id": "_:b19649", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25626", + "@id": "_:b22923", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22898", + "@id": "_:b19650", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "result": { - "@id": "_:b24853", + "@id": "_:b18012", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b22895", + "@id": "_:b19647", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "result": { - "@id": "_:b26618", + "@id": "_:b19648", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22889", + "@id": "_:b19653", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026", "result": { - "@id": "_:b19323", + "@id": "_:b14391", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0026-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0026-context.jsonld" + }, + "title": "Language map term selection with complications", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0026-in.jsonld", + "rdfs:comment": "Test appropriate property use given language maps with @vocab, a default language, and a competing term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15975", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0083-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0083-out.jsonld", - "title": "expand [@graph, @index, @set] container", - "rdfs:comment": "Use of @graph containers with @index and @set", "assertions": [ { - "@id": "_:b15984", + "@id": "_:b13816", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "result": { - "@id": "_:b19652", + "@id": "_:b26580", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15976", + "@id": "_:b13817", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20881", + "@id": "_:b26823", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15978", + "@id": "_:b13815", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23425", + "@id": "_:b16506", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15981", + "@id": "_:b13818", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18324", + "@id": "_:b1536", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15982", + "@id": "_:b13819", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "result": { - "@id": "_:b16978", + "@id": "_:b26824", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15977", + "@id": "_:b13813", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5330", + "@id": "_:b22275", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15979", + "@id": "_:b13814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21888", + "@id": "_:b23291", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15983", + "@id": "_:b13812", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "result": { - "@id": "_:b23404", + "@id": "_:b17140", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15980", + "@id": "_:b13810", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "result": { - "@id": "_:b16230", + "@id": "_:b13811", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15973", + "@id": "_:b13820", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027", "result": { - "@id": "_:b15974", + "@id": "_:b22677", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0027-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0027-context.jsonld" + }, + "title": "@container: @set with multiple values", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0027-in.jsonld", + "rdfs:comment": "Fall back to term with @set container if term with language map is defined" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12895", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0084-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0084-out.jsonld", - "title": "Do not expand [@graph, @index] container if value is a graph", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b12896", + "@id": "_:b5287", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "result": { - "@id": "_:b13782", + "@id": "_:b26048", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12898", + "@id": "_:b5283", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19978", + "@id": "_:b8967", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12893", + "@id": "_:b5285", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12894", + "@id": "_:b18230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12897", + "@id": "_:b5279", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25039", + "@id": "_:b5280", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12904", + "@id": "_:b5288", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "result": { - "@id": "_:b22111", + "@id": "_:b20216", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12899", + "@id": "_:b5284", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25040", + "@id": "_:b11099", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12900", + "@id": "_:b5286", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25041", + "@id": "_:b25432", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12901", + "@id": "_:b5282", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "result": { - "@id": "_:b25042", + "@id": "_:b13937", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12903", + "@id": "_:b5289", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "result": { - "@id": "_:b25043", + "@id": "_:b22973", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12902", + "@id": "_:b5281", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028", "result": { - "@id": "_:b20808", + "@id": "_:b6226", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0028-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0028-context.jsonld" + }, + "title": "Alias keywords and use @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0028-in.jsonld", + "rdfs:comment": "Combination of keyword aliases and @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14225", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0085-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0085-out.jsonld", - "title": "expand [@graph, @id] container", - "rdfs:comment": "Use of @graph containers with @id", "assertions": [ { - "@id": "_:b14223", + "@id": "_:b3416", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "result": { - "@id": "_:b14224", + "@id": "_:b11166", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14226", + "@id": "_:b3415", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15851", + "@id": "_:b11408", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14231", + "@id": "_:b3417", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25818", + "@id": "_:b14093", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14234", + "@id": "_:b3420", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24116", + "@id": "_:b14095", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14227", + "@id": "_:b3411", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "result": { - "@id": "_:b19969", + "@id": "_:b3412", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14230", + "@id": "_:b3419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26884", + "@id": "_:b2368", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14233", + "@id": "_:b3418", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16317", + "@id": "_:b14094", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14232", + "@id": "_:b3413", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "result": { - "@id": "_:b26772", + "@id": "_:b14091", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14228", + "@id": "_:b3414", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "result": { - "@id": "_:b18279", + "@id": "_:b14092", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14229", + "@id": "_:b3421", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029", "result": { - "@id": "_:b5138", + "@id": "_:b14096", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0029-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0029-context.jsonld" + }, + "title": "Simple @index map", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0029-in.jsonld", + "rdfs:comment": "Output uses index mapping if term is defined with @container: @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11782", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0086-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0086-out.jsonld", - "title": "expand [@graph, @id, @set] container", - "rdfs:comment": "Use of @graph containers with @id and @set", "assertions": [ { - "@id": "_:b11785", + "@id": "_:b4091", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "result": { - "@id": "_:b18596", + "@id": "_:b23066", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11786", + "@id": "_:b4088", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23508", + "@id": "_:b11095", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11787", + "@id": "_:b4085", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24261", + "@id": "_:b4086", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11791", + "@id": "_:b4094", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23381", + "@id": "_:b17845", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11780", + "@id": "_:b4095", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "result": { - "@id": "_:b11781", + "@id": "_:b17932", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11783", + "@id": "_:b4090", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15081", + "@id": "_:b7706", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11788", + "@id": "_:b4089", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24262", + "@id": "_:b17486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11789", + "@id": "_:b4092", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "result": { - "@id": "_:b11072", + "@id": "_:b23067", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11784", + "@id": "_:b4087", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "result": { - "@id": "_:b2751", + "@id": "_:b9300", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11790", + "@id": "_:b4093", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030", "result": { - "@id": "_:b20953", + "@id": "_:b23068", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0030-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0030-context.jsonld" + }, + "title": "non-matching @container: @index", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0030-in.jsonld", + "rdfs:comment": "Preserve @index tags if not compacted to an index map" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5722", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0087-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0087-out.jsonld", - "title": "Do not expand [@graph, @id] container if value is a graph", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b5731", + "@id": "_:b4", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "result": { - "@id": "_:b5741", + "@id": "_:b14", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5726", + "@id": "_:b3", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5736", + "@id": "_:b13", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5730", + "@id": "_:b5", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5740", + "@id": "_:b15", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5729", + "@id": "_:b2", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5739", + "@id": "_:b12", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5728", + "@id": "_:b0", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "result": { - "@id": "_:b5738", + "@id": "_:b10", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5727", + "@id": "_:b1", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5737", + "@id": "_:b11", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5724", + "@id": "_:b9", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5734", + "@id": "_:b19", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5723", + "@id": "_:b7", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "result": { - "@id": "_:b5733", + "@id": "_:b17", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5725", + "@id": "_:b8", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "result": { - "@id": "_:b5735", + "@id": "_:b18", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5732", + "@id": "_:b6", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031", "result": { - "@id": "_:b5742", + "@id": "_:b16", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0031-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0031-context.jsonld" + }, + "title": "Compact @reverse", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0031-in.jsonld", + "rdfs:comment": "Compact traverses through @reverse" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0088-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0088-out.jsonld", - "title": "Do not expand native values to IRIs", - "rdfs:comment": "Value Expansion does not expand native values, such as booleans, to a node object", "assertions": [ { - "@id": "_:b13879", + "@id": "_:b268", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "result": { - "@id": "_:b13880", + "@id": "_:b278", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13884", + "@id": "_:b264", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16696", + "@id": "_:b274", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13886", + "@id": "_:b266", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16698", + "@id": "_:b276", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13883", + "@id": "_:b273", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16695", + "@id": "_:b283", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13882", + "@id": "_:b265", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "result": { - "@id": "_:b16694", + "@id": "_:b275", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13888", + "@id": "_:b271", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8329", + "@id": "_:b281", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13881", + "@id": "_:b269", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1761", + "@id": "_:b279", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13889", + "@id": "_:b267", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "result": { - "@id": "_:b16700", + "@id": "_:b277", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13885", + "@id": "_:b270", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "result": { - "@id": "_:b16697", + "@id": "_:b280", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13887", + "@id": "_:b272", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032", "result": { - "@id": "_:b16699", + "@id": "_:b282", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0032-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0032-context.jsonld" + }, + "title": "Compact keys in reverse-maps", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0032-in.jsonld", + "rdfs:comment": "Compact traverses through @reverse" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12252", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example/base/" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0089-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0089-out.jsonld", - "title": "empty @base applied to the base option", - "rdfs:comment": "Use of an empty @base is applied to the base option", "assertions": [ { - "@id": "_:b12255", + "@id": "_:b5470", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "result": { - "@id": "_:b20952", + "@id": "_:b5471", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12260", + "@id": "_:b5476", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25810", + "@id": "_:b24022", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12259", + "@id": "_:b5477", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25809", + "@id": "_:b14119", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12261", + "@id": "_:b5472", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23615", + "@id": "_:b21244", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12250", + "@id": "_:b5479", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "result": { - "@id": "_:b12251", + "@id": "_:b3292", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12254", + "@id": "_:b5474", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15913", + "@id": "_:b18138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12253", + "@id": "_:b5480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13411", + "@id": "_:b24024", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12256", + "@id": "_:b5478", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "result": { - "@id": "_:b23650", + "@id": "_:b24023", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12257", + "@id": "_:b5473", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "result": { - "@id": "_:b25732", + "@id": "_:b24020", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12258", + "@id": "_:b5475", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033", "result": { - "@id": "_:b17034", + "@id": "_:b24021", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0033-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0033-context.jsonld" + }, + "title": "Compact reverse-map to reverse property", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0033-in.jsonld", + "rdfs:comment": "A reverse map is replaced with a matching property defined with @reverse" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13073", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example/base/" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0090-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0090-out.jsonld", - "title": "relative @base overrides base option and document location", - "rdfs:comment": "Use of a relative @base overrides base option and document location", "assertions": [ { - "@id": "_:b19150", + "@id": "_:b20265", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "result": { - "@id": "_:b26358", + "@id": "_:b26376", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19148", + "@id": "_:b20262", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21788", + "@id": "_:b20441", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19149", + "@id": "_:b20266", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16578", + "@id": "_:b26397", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19144", + "@id": "_:b20260", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26335", + "@id": "_:b20261", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19141", + "@id": "_:b20268", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "result": { - "@id": "_:b19142", + "@id": "_:b25936", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19151", + "@id": "_:b20267", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24764", + "@id": "_:b26398", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19145", + "@id": "_:b20269", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26356", + "@id": "_:b24715", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19146", + "@id": "_:b20263", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "result": { - "@id": "_:b26357", + "@id": "_:b24869", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19143", + "@id": "_:b20264", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "result": { - "@id": "_:b23631", + "@id": "_:b19740", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19147", + "@id": "_:b20270", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034", "result": { - "@id": "_:b20577", + "@id": "_:b4918", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0034-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0034-context.jsonld" + }, + "title": "Skip property with @reverse if no match", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0034-in.jsonld", + "rdfs:comment": "Do not use reverse property if no other property matches as normal property" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16521", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example/base/" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0091-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0091-out.jsonld", - "title": "relative and absolute @base overrides base option and document location", - "rdfs:comment": "Use of a relative and absolute @base overrides base option and document location", "assertions": [ { - "@id": "_:b16525", + "@id": "_:b12702", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "result": { - "@id": "_:b26657", + "@id": "_:b24862", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16527", + "@id": "_:b12703", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22369", + "@id": "_:b21634", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16524", + "@id": "_:b12705", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25769", + "@id": "_:b26790", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16526", + "@id": "_:b12709", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26330", + "@id": "_:b26183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16522", + "@id": "_:b12707", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "result": { - "@id": "_:b11537", + "@id": "_:b26851", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16528", + "@id": "_:b12706", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26722", + "@id": "_:b26978", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16530", + "@id": "_:b12701", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26643", + "@id": "_:b15145", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16519", + "@id": "_:b12708", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "result": { - "@id": "_:b16520", + "@id": "_:b2144", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16523", + "@id": "_:b12699", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "result": { - "@id": "_:b24243", + "@id": "_:b12700", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16529", + "@id": "_:b12704", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035", "result": { - "@id": "_:b26334", + "@id": "_:b25565", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0035-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0035-context.jsonld" + }, + "title": "Compact @reverse node references using strings", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0035-in.jsonld", + "rdfs:comment": "Compact node references to strings for reverse properties using @type: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4620", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0092-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0092-out.jsonld", - "title": "Various relative IRIs as properties with with @vocab: ''", - "rdfs:comment": "Pathological relative property IRIs", "assertions": [ { - "@id": "_:b4623", + "@id": "_:b826", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "result": { - "@id": "_:b24064", + "@id": "_:b23057", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4627", + "@id": "_:b824", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23607", + "@id": "_:b23055", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4625", + "@id": "_:b823", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5550", + "@id": "_:b23054", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4621", + "@id": "_:b825", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11281", + "@id": "_:b23056", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4628", + "@id": "_:b828", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "result": { - "@id": "_:b1442", + "@id": "_:b23059", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4626", + "@id": "_:b821", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24808", + "@id": "_:b23052", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4622", + "@id": "_:b820", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22563", + "@id": "_:b19211", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4618", + "@id": "_:b827", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "result": { - "@id": "_:b4619", + "@id": "_:b23058", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4624", + "@id": "_:b818", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "result": { - "@id": "_:b24844", + "@id": "_:b819", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4629", + "@id": "_:b822", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036", "result": { - "@id": "_:b26940", + "@id": "_:b23053", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0036-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0036-context.jsonld" + }, + "title": "Compact reverse properties using index containers", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0036-in.jsonld", + "rdfs:comment": "Compact using both reverse properties and index containers" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6506", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0093-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0093-out.jsonld", - "title": "expand @graph container (multiple objects)", - "rdfs:comment": "Use of @graph containers", "assertions": [ { - "@id": "_:b6514", + "@id": "_:b16277", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "result": { - "@id": "_:b20689", + "@id": "_:b22457", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6510", + "@id": "_:b16272", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16575", + "@id": "_:b22453", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6508", + "@id": "_:b16274", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20518", + "@id": "_:b7040", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6515", + "@id": "_:b16275", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20690", + "@id": "_:b22455", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6507", + "@id": "_:b16279", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "result": { - "@id": "_:b11349", + "@id": "_:b22458", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6509", + "@id": "_:b16271", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20685", + "@id": "_:b20832", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6513", + "@id": "_:b16269", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20688", + "@id": "_:b16270", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6512", + "@id": "_:b16278", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "result": { - "@id": "_:b20687", + "@id": "_:b13941", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6511", + "@id": "_:b16276", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "result": { - "@id": "_:b20686", + "@id": "_:b22456", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6504", + "@id": "_:b16273", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037", "result": { - "@id": "_:b6505", + "@id": "_:b22454", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0037-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0037-context.jsonld" + }, + "title": "Compact keys in @reverse using @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0037-in.jsonld", + "rdfs:comment": "Compact keys in @reverse using @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b829", + "@id": "_:b182", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0094-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0094-out.jsonld", - "title": "expand [@graph, @set] container (multiple objects)", - "rdfs:comment": "Use of [@graph, @set] containers", "assertions": [ { - "@id": "_:b15020", + "@id": "_:b293", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "result": { - "@id": "_:b23337", + "@id": "_:b22176", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15015", + "@id": "_:b287", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21768", + "@id": "_:b22708", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15017", + "@id": "_:b285", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20464", + "@id": "_:b18865", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15018", + "@id": "_:b288", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23336", + "@id": "_:b26624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15021", + "@id": "_:b292", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "result": { - "@id": "_:b23338", + "@id": "_:b26626", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15016", + "@id": "_:b291", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22149", + "@id": "_:b26428", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15023", + "@id": "_:b284", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23340", + "@id": "_:b3338", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15013", + "@id": "_:b286", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "result": { - "@id": "_:b15014", + "@id": "_:b14738", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15019", + "@id": "_:b290", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "result": { - "@id": "_:b21515", + "@id": "_:b25690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15022", + "@id": "_:b289", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038", "result": { - "@id": "_:b23339", + "@id": "_:b26625", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0038a-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0038-context.jsonld" + }, + "title": "Index map round-tripping", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0038-in.jsonld", + "rdfs:comment": "Complex round-tripping use case from Drupal" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16603", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0095-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0095-out.jsonld", - "title": "Creates an @graph container if value is a graph (multiple objects)", - "rdfs:comment": "Double-expand an already expanded graph", "assertions": [ { - "@id": "_:b16602", + "@id": "_:b16298", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "result": { - "@id": "_:b15830", + "@id": "_:b25331", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16604", + "@id": "_:b16299", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19630", + "@id": "_:b18883", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16608", + "@id": "_:b16303", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26081", + "@id": "_:b20722", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16606", + "@id": "_:b16296", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23166", + "@id": "_:b18189", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16612", + "@id": "_:b16302", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "result": { - "@id": "_:b24731", + "@id": "_:b25333", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16610", + "@id": "_:b16297", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b27024", + "@id": "_:b24076", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16609", + "@id": "_:b16304", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13415", + "@id": "_:b6184", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16611", + "@id": "_:b16301", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "result": { - "@id": "_:b22431", + "@id": "_:b25332", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16605", + "@id": "_:b16295", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "result": { - "@id": "_:b21434", + "@id": "_:b4275", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16607", + "@id": "_:b16300", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039", "result": { - "@id": "_:b6951", + "@id": "_:b24818", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0039-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0039-context.jsonld" + }, + "title": "@graph is array", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0039-in.jsonld", + "rdfs:comment": "Value of @graph is always an array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7260", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0096-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0096-out.jsonld", - "title": "expand [@graph, @index] container (multiple indexed objects)", - "rdfs:comment": "Use of @graph containers with @index", "assertions": [ { - "@id": "_:b7265", + "@id": "_:b9106", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "result": { - "@id": "_:b7275", + "@id": "_:b26490", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7266", + "@id": "_:b9108", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7276", + "@id": "_:b27029", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7262", + "@id": "_:b9104", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7272", + "@id": "_:b26741", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7267", + "@id": "_:b9101", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7277", + "@id": "_:b22138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7263", + "@id": "_:b9105", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "result": { - "@id": "_:b7273", + "@id": "_:b13164", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7270", + "@id": "_:b9098", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7280", + "@id": "_:b9099", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7268", + "@id": "_:b9103", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7278", + "@id": "_:b1285", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7261", + "@id": "_:b9102", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "result": { - "@id": "_:b7271", + "@id": "_:b20898", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7264", + "@id": "_:b9100", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "result": { - "@id": "_:b7274", + "@id": "_:b17294", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7269", + "@id": "_:b9107", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040", "result": { - "@id": "_:b7279", + "@id": "_:b24934", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0040-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0040-context.jsonld" + }, + "title": "@list is array", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0040-in.jsonld", + "rdfs:comment": "Ensure that value of @list is always an array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8602", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0097-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0097-out.jsonld", - "title": "expand [@graph, @index, @set] container (multiple objects)", - "rdfs:comment": "Use of @graph containers with @index and @set", "assertions": [ { - "@id": "_:b8608", + "@id": "_:b1611", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "result": { - "@id": "_:b10056", + "@id": "_:b20443", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8607", + "@id": "_:b1606", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10055", + "@id": "_:b7148", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8605", + "@id": "_:b1609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10053", + "@id": "_:b893", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8609", + "@id": "_:b1610", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10057", + "@id": "_:b26405", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8611", + "@id": "_:b1612", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "result": { - "@id": "_:b10059", + "@id": "_:b22221", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8610", + "@id": "_:b1605", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10058", + "@id": "_:b22028", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8606", + "@id": "_:b1608", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10054", + "@id": "_:b23157", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8603", + "@id": "_:b1607", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "result": { - "@id": "_:b10051", + "@id": "_:b25263", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8600", + "@id": "_:b1603", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "result": { - "@id": "_:b8601", + "@id": "_:b1604", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8604", + "@id": "_:b1613", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041", "result": { - "@id": "_:b10052", + "@id": "_:b25072", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0041-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0041-context.jsonld" + }, + "title": "index rejects term having @list", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0041-in.jsonld", + "rdfs:comment": "If an index is present, a term having an @list container is not selected" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6687", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0098-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0098-out.jsonld", - "title": "Do not expand [@graph, @index] container if value is a graph (multiple objects)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b6690", + "@id": "_:b1962", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "result": { - "@id": "_:b19559", + "@id": "_:b25853", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6692", + "@id": "_:b1963", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19561", + "@id": "_:b16413", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6691", + "@id": "_:b1961", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19560", + "@id": "_:b18548", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6689", + "@id": "_:b1964", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11068", + "@id": "_:b22025", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6694", + "@id": "_:b1956", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "result": { - "@id": "_:b19563", + "@id": "_:b8792", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6685", + "@id": "_:b1957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6686", + "@id": "_:b11699", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6695", + "@id": "_:b1959", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13784", + "@id": "_:b24281", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6696", + "@id": "_:b1958", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "result": { - "@id": "_:b19564", + "@id": "_:b24161", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6688", + "@id": "_:b1954", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "result": { - "@id": "_:b16859", + "@id": "_:b1955", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6693", + "@id": "_:b1960", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042", "result": { - "@id": "_:b19562", + "@id": "_:b25189", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0042-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0042-context.jsonld" + }, + "title": "@list keyword aliasing", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0042-in.jsonld", + "rdfs:comment": "Make sure keyword aliasing works if a list can't be compacted" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b22073", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0099-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0099-out.jsonld", - "title": "expand [@graph, @id] container (multiple objects)", - "rdfs:comment": "Use of @graph containers with @id", "assertions": [ { - "@id": "_:b22872", + "@id": "_:b17494", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "result": { - "@id": "_:b15487", + "@id": "_:b18071", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b22871", + "@id": "_:b17497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25167", + "@id": "_:b4639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22873", + "@id": "_:b17490", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25168", + "@id": "_:b18068", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22867", + "@id": "_:b17492", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22791", + "@id": "_:b18070", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22866", + "@id": "_:b17488", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "result": { - "@id": "_:b23329", + "@id": "_:b17489", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22870", + "@id": "_:b17496", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25166", + "@id": "_:b18073", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22869", + "@id": "_:b17491", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25165", + "@id": "_:b18069", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22868", + "@id": "_:b17495", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "result": { - "@id": "_:b24593", + "@id": "_:b18072", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b22864", + "@id": "_:b17498", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "result": { - "@id": "_:b22865", + "@id": "_:b13079", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22874", + "@id": "_:b17493", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043", "result": { - "@id": "_:b24097", + "@id": "_:b13779", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0043-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0043-context.jsonld" + }, + "title": "select term over @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0043-in.jsonld", + "rdfs:comment": "Ensure that @vocab compaction isn't used if the result collides with a term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12746", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0100-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0100-out.jsonld", - "title": "expand [@graph, @id, @set] container (multiple objects)", - "rdfs:comment": "Use of @graph containers with @id and @set", "assertions": [ { - "@id": "_:b12747", + "@id": "_:b2057", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "result": { - "@id": "_:b20265", + "@id": "_:b14497", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12754", + "@id": "_:b2055", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20270", + "@id": "_:b2056", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12752", + "@id": "_:b2063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3787", + "@id": "_:b24520", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12744", + "@id": "_:b2061", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12745", + "@id": "_:b24518", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12749", + "@id": "_:b2059", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "result": { - "@id": "_:b16982", + "@id": "_:b23616", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12753", + "@id": "_:b2064", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20269", + "@id": "_:b3860", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12751", + "@id": "_:b2058", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20268", + "@id": "_:b22443", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12748", + "@id": "_:b2062", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "result": { - "@id": "_:b20266", + "@id": "_:b24519", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12750", + "@id": "_:b2060", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "result": { - "@id": "_:b20267", + "@id": "_:b24168", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12755", + "@id": "_:b2065", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044", "result": { - "@id": "_:b7361", + "@id": "_:b20199", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0044-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0044-context.jsonld" + }, + "title": "@type: @vocab in reverse-map", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0044-in.jsonld", + "rdfs:comment": "Prefer properties with @type: @vocab in reverse-maps if the value can be compacted to a term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3856", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0101-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0101-out.jsonld", - "title": "Do not expand [@graph, @id] container if value is a graph (multiple objects)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b3860", + "@id": "_:b894", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "result": { - "@id": "_:b14505", + "@id": "_:b904", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3862", + "@id": "_:b898", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24591", + "@id": "_:b908", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3858", + "@id": "_:b896", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15726", + "@id": "_:b906", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3861", + "@id": "_:b895", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23658", + "@id": "_:b905", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3863", + "@id": "_:b901", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "result": { - "@id": "_:b21890", + "@id": "_:b911", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3857", + "@id": "_:b899", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9787", + "@id": "_:b909", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3865", + "@id": "_:b900", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24592", + "@id": "_:b910", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3859", + "@id": "_:b903", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "result": { - "@id": "_:b20862", + "@id": "_:b913", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3864", + "@id": "_:b902", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "result": { - "@id": "_:b15716", + "@id": "_:b912", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3854", + "@id": "_:b897", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045", "result": { - "@id": "_:b3855", + "@id": "_:b907", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0045-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0045-context.jsonld" + }, + "title": "@id value uses relative IRI, not term", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0045-in.jsonld", + "rdfs:comment": "Values of @id are transformed to relative IRIs, terms are ignored" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4121", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0102-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0102-out.jsonld", - "title": "Expand @graph container if value is a graph (multiple objects)", - "rdfs:comment": "Creates a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b4128", + "@id": "_:b236", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "result": { - "@id": "_:b26454", + "@id": "_:b2093", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4123", + "@id": "_:b234", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20038", + "@id": "_:b1736", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4124", + "@id": "_:b241", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22496", + "@id": "_:b16986", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4122", + "@id": "_:b243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6275", + "@id": "_:b24600", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4129", + "@id": "_:b239", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "result": { - "@id": "_:b19182", + "@id": "_:b25632", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4119", + "@id": "_:b240", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4120", + "@id": "_:b20625", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4127", + "@id": "_:b242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26453", + "@id": "_:b22814", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4125", + "@id": "_:b237", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "result": { - "@id": "_:b23851", + "@id": "_:b23982", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4130", + "@id": "_:b235", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "result": { - "@id": "_:b18693", + "@id": "_:b12074", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4126", + "@id": "_:b238", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046", "result": { - "@id": "_:b25759", + "@id": "_:b24807", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0046-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0046-context.jsonld" + }, + "title": "multiple objects without @context use @graph", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0046-in.jsonld", + "rdfs:comment": "Wrap top-level array into @graph even if no context is passed" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21249", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0103-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0103-out.jsonld", - "title": "Expand @graph container if value is a graph (multiple graphs)", - "rdfs:comment": "Creates a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b21253", + "@id": "_:b9820", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "result": { - "@id": "_:b26101", + "@id": "_:b18849", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b21256", + "@id": "_:b9823", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26708", + "@id": "_:b24123", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21252", + "@id": "_:b9819", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25319", + "@id": "_:b10996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21251", + "@id": "_:b9817", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19310", + "@id": "_:b9818", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21258", + "@id": "_:b9824", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "result": { - "@id": "_:b25086", + "@id": "_:b24310", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21250", + "@id": "_:b9825", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22395", + "@id": "_:b3907", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21254", + "@id": "_:b9821", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22405", + "@id": "_:b22991", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21247", + "@id": "_:b9826", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "result": { - "@id": "_:b21248", + "@id": "_:b26923", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b21255", + "@id": "_:b9827", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "result": { - "@id": "_:b25958", + "@id": "_:b27017", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21257", + "@id": "_:b9822", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047", "result": { - "@id": "_:b24614", + "@id": "_:b18369", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0047-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0047-context.jsonld" + }, + "title": "Round-trip relative URLs", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0047-in.jsonld", + "rdfs:comment": "Relative URLs remain relative after compaction" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7238", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0104-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0104-out.jsonld", - "title": "Creates an @graph container if value is a graph (mixed graph and object)", - "rdfs:comment": "Double-expand an already expanded graph", "assertions": [ { - "@id": "_:b7248", + "@id": "_:b849", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "result": { - "@id": "_:b7258", + "@id": "_:b17083", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7243", + "@id": "_:b844", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7253", + "@id": "_:b845", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7241", + "@id": "_:b852", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7251", + "@id": "_:b26459", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7247", + "@id": "_:b846", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7257", + "@id": "_:b14282", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7240", + "@id": "_:b848", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "result": { - "@id": "_:b7250", + "@id": "_:b15406", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7245", + "@id": "_:b850", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7255", + "@id": "_:b18254", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7239", + "@id": "_:b847", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7249", + "@id": "_:b22463", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7242", + "@id": "_:b851", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "result": { - "@id": "_:b7252", + "@id": "_:b26458", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7246", + "@id": "_:b854", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "result": { - "@id": "_:b7256", + "@id": "_:b5303", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7244", + "@id": "_:b853", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048", "result": { - "@id": "_:b7254", + "@id": "_:b26460", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0048-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0048-context.jsonld" + }, + "title": "term with @language: null", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0048-in.jsonld", + "rdfs:comment": "Prefer terms with a language mapping set to null over terms without language-mapping for non-strings" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14914", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0105-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0105-out.jsonld", - "title": "Do not expand [@graph, @index] container if value is a graph (mixed graph and object)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b14917", + "@id": "_:b2201", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "result": { - "@id": "_:b20143", + "@id": "_:b19985", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14921", + "@id": "_:b2202", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23776", + "@id": "_:b18619", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14915", + "@id": "_:b2195", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21762", + "@id": "_:b14056", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14923", + "@id": "_:b2197", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24035", + "@id": "_:b22024", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14916", + "@id": "_:b2200", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "result": { - "@id": "_:b1928", + "@id": "_:b23263", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14919", + "@id": "_:b2193", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26582", + "@id": "_:b2194", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14912", + "@id": "_:b2203", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14913", + "@id": "_:b22662", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14920", + "@id": "_:b2196", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "result": { - "@id": "_:b26583", + "@id": "_:b17358", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14918", + "@id": "_:b2199", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "result": { - "@id": "_:b26165", + "@id": "_:b23262", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14922", + "@id": "_:b2198", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049", "result": { - "@id": "_:b26584", + "@id": "_:b21769", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0049-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0049-context.jsonld" + }, + "title": "Round tripping of lists that contain just IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0049-in.jsonld", + "rdfs:comment": "List compaction without @container: @list still uses strings if @type: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15578", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0106-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0106-out.jsonld", - "title": "Do not expand [@graph, @id] container if value is a graph (mixed graph and object)", - "rdfs:comment": "Does not create a new graph object if indexed value is already a graph object", "assertions": [ { - "@id": "_:b15582", + "@id": "_:b13947", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "result": { - "@id": "_:b18309", + "@id": "_:b18611", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15583", + "@id": "_:b13944", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18310", + "@id": "_:b13945", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15581", + "@id": "_:b13954", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18308", + "@id": "_:b25057", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15579", + "@id": "_:b13952", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17922", + "@id": "_:b25056", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15586", + "@id": "_:b13951", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "result": { - "@id": "_:b18312", + "@id": "_:b24205", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15585", + "@id": "_:b13953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18311", + "@id": "_:b24314", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15580", + "@id": "_:b13946", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18307", + "@id": "_:b16878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15587", + "@id": "_:b13950", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "result": { - "@id": "_:b18313", + "@id": "_:b23231", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15584", + "@id": "_:b13949", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "result": { - "@id": "_:b15046", + "@id": "_:b21182", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15588", + "@id": "_:b13948", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050", "result": { - "@id": "_:b18314", + "@id": "_:b19549", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0050-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0050-context.jsonld" + }, + "title": "Reverse properties require @type: @id to use string values", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0050-in.jsonld", + "rdfs:comment": "Node references in reverse properties are not compacted to strings without explicit type-coercion" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4563", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0107-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0107-out.jsonld", - "title": "expand [@graph, @index] container (indexes with multiple objects)", - "rdfs:comment": "Use of @graph containers with @index", "assertions": [ { - "@id": "_:b4564", + "@id": "_:b19484", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "result": { - "@id": "_:b13092", + "@id": "_:b26236", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4561", + "@id": "_:b19483", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4562", + "@id": "_:b22424", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4568", + "@id": "_:b19480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26687", + "@id": "_:b17260", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4571", + "@id": "_:b19487", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24739", + "@id": "_:b13184", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4572", + "@id": "_:b19489", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "result": { - "@id": "_:b12128", + "@id": "_:b17946", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4565", + "@id": "_:b19486", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22217", + "@id": "_:b10465", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4567", + "@id": "_:b19488", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3951", + "@id": "_:b18188", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4569", + "@id": "_:b19481", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "result": { - "@id": "_:b26688", + "@id": "_:b20726", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4570", + "@id": "_:b19485", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "result": { - "@id": "_:b26689", + "@id": "_:b24451", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4566", + "@id": "_:b19482", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051", "result": { - "@id": "_:b24083", + "@id": "_:b21054", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0051-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0051-context.jsonld" + }, + "title": "Round tripping @list with scalar", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0051-in.jsonld", + "rdfs:comment": "Native values survive round-tripping with @list" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1171", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0108-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0108-out.jsonld", - "title": "expand [@graph, @id] container (multiple ids and objects)", - "rdfs:comment": "Use of @graph containers with @id", "assertions": [ { - "@id": "_:b1175", + "@id": "_:b787", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "result": { - "@id": "_:b22038", + "@id": "_:b26074", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1176", + "@id": "_:b792", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8198", + "@id": "_:b27000", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1172", + "@id": "_:b785", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19165", + "@id": "_:b8235", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1173", + "@id": "_:b784", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22476", + "@id": "_:b4438", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1174", + "@id": "_:b791", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "result": { - "@id": "_:b24613", + "@id": "_:b25544", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1169", + "@id": "_:b789", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1170", + "@id": "_:b10432", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1178", + "@id": "_:b793", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26127", + "@id": "_:b21391", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1177", + "@id": "_:b790", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "result": { - "@id": "_:b26126", + "@id": "_:b26761", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1179", + "@id": "_:b786", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "result": { - "@id": "_:b26128", + "@id": "_:b21506", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1180", + "@id": "_:b788", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052", "result": { - "@id": "_:b26129", + "@id": "_:b24199", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0052-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0052-context.jsonld" + }, + "title": "Round tripping @list with scalar and @graph alias", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0052-in.jsonld", + "rdfs:comment": "Native values survive round-tripping with @list and @graph alias" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0109-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0109-out.jsonld", - "title": "IRI expansion of fragments including ':'", - "rdfs:comment": "Do not treat as absolute IRIs values that look like compact IRIs if they're not absolute", "assertions": [ { - "@id": "_:b2679", + "@id": "_:b5026", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "result": { - "@id": "_:b22723", + "@id": "_:b5855", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2673", + "@id": "_:b5025", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15930", + "@id": "_:b5854", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2670", + "@id": "_:b5020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2671", + "@id": "_:b5021", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2680", + "@id": "_:b5022", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26154", + "@id": "_:b5851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2674", + "@id": "_:b5027", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "result": { - "@id": "_:b18437", + "@id": "_:b5856", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2675", + "@id": "_:b5024", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15838", + "@id": "_:b5853", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2676", + "@id": "_:b5023", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17255", + "@id": "_:b5852", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2678", + "@id": "_:b5030", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "result": { - "@id": "_:b22356", + "@id": "_:b5859", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2672", + "@id": "_:b5029", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "result": { - "@id": "_:b15197", + "@id": "_:b5858", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2677", + "@id": "_:b5028", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053", "result": { - "@id": "_:b18281", + "@id": "_:b5857", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0053-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0053-context.jsonld" + }, + "title": "Use @type: @vocab if no @type: @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0053-in.jsonld", + "rdfs:comment": "Compact to @type: @vocab when no @type: @id term available" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10504", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0110-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0110-out.jsonld", - "title": "Various relative IRIs as properties with with relative @vocab", - "rdfs:comment": "Pathological relative property IRIs", "assertions": [ { - "@id": "_:b10509", + "@id": "_:b777", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "result": { - "@id": "_:b23924", + "@id": "_:b26000", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10502", + "@id": "_:b773", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10503", + "@id": "_:b22876", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10507", + "@id": "_:b779", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26835", + "@id": "_:b19509", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10506", + "@id": "_:b772", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23647", + "@id": "_:b19295", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10513", + "@id": "_:b775", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "result": { - "@id": "_:b26055", + "@id": "_:b25998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10510", + "@id": "_:b778", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22380", + "@id": "_:b26001", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10512", + "@id": "_:b780", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23790", + "@id": "_:b19229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10511", + "@id": "_:b774", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "result": { - "@id": "_:b20802", + "@id": "_:b23130", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10505", + "@id": "_:b776", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "result": { - "@id": "_:b18044", + "@id": "_:b25999", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10508", + "@id": "_:b781", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054", "result": { - "@id": "_:b10195", + "@id": "_:b26002", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0054-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0054-context.jsonld" + }, + "title": "Compact to @type: @vocab and compact @id to term", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0054-in.jsonld", + "rdfs:comment": "Compact to @type: @vocab and compact @id to term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18385", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0111-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0111-out.jsonld", - "title": "Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base", - "rdfs:comment": "Pathological relative property IRIs", "assertions": [ { - "@id": "_:b21049", + "@id": "_:b186", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "result": { - "@id": "_:b26275", + "@id": "_:b196", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b21051", + "@id": "_:b190", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20425", + "@id": "_:b200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21048", + "@id": "_:b189", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23946", + "@id": "_:b199", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21055", + "@id": "_:b192", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7597", + "@id": "_:b202", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21056", + "@id": "_:b184", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "result": { - "@id": "_:b26419", + "@id": "_:b194", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21053", + "@id": "_:b187", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26564", + "@id": "_:b197", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21054", + "@id": "_:b183", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26788", + "@id": "_:b193", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21052", + "@id": "_:b185", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "result": { - "@id": "_:b25819", + "@id": "_:b195", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b21050", + "@id": "_:b191", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "result": { - "@id": "_:b26410", + "@id": "_:b201", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21046", + "@id": "_:b188", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055", "result": { - "@id": "_:b21047", + "@id": "_:b198", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0055-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0055-context.jsonld" + }, + "title": "Round tripping @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0055-in.jsonld", + "rdfs:comment": "Compacting IRI value of property with @type: @vocab can use term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3413", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0112-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0112-out.jsonld", - "title": "Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base", - "rdfs:comment": "Pathological relative property IRIs", "assertions": [ { - "@id": "_:b3415", + "@id": "_:b506", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "result": { - "@id": "_:b21293", + "@id": "_:b516", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3422", + "@id": "_:b505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23004", + "@id": "_:b515", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3418", + "@id": "_:b501", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23332", + "@id": "_:b511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3416", + "@id": "_:b504", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19789", + "@id": "_:b514", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3414", + "@id": "_:b510", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "result": { - "@id": "_:b16409", + "@id": "_:b520", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3421", + "@id": "_:b507", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24217", + "@id": "_:b517", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3419", + "@id": "_:b502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26669", + "@id": "_:b512", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3420", + "@id": "_:b508", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "result": { - "@id": "_:b23127", + "@id": "_:b518", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3417", + "@id": "_:b509", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "result": { - "@id": "_:b23952", + "@id": "_:b519", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3411", + "@id": "_:b503", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056", "result": { - "@id": "_:b3412", + "@id": "_:b513", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0056-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0056-context.jsonld" + }, + "title": "Prefer @type: @vocab over @type: @id for terms", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0056-in.jsonld", + "rdfs:comment": "Compacting IRI value of property with @type: @vocab can use term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0113-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0113-out.jsonld", - "title": "context with JavaScript Object property names", - "rdfs:comment": "Expand with context including JavaScript Object property names", "assertions": [ { - "@id": "_:b19185", + "@id": "_:b8059", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "result": { - "@id": "_:b19186", + "@id": "_:b22928", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19192", + "@id": "_:b8063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20115", + "@id": "_:b23870", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19188", + "@id": "_:b8061", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20111", + "@id": "_:b23693", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19191", + "@id": "_:b8058", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20114", + "@id": "_:b3062", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19189", + "@id": "_:b8065", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "result": { - "@id": "_:b20112", + "@id": "_:b23871", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19190", + "@id": "_:b8060", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20113", + "@id": "_:b23606", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19194", + "@id": "_:b8062", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20116", + "@id": "_:b23869", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19187", + "@id": "_:b8056", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "result": { - "@id": "_:b20110", + "@id": "_:b8057", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19195", + "@id": "_:b8064", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "result": { - "@id": "_:b20117", + "@id": "_:b17002", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19193", + "@id": "_:b8066", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057", "result": { - "@id": "_:b19291", + "@id": "_:b23872", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0057-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0057-context.jsonld" + }, + "title": "Complex round tripping @type: @vocab and @type: @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0057-in.jsonld", + "rdfs:comment": "Compacting IRI value of property with @type: @vocab can use term; more complex" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12848", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0114-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0114-out.jsonld", - "title": "Expansion allows multiple properties expanding to @type", - "rdfs:comment": "An exception for the colliding keywords error is made for @type", "assertions": [ { - "@id": "_:b14214", + "@id": "_:b336", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "result": { - "@id": "_:b16200", + "@id": "_:b3352", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14212", + "@id": "_:b341", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16198", + "@id": "_:b3357", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14211", + "@id": "_:b340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16197", + "@id": "_:b3356", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14210", + "@id": "_:b344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5004", + "@id": "_:b3360", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14216", + "@id": "_:b343", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "result": { - "@id": "_:b16201", + "@id": "_:b3359", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14209", + "@id": "_:b338", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16196", + "@id": "_:b3354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14213", + "@id": "_:b335", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16199", + "@id": "_:b3351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14208", + "@id": "_:b339", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "result": { - "@id": "_:b10885", + "@id": "_:b3355", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14206", + "@id": "_:b337", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "result": { - "@id": "_:b14207", + "@id": "_:b3353", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14215", + "@id": "_:b342", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058", "result": { - "@id": "_:b15388", + "@id": "_:b3358", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0058-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0058-context.jsonld" + }, + "title": "Prefer @type: @id over @type: @vocab for non-terms", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0058-in.jsonld", + "rdfs:comment": "Choose a term having @type: @id over @type: @value if value is not a term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12601", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0117-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0117-out.jsonld", - "title": "A term starting with a colon can expand to a different IRI", - "rdfs:comment": "Terms may begin with a colon and not be treated as IRIs.", "assertions": [ { - "@id": "_:b12605", + "@id": "_:b15197", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "result": { - "@id": "_:b23321", + "@id": "_:b21502", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12606", + "@id": "_:b15201", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24156", + "@id": "_:b26588", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12599", + "@id": "_:b15198", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12600", + "@id": "_:b3792", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12609", + "@id": "_:b15194", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22423", + "@id": "_:b15195", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12608", + "@id": "_:b15199", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "result": { - "@id": "_:b19320", + "@id": "_:b15687", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12604", + "@id": "_:b15196", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22143", + "@id": "_:b20453", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12610", + "@id": "_:b15200", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23367", + "@id": "_:b22376", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12602", + "@id": "_:b15203", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "result": { - "@id": "_:b18402", + "@id": "_:b8966", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12607", + "@id": "_:b15202", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "result": { - "@id": "_:b24157", + "@id": "_:b26792", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12603", + "@id": "_:b15204", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059", "result": { - "@id": "_:b19967", + "@id": "_:b20229", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0059-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0059-context.jsonld" + }, + "title": "Term with @type: @vocab if no @type: @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0059-in.jsonld", + "rdfs:comment": "If there's no term with @type: @id, use terms with @type: @vocab for IRIs not mapped to terms" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3501", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0118-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0118-out.jsonld", - "title": "Expanding a value staring with a colon does not treat that value as an IRI", - "rdfs:comment": "Terms may begin with a colon and not be treated as IRIs.", "assertions": [ { - "@id": "_:b3499", + "@id": "_:b24293", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "result": { - "@id": "_:b3500", + "@id": "_:b25767", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3506", + "@id": "_:b24301", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24271", + "@id": "_:b1096", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3502", + "@id": "_:b24294", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10346", + "@id": "_:b21596", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3510", + "@id": "_:b24297", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20675", + "@id": "_:b26019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3507", + "@id": "_:b24299", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "result": { - "@id": "_:b6952", + "@id": "_:b2724", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3503", + "@id": "_:b24298", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18113", + "@id": "_:b26277", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3508", + "@id": "_:b24296", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24272", + "@id": "_:b26401", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3504", + "@id": "_:b24300", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "result": { - "@id": "_:b18058", + "@id": "_:b7962", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3505", + "@id": "_:b24295", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "result": { - "@id": "_:b15933", + "@id": "_:b26110", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3509", + "@id": "_:b24291", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060", "result": { - "@id": "_:b15133", + "@id": "_:b24292", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0060-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0060-context.jsonld" + }, + "title": "Term with @type: @id if no @type: @vocab and term value", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0060-in.jsonld", + "rdfs:comment": "If there's no term with @type: @vocab, use terms with @type: @id for IRIs mapped to terms" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1447", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0119-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0119-out.jsonld", - "title": "Ignore some terms with @, allow others.", - "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword.", "assertions": [ { - "@id": "_:b1451", + "@id": "_:b253", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "result": { - "@id": "_:b1584", + "@id": "_:b263", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1449", + "@id": "_:b245", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20087", + "@id": "_:b255", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1448", + "@id": "_:b249", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14457", + "@id": "_:b259", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1452", + "@id": "_:b244", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23009", + "@id": "_:b254", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1455", + "@id": "_:b250", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "result": { - "@id": "_:b1994", + "@id": "_:b260", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1450", + "@id": "_:b247", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22690", + "@id": "_:b257", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1454", + "@id": "_:b251", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14754", + "@id": "_:b261", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1445", + "@id": "_:b252", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "result": { - "@id": "_:b1446", + "@id": "_:b262", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1453", + "@id": "_:b246", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "result": { - "@id": "_:b17768", + "@id": "_:b256", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1456", + "@id": "_:b248", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061", "result": { - "@id": "_:b22940", + "@id": "_:b258", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0061-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0061-context.jsonld" + }, + "title": "@type: @vocab/@id with values matching either", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0061-in.jsonld", + "rdfs:comment": "Separate IRIs for the same property to use term with more specific @type (@id vs. @vocab)" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1669", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0120-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0120-out.jsonld", - "title": "Ignore some values of @id with @, allow others.", - "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword.", "assertions": [ { - "@id": "_:b1667", + "@id": "_:b3911", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "result": { - "@id": "_:b1668", + "@id": "_:b3921", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1675", + "@id": "_:b3915", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25199", + "@id": "_:b3925", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1670", + "@id": "_:b3913", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3916", + "@id": "_:b3923", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1674", + "@id": "_:b3910", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23778", + "@id": "_:b3920", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1672", + "@id": "_:b3917", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "result": { - "@id": "_:b20770", + "@id": "_:b3927", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1676", + "@id": "_:b3909", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21577", + "@id": "_:b3919", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1678", + "@id": "_:b3908", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26034", + "@id": "_:b3918", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1673", + "@id": "_:b3914", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "result": { - "@id": "_:b15297", + "@id": "_:b3924", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1671", + "@id": "_:b3916", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "result": { - "@id": "_:b19635", + "@id": "_:b3926", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1677", + "@id": "_:b3912", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062", "result": { - "@id": "_:b26297", + "@id": "_:b3922", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0062-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0062-context.jsonld" + }, + "title": "@type: @vocab and relative IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0062-in.jsonld", + "rdfs:comment": "Relative IRIs don't round-trip with @type: @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4070", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0121-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0121-out.jsonld", - "title": "Ignore some values of @reverse with @, allow others.", - "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword.", "assertions": [ { - "@id": "_:b4080", + "@id": "_:b4512", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "result": { - "@id": "_:b24349", + "@id": "_:b20016", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4073", + "@id": "_:b4518", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14184", + "@id": "_:b21967", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4076", + "@id": "_:b4515", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23567", + "@id": "_:b24933", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4079", + "@id": "_:b4513", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16591", + "@id": "_:b8640", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4075", + "@id": "_:b4510", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "result": { - "@id": "_:b14394", + "@id": "_:b4511", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4074", + "@id": "_:b4520", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15003", + "@id": "_:b25518", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4071", + "@id": "_:b4514", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15044", + "@id": "_:b24729", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4077", + "@id": "_:b4519", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "result": { - "@id": "_:b10727", + "@id": "_:b25517", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4072", + "@id": "_:b4517", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "result": { - "@id": "_:b19126", + "@id": "_:b25516", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4078", + "@id": "_:b4516", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063", "result": { - "@id": "_:b10831", + "@id": "_:b9354", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0063-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0063-context.jsonld" + }, + "title": "Compact IRI round-tripping with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0063-in.jsonld", + "rdfs:comment": "Term with @type: @vocab will use compact IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13868", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0122-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0122-out.jsonld", - "title": "Ignore some IRIs when that start with @ when expanding.", - "rdfs:comment": "Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword.", "assertions": [ { - "@id": "_:b13877", + "@id": "_:b12033", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "result": { - "@id": "_:b21827", + "@id": "_:b25253", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13866", + "@id": "_:b12031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13867", + "@id": "_:b13955", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13869", + "@id": "_:b12032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17580", + "@id": "_:b20644", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13872", + "@id": "_:b12029", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21416", + "@id": "_:b12030", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13870", + "@id": "_:b12036", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "result": { - "@id": "_:b20018", + "@id": "_:b19900", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13871", + "@id": "_:b12034", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21521", + "@id": "_:b26875", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13875", + "@id": "_:b12035", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8394", + "@id": "_:b26434", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13876", + "@id": "_:b12039", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "result": { - "@id": "_:b21726", + "@id": "_:b14606", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13874", + "@id": "_:b12038", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "result": { - "@id": "_:b25062", + "@id": "_:b26736", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13873", + "@id": "_:b12037", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064", "result": { - "@id": "_:b25061", + "@id": "_:b26478", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0064-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0064-context.jsonld" + }, + "title": "Compact language-tagged and indexed strings to index-map", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0064-in.jsonld", + "rdfs:comment": "Given values with both @index and @language and term index-map term, use index map" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b723", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0123-in.jsonld", - "mf:result": "invalid typed value", - "title": "Value objects including invalid literal datatype IRIs are rejected", - "rdfs:comment": "Processors MUST validate datatype IRIs.", "assertions": [ { - "@id": "_:b726", + "@id": "_:b21063", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "result": { - "@id": "_:b22557", + "@id": "_:b21687", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b724", + "@id": "_:b21059", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6698", + "@id": "_:b26007", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b731", + "@id": "_:b21057", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26806", + "@id": "_:b24084", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b729", + "@id": "_:b21062", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26866", + "@id": "_:b25937", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b730", + "@id": "_:b21064", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "result": { - "@id": "_:b17991", + "@id": "_:b23626", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b727", + "@id": "_:b21058", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20520", + "@id": "_:b24372", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b725", + "@id": "_:b21061", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19860", + "@id": "_:b24750", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b733", + "@id": "_:b21060", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "result": { - "@id": "_:b22851", + "@id": "_:b26008", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b728", + "@id": "_:b21055", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "result": { - "@id": "_:b22210", + "@id": "_:b21056", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b732", + "@id": "_:b21065", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065", "result": { - "@id": "_:b9652", + "@id": "_:b23509", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0065-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0065-context.jsonld" + }, + "title": "Language-tagged and indexed strings with language-map", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0065-in.jsonld", + "rdfs:comment": "Language-tagged and indexed strings don't compact to language-map" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8410", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0124-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0124-out.jsonld", - "title": "compact IRI as @vocab", - "rdfs:comment": "Verifies that @vocab defined as a compact IRI expands properly", "assertions": [ { - "@id": "_:b8415", + "@id": "_:b11570", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "result": { - "@id": "_:b17909", + "@id": "_:b21293", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8418", + "@id": "_:b11571", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15703", + "@id": "_:b21294", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8416", + "@id": "_:b11572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17690", + "@id": "_:b12556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8412", + "@id": "_:b11564", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17907", + "@id": "_:b14480", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8411", + "@id": "_:b11562", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "result": { - "@id": "_:b17906", + "@id": "_:b11563", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8413", + "@id": "_:b11565", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4246", + "@id": "_:b9859", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8414", + "@id": "_:b11566", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17908", + "@id": "_:b21290", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8417", + "@id": "_:b11569", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "result": { - "@id": "_:b17910", + "@id": "_:b21292", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8419", + "@id": "_:b11567", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "result": { - "@id": "_:b17911", + "@id": "_:b21291", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8408", + "@id": "_:b11568", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066", "result": { - "@id": "_:b8409", + "@id": "_:b12814", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0066-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0066-context.jsonld" + }, + "title": "Relative IRIs", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0066-in.jsonld", + "rdfs:comment": "Complex use cases for relative IRI compaction" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11029", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0125-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0125-out.jsonld", - "title": "term as @vocab", - "rdfs:comment": "Verifies that @vocab defined as a term expands properly", "assertions": [ { - "@id": "_:b11037", + "@id": "_:b7010", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "result": { - "@id": "_:b24979", + "@id": "_:b10725", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11030", + "@id": "_:b7002", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18090", + "@id": "_:b10588", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11036", + "@id": "_:b7000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26850", + "@id": "_:b7001", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11031", + "@id": "_:b7007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19597", + "@id": "_:b10722", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11034", + "@id": "_:b7009", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "result": { - "@id": "_:b21652", + "@id": "_:b10724", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11032", + "@id": "_:b7008", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22238", + "@id": "_:b10723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11033", + "@id": "_:b7005", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23225", + "@id": "_:b10720", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11035", + "@id": "_:b7006", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "result": { - "@id": "_:b8670", + "@id": "_:b10721", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11028", + "@id": "_:b7003", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "result": { - "@id": "_:b3643", + "@id": "_:b10718", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11038", + "@id": "_:b7004", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067", "result": { - "@id": "_:b16729", + "@id": "_:b10719", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0067-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0067-context.jsonld" + }, + "title": "Reverse properties with blank nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0067-in.jsonld", + "rdfs:comment": "Compact reverse property whose values are unlabeled blank nodes" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15920", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0126-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0126-out.jsonld", - "title": "A scoped context may include itself recursively (direct)", - "rdfs:comment": "Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly", "assertions": [ { - "@id": "_:b15923", + "@id": "_:b3798", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "result": { - "@id": "_:b25311", + "@id": "_:b23834", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15927", + "@id": "_:b3804", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26656", + "@id": "_:b26871", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15922", + "@id": "_:b3805", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24430", + "@id": "_:b20828", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15928", + "@id": "_:b3800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24551", + "@id": "_:b23890", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15925", + "@id": "_:b3803", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "result": { - "@id": "_:b24501", + "@id": "_:b26870", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15918", + "@id": "_:b3801", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15919", + "@id": "_:b22231", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15924", + "@id": "_:b3799", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15412", + "@id": "_:b25142", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15926", + "@id": "_:b3795", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "result": { - "@id": "_:b26677", + "@id": "_:b3796", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15929", + "@id": "_:b3802", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "result": { - "@id": "_:b25350", + "@id": "_:b21986", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15921", + "@id": "_:b3797", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068", "result": { - "@id": "_:b21530", + "@id": "_:b22125", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0068-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0068-context.jsonld" + }, + "title": "Single value reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0068-in.jsonld", + "rdfs:comment": "Single values of reverse properties are compacted as values of ordinary properties" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13249", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0127-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0127-out.jsonld", - "title": "A scoped context may include itself recursively (indirect)", - "rdfs:comment": "Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly", "assertions": [ { - "@id": "_:b13251", + "@id": "_:b798", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "result": { - "@id": "_:b16934", + "@id": "_:b21918", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13255", + "@id": "_:b799", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23307", + "@id": "_:b20583", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13254", + "@id": "_:b794", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23306", + "@id": "_:b795", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13252", + "@id": "_:b800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23305", + "@id": "_:b25558", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13250", + "@id": "_:b802", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "result": { - "@id": "_:b13593", + "@id": "_:b26112", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13253", + "@id": "_:b797", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21825", + "@id": "_:b17847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13257", + "@id": "_:b801", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23309", + "@id": "_:b7701", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13256", + "@id": "_:b803", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "result": { - "@id": "_:b23308", + "@id": "_:b25970", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13259", + "@id": "_:b796", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "result": { - "@id": "_:b22755", + "@id": "_:b14217", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13258", + "@id": "_:b804", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069", "result": { - "@id": "_:b14832", + "@id": "_:b15936", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0069-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0069-context.jsonld" + }, + "title": "Single value reverse properties with @set", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0069-in.jsonld", + "rdfs:comment": "Single values are kept in array form for reverse properties if the container is to @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3537", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b17410", + "https://w3c.github.io/json-ld-api/tests/vocab#compactArrays": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0128-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0128-out.jsonld", - "title": "Two scoped context may include a shared context", - "rdfs:comment": "Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context", "assertions": [ { - "@id": "_:b3544", + "@id": "_:b17418", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "result": { - "@id": "_:b8069", + "@id": "_:b7207", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3542", + "@id": "_:b17413", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8067", + "@id": "_:b20414", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3543", + "@id": "_:b17415", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8068", + "@id": "_:b21019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3545", + "@id": "_:b17416", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8070", + "@id": "_:b12322", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3540", + "@id": "_:b17408", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "result": { - "@id": "_:b8065", + "@id": "_:b17409", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3541", + "@id": "_:b17417", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8066", + "@id": "_:b19931", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3546", + "@id": "_:b17419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b906", + "@id": "_:b23430", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3539", + "@id": "_:b17411", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "result": { - "@id": "_:b8064", + "@id": "_:b19757", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3535", + "@id": "_:b17412", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "result": { - "@id": "_:b3536", + "@id": "_:b7134", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3538", + "@id": "_:b17414", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070", "result": { - "@id": "_:b8031", + "@id": "_:b24100", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0070-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0070-context.jsonld" + }, + "title": "compactArrays option", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0070-in.jsonld", + "rdfs:comment": "Setting compactArrays to false causes single element arrays to be retained" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0129-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0129-out.jsonld", - "title": "Base without trailing slash, without path", - "rdfs:comment": "Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986", "assertions": [ { - "@id": "_:b15130", + "@id": "_:b19472", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "result": { - "@id": "_:b15316", + "@id": "_:b11600", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15124", + "@id": "_:b19471", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24926", + "@id": "_:b24011", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15120", + "@id": "_:b19467", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15121", + "@id": "_:b22200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15127", + "@id": "_:b19469", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26647", + "@id": "_:b24009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15123", + "@id": "_:b19465", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "result": { - "@id": "_:b17578", + "@id": "_:b19466", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15129", + "@id": "_:b19468", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19470", + "@id": "_:b14999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15122", + "@id": "_:b19474", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23190", + "@id": "_:b24012", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15126", + "@id": "_:b19473", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "result": { - "@id": "_:b24773", + "@id": "_:b21371", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15125", + "@id": "_:b19470", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "result": { - "@id": "_:b7010", + "@id": "_:b24010", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15128", + "@id": "_:b19475", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071", "result": { - "@id": "_:b22720", + "@id": "_:b24013", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0071-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0071-context.jsonld" + }, + "title": "Input has multiple @contexts, output has one", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0071-in.jsonld", + "rdfs:comment": "Expanding input with multiple @contexts and compacting with just one doesn't output undefined properties" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/0130-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/0130-out.jsonld", - "title": "Base without trailing slash, with path", - "rdfs:comment": "Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986", "assertions": [ { - "@id": "_:b10416", + "@id": "_:b16342", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "result": { - "@id": "_:b10417", + "@id": "_:b16660", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10424", + "@id": "_:b16341", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9640", + "@id": "_:b20857", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10423", + "@id": "_:b16346", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20491", + "@id": "_:b25201", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10425", + "@id": "_:b16348", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3195", + "@id": "_:b10840", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10420", + "@id": "_:b16340", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "result": { - "@id": "_:b20489", + "@id": "_:b14910", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10418", + "@id": "_:b16343", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17942", + "@id": "_:b22032", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10419", + "@id": "_:b16344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20488", + "@id": "_:b23613", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10421", + "@id": "_:b16347", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "result": { - "@id": "_:b20490", + "@id": "_:b25202", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10422", + "@id": "_:b16349", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "result": { - "@id": "_:b8954", + "@id": "_:b20523", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10426", + "@id": "_:b16345", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072", "result": { - "@id": "_:b20492", + "@id": "_:b5743", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0072-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0072-context.jsonld" + }, + "title": "Default language and unmapped properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0072-in.jsonld", + "rdfs:comment": "Ensure that the default language is handled correctly for unmapped properties" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5675", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c001-out.jsonld", - "title": "adding new term", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b5676", + "@id": "_:b8491", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "result": { - "@id": "_:b5686", + "@id": "_:b25984", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5682", + "@id": "_:b8487", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5692", + "@id": "_:b11776", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5683", + "@id": "_:b8489", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5693", + "@id": "_:b23484", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5677", + "@id": "_:b8490", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5687", + "@id": "_:b24320", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5684", + "@id": "_:b8494", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "result": { - "@id": "_:b5694", + "@id": "_:b24210", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5678", + "@id": "_:b8493", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5688", + "@id": "_:b5616", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5685", + "@id": "_:b8485", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5695", + "@id": "_:b8486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5679", + "@id": "_:b8495", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "result": { - "@id": "_:b5689", + "@id": "_:b26918", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5680", + "@id": "_:b8488", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "result": { - "@id": "_:b5690", + "@id": "_:b18315", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5681", + "@id": "_:b8492", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073", "result": { - "@id": "_:b5691", + "@id": "_:b12040", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0073-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0073-context.jsonld" + }, + "title": "Mapped @id and @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0073-in.jsonld", + "rdfs:comment": "Ensure that compaction works with mapped @id and @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12378", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c002-out.jsonld", - "title": "overriding a term", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b12381", + "@id": "_:b8304", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "result": { - "@id": "_:b18134", + "@id": "_:b11723", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12384", + "@id": "_:b8307", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25689", + "@id": "_:b25451", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12383", + "@id": "_:b8305", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24974", + "@id": "_:b5266", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12376", + "@id": "_:b8300", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12377", + "@id": "_:b8301", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12387", + "@id": "_:b8310", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "result": { - "@id": "_:b25690", + "@id": "_:b3991", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12382", + "@id": "_:b8302", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24402", + "@id": "_:b10116", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12379", + "@id": "_:b8309", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9252", + "@id": "_:b26962", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12380", + "@id": "_:b8303", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "result": { - "@id": "_:b18057", + "@id": "_:b17838", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12385", + "@id": "_:b8308", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "result": { - "@id": "_:b25457", + "@id": "_:b19850", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12386", + "@id": "_:b8306", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074", "result": { - "@id": "_:b19961", + "@id": "_:b26688", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0074-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0074-context.jsonld" + }, + "title": "Container as a list with type of @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0074-in.jsonld", + "rdfs:comment": "Ensure that compaction works for empty list when property has container declared as @list and type as @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4210", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b16918", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example.org/" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c003-out.jsonld", - "title": "property and value with different terms mapping to the same expanded property", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b4220", + "@id": "_:b16919", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "result": { - "@id": "_:b3748", + "@id": "_:b17485", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4211", + "@id": "_:b16927", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10884", + "@id": "_:b23167", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4216", + "@id": "_:b16924", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23898", + "@id": "_:b23165", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4213", + "@id": "_:b16916", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19177", + "@id": "_:b16917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4215", + "@id": "_:b16926", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "result": { - "@id": "_:b22906", + "@id": "_:b23166", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4214", + "@id": "_:b16923", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23897", + "@id": "_:b23164", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4212", + "@id": "_:b16920", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14204", + "@id": "_:b5555", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4217", + "@id": "_:b16921", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "result": { - "@id": "_:b23899", + "@id": "_:b23163", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4218", + "@id": "_:b16925", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "result": { - "@id": "_:b23900", + "@id": "_:b17921", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4219", + "@id": "_:b16922", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075", "result": { - "@id": "_:b20041", + "@id": "_:b21567", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0075-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0075-context.jsonld" + }, + "title": "Compact using relative fragment identifier", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0075-in.jsonld", + "rdfs:comment": "Compacting a relative round-trips" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5878", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c004-out.jsonld", - "title": "deep @context affects nested nodes", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b5888", + "@id": "_:b16447", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "result": { - "@id": "_:b5898", + "@id": "_:b24926", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5881", + "@id": "_:b16446", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5891", + "@id": "_:b20230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5882", + "@id": "_:b16449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5892", + "@id": "_:b26061", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5885", + "@id": "_:b16451", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5895", + "@id": "_:b18459", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5886", + "@id": "_:b16453", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "result": { - "@id": "_:b5896", + "@id": "_:b24904", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5879", + "@id": "_:b16452", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5889", + "@id": "_:b26770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5884", + "@id": "_:b16445", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5894", + "@id": "_:b19980", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5887", + "@id": "_:b16448", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "result": { - "@id": "_:b5897", + "@id": "_:b25473", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5880", + "@id": "_:b16443", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "result": { - "@id": "_:b5890", + "@id": "_:b16444", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5883", + "@id": "_:b16450", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076", "result": { - "@id": "_:b5893", + "@id": "_:b13282", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0076-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0076-context.jsonld" + }, + "title": "Compacting IRI equivalent to base", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0076-in.jsonld", + "rdfs:comment": "Compacting IRI equivalent to base, uses last path segment of base ending in '/'" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4389", + "@id": "_:b4524", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c005-out.jsonld", - "title": "scoped context layers on intemediate contexts", - "rdfs:comment": "Expansion using a scoped context uses term scope for selecting proper term", "assertions": [ { - "@id": "_:b4394", + "@id": "_:b4529", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "result": { - "@id": "_:b11140", + "@id": "_:b23662", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4391", + "@id": "_:b4531", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21901", + "@id": "_:b15732", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4395", + "@id": "_:b4526", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16824", + "@id": "_:b7344", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4387", + "@id": "_:b4532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4388", + "@id": "_:b10871", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4392", + "@id": "_:b4528", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "result": { - "@id": "_:b22788", + "@id": "_:b5118", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4396", + "@id": "_:b4525", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25974", + "@id": "_:b5574", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4397", + "@id": "_:b4527", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13325", + "@id": "_:b19834", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4390", + "@id": "_:b4533", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "result": { - "@id": "_:b13457", + "@id": "_:b18616", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4398", + "@id": "_:b4534", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "result": { - "@id": "_:b25962", + "@id": "_:b5800", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4393", + "@id": "_:b4530", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077", "result": { - "@id": "_:b11040", + "@id": "_:b17763", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0077-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0077-context.jsonld" + }, + "title": "Compact a @graph container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0077-in.jsonld", + "rdfs:comment": "Compact a @graph container" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8000", + "@id": "_:b7755", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c006-out.jsonld", - "title": "adding new term", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b8001", + "@id": "_:b7763", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "result": { - "@id": "_:b2007", + "@id": "_:b26629", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8007", + "@id": "_:b7759", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25786", + "@id": "_:b19301", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8005", + "@id": "_:b7764", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25835", + "@id": "_:b24074", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8004", + "@id": "_:b7756", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8900", + "@id": "_:b12749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8009", + "@id": "_:b7762", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "result": { - "@id": "_:b26569", + "@id": "_:b26083", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8003", + "@id": "_:b7760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22259", + "@id": "_:b23918", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8002", + "@id": "_:b7758", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18420", + "@id": "_:b14950", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8006", + "@id": "_:b7757", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "result": { - "@id": "_:b10628", + "@id": "_:b13983", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7998", + "@id": "_:b7761", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "result": { - "@id": "_:b7999", + "@id": "_:b25281", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8008", + "@id": "_:b7753", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078", "result": { - "@id": "_:b25735", + "@id": "_:b7754", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0078-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0078-context.jsonld" + }, + "title": "Compact a [@graph, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0078-in.jsonld", + "rdfs:comment": "Compact with [@graph, @set]" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2855", + "@id": "_:b19177", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c007-out.jsonld", - "title": "overriding a term", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b2860", + "@id": "_:b19184", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "result": { - "@id": "_:b23686", + "@id": "_:b19194", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2857", + "@id": "_:b19183", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19625", + "@id": "_:b19193", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2861", + "@id": "_:b19181", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25681", + "@id": "_:b19191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2864", + "@id": "_:b19178", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12025", + "@id": "_:b19188", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2862", + "@id": "_:b19186", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "result": { - "@id": "_:b3385", + "@id": "_:b19195", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2856", + "@id": "_:b19182", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4385", + "@id": "_:b19192", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2853", + "@id": "_:b19180", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2854", + "@id": "_:b19190", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2863", + "@id": "_:b19179", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "result": { - "@id": "_:b9203", + "@id": "_:b19189", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2858", + "@id": "_:b19185", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "result": { - "@id": "_:b22818", + "@id": "_:b11467", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2859", + "@id": "_:b19187", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079", "result": { - "@id": "_:b14251", + "@id": "_:b19196", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0079-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0079-context.jsonld" + }, + "title": "Compact a @graph container having @index", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0079-in.jsonld", + "rdfs:comment": "Verify that having both @graph and @index allows @graph container compaction" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5228", + "@id": "_:b2463", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c008-out.jsonld", - "title": "alias of @type", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b5233", + "@id": "_:b2465", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "result": { - "@id": "_:b24257", + "@id": "_:b21286", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5232", + "@id": "_:b2468", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12640", + "@id": "_:b19115", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5236", + "@id": "_:b2469", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1868", + "@id": "_:b23391", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5235", + "@id": "_:b2461", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23495", + "@id": "_:b2462", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5237", + "@id": "_:b2466", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "result": { - "@id": "_:b25007", + "@id": "_:b22512", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5231", + "@id": "_:b2471", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22159", + "@id": "_:b24571", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5226", + "@id": "_:b2467", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5227", + "@id": "_:b26239", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5229", + "@id": "_:b2470", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "result": { - "@id": "_:b13110", + "@id": "_:b26240", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5230", + "@id": "_:b2472", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "result": { - "@id": "_:b19235", + "@id": "_:b15456", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5234", + "@id": "_:b2464", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080", "result": { - "@id": "_:b25722", + "@id": "_:b11098", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0080-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0080-context.jsonld" + }, + "title": "Do not compact a graph having @id with a term having an @graph container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0080-in.jsonld", + "rdfs:comment": "Graph compaction works only on simple graphs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13844", + "@id": "_:b16614", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c009-out.jsonld", - "title": "deep @type-scoped @context does NOT affect nested nodes", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b13850", + "@id": "_:b16617", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "result": { - "@id": "_:b15676", + "@id": "_:b24592", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13847", + "@id": "_:b16623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15673", + "@id": "_:b25748", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13846", + "@id": "_:b16619", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15672", + "@id": "_:b5481", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13849", + "@id": "_:b16624", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15675", + "@id": "_:b25930", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13852", + "@id": "_:b16620", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "result": { - "@id": "_:b15678", + "@id": "_:b24614", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13842", + "@id": "_:b16616", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13843", + "@id": "_:b22886", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13853", + "@id": "_:b16622", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15024", + "@id": "_:b19153", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13845", + "@id": "_:b16621", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "result": { - "@id": "_:b15671", + "@id": "_:b25992", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13848", + "@id": "_:b16615", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "result": { - "@id": "_:b15674", + "@id": "_:b20820", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13851", + "@id": "_:b16618", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081", "result": { - "@id": "_:b15677", + "@id": "_:b24913", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0081-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0081-context.jsonld" + }, + "title": "Compact a [@graph, @index] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0081-in.jsonld", + "rdfs:comment": "Compact a @graph container with @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9564", + "@id": "_:b8884", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c010-out.jsonld", - "title": "scoped context layers on intemediate contexts", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b9567", + "@id": "_:b14151", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "result": { - "@id": "_:b17392", + "@id": "_:b25286", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9566", + "@id": "_:b14152", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17391", + "@id": "_:b17229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9565", + "@id": "_:b14147", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14629", + "@id": "_:b14293", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9573", + "@id": "_:b14155", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17397", + "@id": "_:b25433", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9562", + "@id": "_:b14149", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "result": { - "@id": "_:b9563", + "@id": "_:b21777", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9571", + "@id": "_:b14150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17395", + "@id": "_:b24922", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9572", + "@id": "_:b14145", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17396", + "@id": "_:b14146", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9570", + "@id": "_:b14148", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "result": { - "@id": "_:b17394", + "@id": "_:b19621", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9569", + "@id": "_:b14154", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "result": { - "@id": "_:b17393", + "@id": "_:b26200", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9568", + "@id": "_:b14153", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082", "result": { - "@id": "_:b16870", + "@id": "_:b26199", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0082-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0082-context.jsonld" + }, + "title": "Compact a [@graph, @index, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0082-in.jsonld", + "rdfs:comment": "Compact a @graph container with @index and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14248", + "@id": "_:b15308", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c011-out.jsonld", - "title": "orders @type terms when applying scoped contexts", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b14626", + "@id": "_:b15317", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "result": { - "@id": "_:b11444", + "@id": "_:b20542", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14625", + "@id": "_:b15314", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25412", + "@id": "_:b25148", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14621", + "@id": "_:b15311", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25410", + "@id": "_:b26494", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14622", + "@id": "_:b15312", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24189", + "@id": "_:b26417", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14619", + "@id": "_:b15316", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "result": { - "@id": "_:b25172", + "@id": "_:b25531", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14617", + "@id": "_:b15309", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14618", + "@id": "_:b18950", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14627", + "@id": "_:b15310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21766", + "@id": "_:b21015", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14624", + "@id": "_:b15315", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "result": { - "@id": "_:b23949", + "@id": "_:b16174", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14620", + "@id": "_:b15313", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "result": { - "@id": "_:b12292", + "@id": "_:b25914", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14623", + "@id": "_:b15306", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083", "result": { - "@id": "_:b25411", + "@id": "_:b15307", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0083-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0083-context.jsonld" + }, + "title": "[@graph, @index] does not compact graph with @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0083-in.jsonld", + "rdfs:comment": "Graph compaction with @graph and @index works only on simple graphs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1498", + "@id": "_:b13352", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c012-out.jsonld", - "title": "deep property-term scoped @context in @type-scoped @context affects nested nodes", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b1504", + "@id": "_:b13355", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "result": { - "@id": "_:b14250", + "@id": "_:b25230", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1502", + "@id": "_:b13350", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23835", + "@id": "_:b13351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1496", + "@id": "_:b13358", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1497", + "@id": "_:b25779", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1506", + "@id": "_:b13359", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18092", + "@id": "_:b26404", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1507", + "@id": "_:b13360", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "result": { - "@id": "_:b24131", + "@id": "_:b26448", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1503", + "@id": "_:b13356", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25513", + "@id": "_:b26186", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1501", + "@id": "_:b13361", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22513", + "@id": "_:b26275", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1500", + "@id": "_:b13353", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "result": { - "@id": "_:b18854", + "@id": "_:b17357", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1505", + "@id": "_:b13354", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "result": { - "@id": "_:b26654", + "@id": "_:b18186", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1499", + "@id": "_:b13357", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084", "result": { - "@id": "_:b16727", + "@id": "_:b22073", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0084-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0084-context.jsonld" + }, + "title": "Compact a simple graph with a [@graph, @id] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0084-in.jsonld", + "rdfs:comment": "Compact a simple graph using a @graph container with @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8877", + "@id": "_:b3208", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c013-out.jsonld", - "title": "type maps use scoped context from type index and not scoped context from containing", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b8878", + "@id": "_:b3215", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "result": { - "@id": "_:b14542", + "@id": "_:b12793", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8882", + "@id": "_:b3213", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14546", + "@id": "_:b22630", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8884", + "@id": "_:b3211", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14548", + "@id": "_:b22628", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8886", + "@id": "_:b3216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14550", + "@id": "_:b22631", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8875", + "@id": "_:b3212", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "result": { - "@id": "_:b8876", + "@id": "_:b22629", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8881", + "@id": "_:b3214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14545", + "@id": "_:b19296", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8880", + "@id": "_:b3210", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14544", + "@id": "_:b22627", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8885", + "@id": "_:b3217", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "result": { - "@id": "_:b14549", + "@id": "_:b22632", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8883", + "@id": "_:b3209", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "result": { - "@id": "_:b14547", + "@id": "_:b18659", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8879", + "@id": "_:b3206", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085", "result": { - "@id": "_:b14543", + "@id": "_:b3207", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0085-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0085-context.jsonld" + }, + "title": "Compact a named graph with a [@graph, @id] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0085-in.jsonld", + "rdfs:comment": "Compact a named graph using a @graph container with @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21126", + "@id": "_:b10845", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c014-out.jsonld", - "title": "type-scoped context nullification", - "rdfs:comment": "type-scoped context nullification", "assertions": [ { - "@id": "_:b21131", + "@id": "_:b10852", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "result": { - "@id": "_:b26384", + "@id": "_:b21949", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b21134", + "@id": "_:b10853", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24872", + "@id": "_:b26066", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21129", + "@id": "_:b10847", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21758", + "@id": "_:b18917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21133", + "@id": "_:b10849", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12740", + "@id": "_:b24952", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21135", + "@id": "_:b10846", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "result": { - "@id": "_:b22997", + "@id": "_:b15997", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21124", + "@id": "_:b10850", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21125", + "@id": "_:b20470", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21128", + "@id": "_:b10854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22074", + "@id": "_:b26935", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21132", + "@id": "_:b10851", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "result": { - "@id": "_:b26675", + "@id": "_:b26737", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b21127", + "@id": "_:b10848", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "result": { - "@id": "_:b21892", + "@id": "_:b12747", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21130", + "@id": "_:b10843", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086", "result": { - "@id": "_:b25547", + "@id": "_:b10844", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0086-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0086-context.jsonld" + }, + "title": "Compact a simple graph with a [@graph, @id, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0086-in.jsonld", + "rdfs:comment": "Compact a simple graph using a @graph container with @id and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11629", + "@id": "_:b3955", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c015-out.jsonld", - "title": "type-scoped base", - "rdfs:comment": "type-scoped base", "assertions": [ { - "@id": "_:b11633", + "@id": "_:b3960", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "result": { - "@id": "_:b26673", + "@id": "_:b26222", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11630", + "@id": "_:b3958", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21448", + "@id": "_:b24764", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11635", + "@id": "_:b3954", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20088", + "@id": "_:b3139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11638", + "@id": "_:b3963", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23060", + "@id": "_:b26225", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11634", + "@id": "_:b3959", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "result": { - "@id": "_:b26037", + "@id": "_:b26221", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11636", + "@id": "_:b3964", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b27018", + "@id": "_:b26226", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11632", + "@id": "_:b3962", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14185", + "@id": "_:b26224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11637", + "@id": "_:b3956", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "result": { - "@id": "_:b25679", + "@id": "_:b21100", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11627", + "@id": "_:b3961", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "result": { - "@id": "_:b11628", + "@id": "_:b26223", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11631", + "@id": "_:b3957", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087", "result": { - "@id": "_:b20048", + "@id": "_:b13393", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0087-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0087-context.jsonld" + }, + "title": "Compact a named graph with a [@graph, @id, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0087-in.jsonld", + "rdfs:comment": "Compact a named graph using a @graph container with @id and @set" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4841", + "@id": "_:b2171", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c016-out.jsonld", - "title": "type-scoped vocab", - "rdfs:comment": "type-scoped vocab", "assertions": [ { - "@id": "_:b4845", + "@id": "_:b2169", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "result": { - "@id": "_:b4855", + "@id": "_:b2170", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4848", + "@id": "_:b2177", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4858", + "@id": "_:b22847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4842", + "@id": "_:b2180", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4852", + "@id": "_:b20149", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4844", + "@id": "_:b2176", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4854", + "@id": "_:b22846", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4850", + "@id": "_:b2175", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "result": { - "@id": "_:b4860", + "@id": "_:b22845", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4851", + "@id": "_:b2178", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4861", + "@id": "_:b22848", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4847", + "@id": "_:b2172", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4857", + "@id": "_:b20225", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4849", + "@id": "_:b2179", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "result": { - "@id": "_:b4859", + "@id": "_:b22849", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4846", + "@id": "_:b2173", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "result": { - "@id": "_:b4856", + "@id": "_:b22131", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4843", + "@id": "_:b2174", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088", "result": { - "@id": "_:b4853", + "@id": "_:b6435", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0088-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0088-context.jsonld" + }, + "title": "Compact a graph with @index using a [@graph, @id] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0088-in.jsonld", + "rdfs:comment": "Compact a @graph container with @id and @set, discarding an @index value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4279", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c017-out.jsonld", - "title": "multiple type-scoped contexts are properly reverted", - "rdfs:comment": "multiple type-scoped contexts are property reverted", "assertions": [ { - "@id": "_:b4286", + "@id": "_:b3185", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "result": { - "@id": "_:b9426", + "@id": "_:b23455", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4284", + "@id": "_:b3178", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9424", + "@id": "_:b3179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4287", + "@id": "_:b3186", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9427", + "@id": "_:b22651", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4281", + "@id": "_:b3181", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9421", + "@id": "_:b19781", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4285", + "@id": "_:b3188", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "result": { - "@id": "_:b9425", + "@id": "_:b19230", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4283", + "@id": "_:b3187", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9423", + "@id": "_:b15060", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4277", + "@id": "_:b3182", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4278", + "@id": "_:b22079", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4282", + "@id": "_:b3184", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "result": { - "@id": "_:b9422", + "@id": "_:b25218", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4280", + "@id": "_:b3183", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "result": { - "@id": "_:b6914", + "@id": "_:b9728", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4288", + "@id": "_:b3180", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089", "result": { - "@id": "_:b9428", + "@id": "_:b14403", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0089-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0089-context.jsonld" + }, + "title": "Language map term selection with complications", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0089-in.jsonld", + "rdfs:comment": "Test appropriate property use given language maps with @vocab, a default language, no language, and competing terms" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4731", + "@id": "_:b8666", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c018-out.jsonld", - "title": "multiple type-scoped types resolved against previous context", - "rdfs:comment": "multiple type-scoped types resolved against previous context", "assertions": [ { - "@id": "_:b4733", + "@id": "_:b8671", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "result": { - "@id": "_:b14458", + "@id": "_:b24153", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4738", + "@id": "_:b8673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23526", + "@id": "_:b14873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4737", + "@id": "_:b8665", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23525", + "@id": "_:b5232", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4735", + "@id": "_:b8670", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23068", + "@id": "_:b21759", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4740", + "@id": "_:b8667", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "result": { - "@id": "_:b7824", + "@id": "_:b11086", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4734", + "@id": "_:b8672", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17889", + "@id": "_:b24722", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4732", + "@id": "_:b8668", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14753", + "@id": "_:b18171", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4739", + "@id": "_:b8669", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "result": { - "@id": "_:b12811", + "@id": "_:b19929", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4736", + "@id": "_:b8674", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "result": { - "@id": "_:b21525", + "@id": "_:b25627", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4729", + "@id": "_:b8675", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090", "result": { - "@id": "_:b4730", + "@id": "_:b23462", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0090-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0090-context.jsonld" + }, + "title": "Compact input with @graph container to output without @graph container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0090-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3550", + "@id": "_:b21303", + "https://w3c.github.io/json-ld-api/tests/vocab#compactArrays": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c019-out.jsonld", - "title": "type-scoped context with multiple property scoped terms", - "rdfs:comment": "type-scoped context with multiple property scoped terms", "assertions": [ { - "@id": "_:b3555", + "@id": "_:b21312", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "result": { - "@id": "_:b25291", + "@id": "_:b22068", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3551", + "@id": "_:b21310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4819", + "@id": "_:b20289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3548", + "@id": "_:b21307", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3549", + "@id": "_:b25209", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3553", + "@id": "_:b21301", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20852", + "@id": "_:b21302", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3554", + "@id": "_:b21309", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "result": { - "@id": "_:b25563", + "@id": "_:b16292", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3558", + "@id": "_:b21305", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23971", + "@id": "_:b21693", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3556", + "@id": "_:b21311", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26248", + "@id": "_:b25492", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3552", + "@id": "_:b21308", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "result": { - "@id": "_:b18715", + "@id": "_:b25967", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3559", + "@id": "_:b21304", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "result": { - "@id": "_:b26070", + "@id": "_:b8925", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3557", + "@id": "_:b21306", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091", "result": { - "@id": "_:b20091", + "@id": "_:b24960", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0091-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0091-context.jsonld" + }, + "title": "Compact input with @graph container to output without @graph container with compactArrays unset", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0091-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output with compactArrays unset" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21834", + "@id": "_:b12976", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c020-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c020-out.jsonld", - "title": "type-scoped value", - "rdfs:comment": "type-scoped value", "assertions": [ { - "@id": "_:b21840", + "@id": "_:b12974", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "result": { - "@id": "_:b1414", + "@id": "_:b12975", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b21835", + "@id": "_:b12981", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21845", + "@id": "_:b13144", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21837", + "@id": "_:b12980", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21846", + "@id": "_:b13143", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21841", + "@id": "_:b12977", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21849", + "@id": "_:b11639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21836", + "@id": "_:b12984", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "result": { - "@id": "_:b10926", + "@id": "_:b13147", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21843", + "@id": "_:b12985", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11359", + "@id": "_:b13148", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21844", + "@id": "_:b12978", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21850", + "@id": "_:b13141", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21842", + "@id": "_:b12979", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "result": { - "@id": "_:b10212", + "@id": "_:b13142", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b21839", + "@id": "_:b12982", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "result": { - "@id": "_:b21848", + "@id": "_:b13145", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21838", + "@id": "_:b12983", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092", "result": { - "@id": "_:b21847", + "@id": "_:b13146", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0092-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0092-context.jsonld" + }, + "title": "Compact input with [@graph, @set] container to output without [@graph, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0092-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10429", + "@id": "_:b10499", + "https://w3c.github.io/json-ld-api/tests/vocab#compactArrays": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c021-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c021-out.jsonld", - "title": "type-scoped value mix", - "rdfs:comment": "type-scoped value mix", "assertions": [ { - "@id": "_:b10434", + "@id": "_:b10506", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "result": { - "@id": "_:b17794", + "@id": "_:b19705", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10435", + "@id": "_:b10504", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17795", + "@id": "_:b19704", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10431", + "@id": "_:b10500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17791", + "@id": "_:b14289", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10427", + "@id": "_:b10503", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10428", + "@id": "_:b19703", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10433", + "@id": "_:b10507", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "result": { - "@id": "_:b17793", + "@id": "_:b19706", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10437", + "@id": "_:b10502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17797", + "@id": "_:b19702", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10438", + "@id": "_:b10497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17798", + "@id": "_:b10498", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10432", + "@id": "_:b10501", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "result": { - "@id": "_:b17792", + "@id": "_:b19701", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10430", + "@id": "_:b10505", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "result": { - "@id": "_:b15724", + "@id": "_:b18316", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10436", + "@id": "_:b10508", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093", "result": { - "@id": "_:b17796", + "@id": "_:b19707", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0093-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0093-context.jsonld" + }, + "title": "Compact input with [@graph, @set] container to output without [@graph, @set] container with compactArrays unset", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0093-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output with compactArrays unset" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4809", + "@id": "_:b6835", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c022-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c022-out.jsonld", - "title": "type-scoped property-scoped contexts including @type:@vocab", - "rdfs:comment": "type-scoped property-scoped contexts including @type:@vocab", "assertions": [ { - "@id": "_:b4815", + "@id": "_:b6839", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "result": { - "@id": "_:b4276", + "@id": "_:b26004", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4807", + "@id": "_:b6836", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4808", + "@id": "_:b22944", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4817", + "@id": "_:b6840", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23692", + "@id": "_:b20681", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4818", + "@id": "_:b6838", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10938", + "@id": "_:b24378", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4813", + "@id": "_:b6844", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "result": { - "@id": "_:b19637", + "@id": "_:b27008", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4814", + "@id": "_:b6833", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20353", + "@id": "_:b6834", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4816", + "@id": "_:b6842", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4927", + "@id": "_:b17113", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4810", + "@id": "_:b6843", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "result": { - "@id": "_:b11044", + "@id": "_:b26721", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4811", + "@id": "_:b6841", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "result": { - "@id": "_:b15312", + "@id": "_:b19443", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4812", + "@id": "_:b6837", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094", "result": { - "@id": "_:b17973", + "@id": "_:b25701", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0094-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0094-context.jsonld" + }, + "title": "Compact input with [@graph, @set] container to output without [@graph, @set] container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0094-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18907", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c023-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c023-out.jsonld", - "title": "composed type-scoped property-scoped contexts including @type:@vocab", - "rdfs:comment": "composed type-scoped property-scoped contexts including @type:@vocab", "assertions": [ { - "@id": "_:b18914", + "@id": "_:b8650", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "result": { - "@id": "_:b25518", + "@id": "_:b26621", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18916", + "@id": "_:b8641", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23162", + "@id": "_:b8642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18915", + "@id": "_:b8644", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26956", + "@id": "_:b22479", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18908", + "@id": "_:b8643", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20380", + "@id": "_:b9972", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18911", + "@id": "_:b8645", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "result": { - "@id": "_:b25259", + "@id": "_:b24322", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18909", + "@id": "_:b8647", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21556", + "@id": "_:b26620", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18917", + "@id": "_:b8651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23792", + "@id": "_:b25794", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18913", + "@id": "_:b8646", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "result": { - "@id": "_:b26338", + "@id": "_:b25258", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18912", + "@id": "_:b8648", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "result": { - "@id": "_:b24043", + "@id": "_:b18655", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18910", + "@id": "_:b8649", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095", "result": { - "@id": "_:b23313", + "@id": "_:b24336", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0095-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0095-context.jsonld" + }, + "title": "Relative propererty IRIs with @vocab: ''", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0095-in.jsonld", + "rdfs:comment": "Complex use cases for relative IRI compaction or properties" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1824", + "@id": "_:b5269", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c024-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c024-out.jsonld", - "title": "type-scoped + property-scoped + values evaluates against previous context", - "rdfs:comment": "type-scoped + property-scoped + values evaluates against previous context", "assertions": [ { - "@id": "_:b1829", + "@id": "_:b5277", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "result": { - "@id": "_:b18930", + "@id": "_:b25411", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1832", + "@id": "_:b5275", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18828", + "@id": "_:b14089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1831", + "@id": "_:b5270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18931", + "@id": "_:b2106", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1828", + "@id": "_:b5276", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18929", + "@id": "_:b20193", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1827", + "@id": "_:b5267", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "result": { - "@id": "_:b18928", + "@id": "_:b5268", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1825", + "@id": "_:b5274", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18926", + "@id": "_:b15753", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1830", + "@id": "_:b5273", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14004", + "@id": "_:b7532", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1822", + "@id": "_:b5278", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "result": { - "@id": "_:b1823", + "@id": "_:b21011", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1833", + "@id": "_:b5272", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "result": { - "@id": "_:b18932", + "@id": "_:b15246", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1826", + "@id": "_:b5271", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096", "result": { - "@id": "_:b18927", + "@id": "_:b20525", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0096-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0096-context.jsonld" + }, + "title": "Compact @graph container (multiple graphs)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0096-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11161", + "@id": "_:b2574", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c025-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c025-out.jsonld", - "title": "type-scoped + graph container", - "rdfs:comment": "type-scoped + graph container", "assertions": [ { - "@id": "_:b11170", + "@id": "_:b2578", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "result": { - "@id": "_:b11617", + "@id": "_:b2588", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11167", + "@id": "_:b2582", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11614", + "@id": "_:b2592", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11166", + "@id": "_:b2581", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11613", + "@id": "_:b2591", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11168", + "@id": "_:b2580", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11615", + "@id": "_:b2590", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11162", + "@id": "_:b2579", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "result": { - "@id": "_:b11137", + "@id": "_:b2589", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11169", + "@id": "_:b2583", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11616", + "@id": "_:b2593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11165", + "@id": "_:b2575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11612", + "@id": "_:b2585", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11163", + "@id": "_:b2576", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "result": { - "@id": "_:b11610", + "@id": "_:b2586", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11159", + "@id": "_:b2577", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "result": { - "@id": "_:b11160", + "@id": "_:b2587", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11164", + "@id": "_:b2584", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097", "result": { - "@id": "_:b11611", + "@id": "_:b2594", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0097-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0097-context.jsonld" + }, + "title": "Compact [@graph, @set] container (multiple graphs)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0097-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11811", + "@id": "_:b10379", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c026-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c026-out.jsonld", - "title": "@propagate: true on type-scoped context", - "rdfs:comment": "type-scoped context with @propagate: true survive node-objects", "assertions": [ { - "@id": "_:b11820", + "@id": "_:b10389", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "result": { - "@id": "_:b12144", + "@id": "_:b10399", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11814", + "@id": "_:b10386", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21771", + "@id": "_:b10396", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11817", + "@id": "_:b10385", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22888", + "@id": "_:b10395", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11815", + "@id": "_:b10381", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5005", + "@id": "_:b10391", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11816", + "@id": "_:b10383", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "result": { - "@id": "_:b25010", + "@id": "_:b10393", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11818", + "@id": "_:b10388", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26067", + "@id": "_:b10398", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11819", + "@id": "_:b10382", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25255", + "@id": "_:b10392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11813", + "@id": "_:b10387", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "result": { - "@id": "_:b20279", + "@id": "_:b10397", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11809", + "@id": "_:b10380", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "result": { - "@id": "_:b11810", + "@id": "_:b10390", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11812", + "@id": "_:b10384", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098", "result": { - "@id": "_:b15754", + "@id": "_:b10394", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0098-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0098-context.jsonld" + }, + "title": "Compact [@graph, @index] container (multiple indexed objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0098-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9297", + "@id": "_:b21570", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c027-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c027-out.jsonld", - "title": "@propagate: false on property-scoped context", - "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects", "assertions": [ { - "@id": "_:b9299", + "@id": "_:b21576", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "result": { - "@id": "_:b17599", + "@id": "_:b21583", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9300", + "@id": "_:b21573", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19278", + "@id": "_:b21581", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9302", + "@id": "_:b21572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19280", + "@id": "_:b11960", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9301", + "@id": "_:b21577", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19279", + "@id": "_:b21584", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9305", + "@id": "_:b21571", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "result": { - "@id": "_:b19282", + "@id": "_:b18800", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9304", + "@id": "_:b21575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10732", + "@id": "_:b21103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9307", + "@id": "_:b21580", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7359", + "@id": "_:b18343", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9298", + "@id": "_:b21578", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "result": { - "@id": "_:b12627", + "@id": "_:b18876", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9303", + "@id": "_:b21579", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "result": { - "@id": "_:b19281", + "@id": "_:b17171", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9306", + "@id": "_:b21574", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099", "result": { - "@id": "_:b11728", + "@id": "_:b21582", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0099-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0099-context.jsonld" + }, + "title": "Compact [@graph, @index, @set] container (multiple indexed objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0099-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b21770", + "@id": "_:b9659", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c028-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c028-out.jsonld", - "title": "@propagate: false on embedded context", - "rdfs:comment": "embedded context with @propagate: false do not survive node-objects", "assertions": [ { - "@id": "_:b23201", + "@id": "_:b9662", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "result": { - "@id": "_:b24105", + "@id": "_:b7042", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b23196", + "@id": "_:b9666", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24915", + "@id": "_:b3507", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b23195", + "@id": "_:b9657", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24209", + "@id": "_:b9658", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23198", + "@id": "_:b9664", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26557", + "@id": "_:b24245", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23199", + "@id": "_:b9660", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "result": { - "@id": "_:b26845", + "@id": "_:b21751", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b23200", + "@id": "_:b9663", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3995", + "@id": "_:b24244", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b23194", + "@id": "_:b9668", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18066", + "@id": "_:b24248", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b23202", + "@id": "_:b9661", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "result": { - "@id": "_:b26066", + "@id": "_:b22118", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b23192", + "@id": "_:b9667", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "result": { - "@id": "_:b23193", + "@id": "_:b24247", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b23197", + "@id": "_:b9665", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100", "result": { - "@id": "_:b26228", + "@id": "_:b24246", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0100-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0100-context.jsonld" + }, + "title": "Compact [@graph, @id] container (multiple indexed objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0100-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18247", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b13446", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c029-in.jsonld", - "mf:result": "invalid context entry", - "title": "@propagate is invalid in 1.0", - "rdfs:comment": "@propagate is invalid in 1.0", "assertions": [ { - "@id": "_:b18255", + "@id": "_:b13456", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "result": { - "@id": "_:b22917", + "@id": "_:b23386", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18254", + "@id": "_:b13449", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22916", + "@id": "_:b19950", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18245", + "@id": "_:b13453", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18246", + "@id": "_:b23384", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18253", + "@id": "_:b13451", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22168", + "@id": "_:b23382", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18250", + "@id": "_:b13454", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "result": { - "@id": "_:b22913", + "@id": "_:b16011", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18251", + "@id": "_:b13447", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22914", + "@id": "_:b17281", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18252", + "@id": "_:b13455", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22915", + "@id": "_:b23385", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18249", + "@id": "_:b13450", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "result": { - "@id": "_:b21399", + "@id": "_:b22997", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18256", + "@id": "_:b13452", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "result": { - "@id": "_:b22918", + "@id": "_:b23383", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18248", + "@id": "_:b13448", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101", "result": { - "@id": "_:b20337", + "@id": "_:b21276", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0101-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0101-context.jsonld" + }, + "title": "Compact [@graph, @id, @set] container (multiple indexed objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0101-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14809", + "@id": "_:b13938", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c030-in.jsonld", - "mf:result": "invalid @propagate value", - "title": "@propagate must be boolean valued", - "rdfs:comment": "@propagate must be boolean valued", "assertions": [ { - "@id": "_:b14812", + "@id": "_:b17236", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "result": { - "@id": "_:b23076", + "@id": "_:b22039", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14813", + "@id": "_:b17242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21537", + "@id": "_:b24985", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14817", + "@id": "_:b17238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21431", + "@id": "_:b24159", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14816", + "@id": "_:b17243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18650", + "@id": "_:b25845", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14811", + "@id": "_:b17233", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "result": { - "@id": "_:b23075", + "@id": "_:b17234", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14815", + "@id": "_:b17239", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23078", + "@id": "_:b25742", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14807", + "@id": "_:b17240", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14808", + "@id": "_:b26754", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14810", + "@id": "_:b17241", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "result": { - "@id": "_:b22164", + "@id": "_:b25457", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14814", + "@id": "_:b17237", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "result": { - "@id": "_:b23077", + "@id": "_:b24303", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14818", + "@id": "_:b17235", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102", "result": { - "@id": "_:b21811", + "@id": "_:b18810", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0102-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0102-context.jsonld" + }, + "title": "Compact [@graph, @index] container (multiple indexes and objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0102-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15797", + "@id": "_:b20309", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c031-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c031-out.jsonld", - "title": "@context resolutions respects relative URLs.", - "rdfs:comment": "URL resolution follows RFC3986", "assertions": [ { - "@id": "_:b15800", + "@id": "_:b20313", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "result": { - "@id": "_:b25440", + "@id": "_:b3480", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15795", + "@id": "_:b20311", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15796", + "@id": "_:b23921", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15803", + "@id": "_:b20317", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6683", + "@id": "_:b23953", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15806", + "@id": "_:b20316", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22838", + "@id": "_:b20427", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15804", + "@id": "_:b20312", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "result": { - "@id": "_:b23403", + "@id": "_:b25867", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15798", + "@id": "_:b20307", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20271", + "@id": "_:b20308", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15805", + "@id": "_:b20310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22859", + "@id": "_:b11324", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15799", + "@id": "_:b20314", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "result": { - "@id": "_:b24117", + "@id": "_:b26996", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15802", + "@id": "_:b20315", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "result": { - "@id": "_:b26951", + "@id": "_:b25660", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15801", + "@id": "_:b20318", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103", "result": { - "@id": "_:b26489", + "@id": "_:b26194", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0103-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0103-context.jsonld" + }, + "title": "Compact [@graph, @id] container (multiple ids and objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0103-in.jsonld", + "rdfs:comment": "Ensure @graph appears properly in output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b961", + "@id": "_:b6619", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c032-in.jsonld", - "mf:result": "invalid scoped context", - "title": "Unused embedded context with error.", - "rdfs:comment": "An embedded context which is never used should still be checked.", "assertions": [ { - "@id": "_:b959", + "@id": "_:b6625", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "result": { - "@id": "_:b960", + "@id": "_:b25734", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b964", + "@id": "_:b6617", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20445", + "@id": "_:b6618", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b965", + "@id": "_:b6622", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20446", + "@id": "_:b9287", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b969", + "@id": "_:b6628", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20449", + "@id": "_:b10052", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b970", + "@id": "_:b6624", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "result": { - "@id": "_:b20450", + "@id": "_:b25714", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b962", + "@id": "_:b6627", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18438", + "@id": "_:b25292", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b966", + "@id": "_:b6623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20447", + "@id": "_:b13085", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b968", + "@id": "_:b6621", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "result": { - "@id": "_:b20448", + "@id": "_:b22865", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b963", + "@id": "_:b6620", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "result": { - "@id": "_:b20444", + "@id": "_:b20884", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b967", + "@id": "_:b6626", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104", "result": { - "@id": "_:b17237", + "@id": "_:b20219", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0104-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0104-context.jsonld" + }, + "title": "Compact @type with @container: @set", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0104-in.jsonld", + "rdfs:comment": "Ensures that a single @type value is represented as an array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2512", + "@id": "_:b4797", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c033-in.jsonld", - "mf:result": "invalid scoped context", - "title": "Unused context with an embedded context error.", - "rdfs:comment": "An unused context with an embedded context should still be checked.", "assertions": [ { - "@id": "_:b2519", + "@id": "_:b4798", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "result": { - "@id": "_:b22693", + "@id": "_:b5817", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2510", + "@id": "_:b4805", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2511", + "@id": "_:b20210", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2514", + "@id": "_:b4802", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15351", + "@id": "_:b25810", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2521", + "@id": "_:b4801", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22694", + "@id": "_:b24509", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2515", + "@id": "_:b4800", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "result": { - "@id": "_:b11045", + "@id": "_:b22882", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2513", + "@id": "_:b4795", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7012", + "@id": "_:b4796", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2520", + "@id": "_:b4806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12363", + "@id": "_:b25831", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2517", + "@id": "_:b4803", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "result": { - "@id": "_:b22691", + "@id": "_:b18687", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2518", + "@id": "_:b4804", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "result": { - "@id": "_:b22692", + "@id": "_:b25830", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2516", + "@id": "_:b4799", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105", "result": { - "@id": "_:b21015", + "@id": "_:b17291", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0105-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0105-context.jsonld" + }, + "title": "Compact @type with @container: @set using an alias of @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0105-in.jsonld", + "rdfs:comment": "Ensures that a single @type value is represented as an array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17658", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b2828", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c034-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c034-out.jsonld", - "title": "Remote scoped context.", - "rdfs:comment": "Scoped contexts may be externally loaded.", "assertions": [ { - "@id": "_:b17663", + "@id": "_:b2834", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "result": { - "@id": "_:b20229", + "@id": "_:b24050", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17660", + "@id": "_:b2831", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20227", + "@id": "_:b26011", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17661", + "@id": "_:b2829", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20228", + "@id": "_:b7779", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17656", + "@id": "_:b2835", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17657", + "@id": "_:b26630", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17667", + "@id": "_:b2836", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "result": { - "@id": "_:b20232", + "@id": "_:b24512", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17662", + "@id": "_:b2833", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17106", + "@id": "_:b16548", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17664", + "@id": "_:b2832", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13414", + "@id": "_:b26113", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17665", + "@id": "_:b2830", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "result": { - "@id": "_:b20230", + "@id": "_:b25487", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17659", + "@id": "_:b2837", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "result": { - "@id": "_:b17709", + "@id": "_:b21383", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17666", + "@id": "_:b2826", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106", "result": { - "@id": "_:b20231", + "@id": "_:b2827", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0106-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0106-context.jsonld" + }, + "title": "Do not compact @type with @container: @set to an array using an alias of @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0106-in.jsonld", + "rdfs:comment": "Ensures that a single @type value is not represented as an array in 1.0" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3198", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/c035-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/c035-out.jsonld", - "title": "Term scoping with embedded contexts.", - "rdfs:comment": "Terms should make use of @vocab relative to the scope in which the term was defined.", "assertions": [ { - "@id": "_:b3205", + "@id": "_:b11344", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "result": { - "@id": "_:b4533", + "@id": "_:b21799", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3203", + "@id": "_:b11347", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17371", + "@id": "_:b23812", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3199", + "@id": "_:b11343", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16590", + "@id": "_:b20323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3200", + "@id": "_:b11346", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17369", + "@id": "_:b13772", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3206", + "@id": "_:b11345", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "result": { - "@id": "_:b16595", + "@id": "_:b23811", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3196", + "@id": "_:b11342", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3197", + "@id": "_:b19660", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3207", + "@id": "_:b11340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16311", + "@id": "_:b11341", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3204", + "@id": "_:b11350", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "result": { - "@id": "_:b17372", + "@id": "_:b18710", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3202", + "@id": "_:b11349", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "result": { - "@id": "_:b6700", + "@id": "_:b23814", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3201", + "@id": "_:b11348", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107", "result": { - "@id": "_:b17370", + "@id": "_:b23813", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0107-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0107-context.jsonld" + }, + "title": "Relative propererty IRIs with @vocab: ''", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0107-in.jsonld", + "rdfs:comment": "Complex use cases for relative IRI compaction or properties" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6389", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di01-out.jsonld", - "title": "Expand string using default and term directions", - "rdfs:comment": "Strings are coerced to have @direction based on default and term direction.", "assertions": [ { - "@id": "_:b6398", + "@id": "_:b13090", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "result": { - "@id": "_:b24088", + "@id": "_:b13091", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6395", + "@id": "_:b13098", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22819", + "@id": "_:b19069", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6394", + "@id": "_:b13099", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26038", + "@id": "_:b19884", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6391", + "@id": "_:b13097", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11793", + "@id": "_:b19883", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6396", + "@id": "_:b13094", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "result": { - "@id": "_:b26417", + "@id": "_:b18064", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6392", + "@id": "_:b13093", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18689", + "@id": "_:b16897", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6397", + "@id": "_:b13100", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16570", + "@id": "_:b19885", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6390", + "@id": "_:b13092", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "result": { - "@id": "_:b14158", + "@id": "_:b13919", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6393", + "@id": "_:b13096", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "result": { - "@id": "_:b17072", + "@id": "_:b19882", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6387", + "@id": "_:b13095", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108", "result": { - "@id": "_:b6388", + "@id": "_:b19881", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0108-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0108-context.jsonld" + }, + "title": "context with JavaScript Object property names", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0108-in.jsonld", + "rdfs:comment": "Compact with context including JavaScript Object property names" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b23045", + "@id": "_:b14984", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di02-out.jsonld", - "title": "Expand string using default and term directions and languages", - "rdfs:comment": "Strings are coerced to have @direction based on default and term direction.", "assertions": [ { - "@id": "_:b23242", + "@id": "_:b14992", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "result": { - "@id": "_:b18696", + "@id": "_:b25215", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b23239", + "@id": "_:b14982", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25928", + "@id": "_:b14983", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b23235", + "@id": "_:b14986", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25911", + "@id": "_:b16160", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23244", + "@id": "_:b14990", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25931", + "@id": "_:b25088", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23241", + "@id": "_:b14988", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "result": { - "@id": "_:b23140", + "@id": "_:b25212", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b23240", + "@id": "_:b14989", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25929", + "@id": "_:b25213", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b23243", + "@id": "_:b14991", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25930", + "@id": "_:b25214", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b23238", + "@id": "_:b14985", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "result": { - "@id": "_:b25468", + "@id": "_:b21539", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b23236", + "@id": "_:b14993", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "result": { - "@id": "_:b25927", + "@id": "_:b21796", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b23237", + "@id": "_:b14987", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109", "result": { - "@id": "_:b23717", + "@id": "_:b14979", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0109-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0109-context.jsonld" + }, + "title": "Compact @graph container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0109-in.jsonld", + "rdfs:comment": "Multiple objects in a simple graph with a graph container need to use @included" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6361", + "@id": "_:b858", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di03-out.jsonld", - "title": "expand list values with @direction", - "rdfs:comment": "List values where the term has @direction are used in expansion.", "assertions": [ { - "@id": "_:b6370", + "@id": "_:b862", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "result": { - "@id": "_:b17403", + "@id": "_:b24204", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6369", + "@id": "_:b856", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17402", + "@id": "_:b857", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6359", + "@id": "_:b863", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6360", + "@id": "_:b26529", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6368", + "@id": "_:b866", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13962", + "@id": "_:b25309", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6367", + "@id": "_:b865", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "result": { - "@id": "_:b17401", + "@id": "_:b26384", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6363", + "@id": "_:b864", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17398", + "@id": "_:b26690", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6362", + "@id": "_:b861", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10532", + "@id": "_:b24771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6366", + "@id": "_:b859", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "result": { - "@id": "_:b17400", + "@id": "_:b10172", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6365", + "@id": "_:b867", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "result": { - "@id": "_:b14393", + "@id": "_:b26950", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6364", + "@id": "_:b860", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110", "result": { - "@id": "_:b17399", + "@id": "_:b21963", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/0110-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/0110-context.jsonld" + }, + "title": "Compact [@graph, @set] container (multiple objects)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/0110-in.jsonld", + "rdfs:comment": "Multiple objects in a simple graph with a graph container need to use @included" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b23571", + "@id": "_:b16474", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di04-out.jsonld", - "title": "simple language map with term direction", - "rdfs:comment": "Term selection with language maps and @direction.", "assertions": [ { - "@id": "_:b23573", + "@id": "_:b16480", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "result": { - "@id": "_:b23583", + "@id": "_:b23753", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b23576", + "@id": "_:b16476", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23585", + "@id": "_:b19479", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b23572", + "@id": "_:b16481", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23582", + "@id": "_:b23754", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23575", + "@id": "_:b16479", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21992", + "@id": "_:b1738", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23574", + "@id": "_:b16473", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "result": { - "@id": "_:b23584", + "@id": "_:b15504", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b23577", + "@id": "_:b16475", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16681", + "@id": "_:b16880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b23581", + "@id": "_:b16483", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23589", + "@id": "_:b19079", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b23578", + "@id": "_:b16477", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "result": { - "@id": "_:b23586", + "@id": "_:b2537", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b23579", + "@id": "_:b16478", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "result": { - "@id": "_:b23587", + "@id": "_:b23687", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b23580", + "@id": "_:b16482", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001", "result": { - "@id": "_:b23588", + "@id": "_:b23755", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c001-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c001-context.jsonld" + }, + "title": "adding new term", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c001-in.jsonld", + "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9675", + "@id": "_:b7101", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di05-out.jsonld", - "title": "simple language mapwith overriding term direction", - "rdfs:comment": "Term selection with language maps and @direction.", "assertions": [ { - "@id": "_:b9683", + "@id": "_:b7108", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "result": { - "@id": "_:b23732", + "@id": "_:b20326", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9676", + "@id": "_:b7102", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14171", + "@id": "_:b14268", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9682", + "@id": "_:b7110", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3450", + "@id": "_:b6182", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9679", + "@id": "_:b7109", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22028", + "@id": "_:b21977", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9684", + "@id": "_:b7099", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "result": { - "@id": "_:b20393", + "@id": "_:b7100", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9678", + "@id": "_:b7105", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21912", + "@id": "_:b23494", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9681", + "@id": "_:b7107", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25658", + "@id": "_:b23495", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9677", + "@id": "_:b7103", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "result": { - "@id": "_:b18394", + "@id": "_:b20222", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9673", + "@id": "_:b7104", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "result": { - "@id": "_:b9674", + "@id": "_:b22291", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9680", + "@id": "_:b7106", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002", "result": { - "@id": "_:b14409", + "@id": "_:b14306", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c002-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c002-context.jsonld" + }, + "title": "overriding a term", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c002-in.jsonld", + "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4151", + "@id": "_:b2292", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di06-out.jsonld", - "title": "simple language mapwith overriding null direction", - "rdfs:comment": "Term selection with language maps and @direction.", "assertions": [ { - "@id": "_:b4152", + "@id": "_:b2300", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "result": { - "@id": "_:b4195", + "@id": "_:b11297", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4153", + "@id": "_:b2298", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17651", + "@id": "_:b19780", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4157", + "@id": "_:b2290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22080", + "@id": "_:b2291", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4159", + "@id": "_:b2296", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25348", + "@id": "_:b25186", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4160", + "@id": "_:b2295", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "result": { - "@id": "_:b17816", + "@id": "_:b12044", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4149", + "@id": "_:b2301", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4150", + "@id": "_:b24825", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4158", + "@id": "_:b2294", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24489", + "@id": "_:b14481", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4155", + "@id": "_:b2297", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "result": { - "@id": "_:b19565", + "@id": "_:b25611", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4154", + "@id": "_:b2299", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "result": { - "@id": "_:b20813", + "@id": "_:b23820", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4156", + "@id": "_:b2293", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003", "result": { - "@id": "_:b25149", + "@id": "_:b8236", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c003-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c003-context.jsonld" + }, + "title": "property and value with different terms mapping to the same expanded property", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c003-in.jsonld", + "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4056", + "@id": "_:b8251", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/di07-out.jsonld", - "title": "simple language map with mismatching term direction", - "rdfs:comment": "Term selection with language maps and @direction.", "assertions": [ { - "@id": "_:b17298", + "@id": "_:b8256", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "result": { - "@id": "_:b21702", + "@id": "_:b23844", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17304", + "@id": "_:b8252", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26299", + "@id": "_:b17917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17296", + "@id": "_:b8249", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17297", + "@id": "_:b8250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17305", + "@id": "_:b8257", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26300", + "@id": "_:b25648", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17306", + "@id": "_:b8254", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "result": { - "@id": "_:b22944", + "@id": "_:b21954", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17302", + "@id": "_:b8258", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6300", + "@id": "_:b25127", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17301", + "@id": "_:b8260", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23885", + "@id": "_:b10727", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17303", + "@id": "_:b8259", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "result": { - "@id": "_:b1202", + "@id": "_:b25649", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17300", + "@id": "_:b8253", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "result": { - "@id": "_:b9330", + "@id": "_:b21713", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17299", + "@id": "_:b8255", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004", "result": { - "@id": "_:b22688", + "@id": "_:b25647", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c004-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c004-context.jsonld" + }, + "title": "deep @context affects nested nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c004-in.jsonld", + "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12483", + "@id": "_:b14670", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di08-in.jsonld", - "mf:result": "invalid base direction", - "title": "@direction must be one of ltr or rtl", - "rdfs:comment": "Generate an error if @direction has illegal value.", "assertions": [ { - "@id": "_:b12491", + "@id": "_:b14678", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "result": { - "@id": "_:b17875", + "@id": "_:b26104", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12487", + "@id": "_:b14673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14793", + "@id": "_:b19700", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12488", + "@id": "_:b14679", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17872", + "@id": "_:b19327", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12485", + "@id": "_:b14675", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17870", + "@id": "_:b24177", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12482", + "@id": "_:b14672", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "result": { - "@id": "_:b8848", + "@id": "_:b18207", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12484", + "@id": "_:b14676", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15011", + "@id": "_:b19280", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12490", + "@id": "_:b14677", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17874", + "@id": "_:b21534", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12486", + "@id": "_:b14668", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "result": { - "@id": "_:b17871", + "@id": "_:b14669", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12489", + "@id": "_:b14674", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "result": { - "@id": "_:b17873", + "@id": "_:b22274", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12492", + "@id": "_:b14671", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005", "result": { - "@id": "_:b17776", + "@id": "_:b17210", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c005-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c005-context.jsonld" + }, + "title": "scoped context layers on intemediate contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c005-in.jsonld", + "rdfs:comment": "Compaction using a scoped context uses term scope for selecting proper term" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b60", + "@id": "_:b5892", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/di09-in.jsonld", - "mf:result": "invalid value object", - "title": "@direction is incompatible with @type", - "rdfs:comment": "Value objects can have either @type but not @language or @direction.", "assertions": [ { - "@id": "_:b25589", + "@id": "_:b15214", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "result": { - "@id": "_:b26192", + "@id": "_:b21887", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b25586", + "@id": "_:b15220", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26209", + "@id": "_:b22561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b25585", + "@id": "_:b15215", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24854", + "@id": "_:b22557", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b25582", + "@id": "_:b15219", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13839", + "@id": "_:b13746", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b25583", + "@id": "_:b15217", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "result": { - "@id": "_:b25736", + "@id": "_:b22559", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b25590", + "@id": "_:b15212", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24308", + "@id": "_:b15213", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b25587", + "@id": "_:b15221", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2904", + "@id": "_:b22562", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b25584", + "@id": "_:b15218", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "result": { - "@id": "_:b26229", + "@id": "_:b22560", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b25588", + "@id": "_:b15216", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "result": { - "@id": "_:b23203", + "@id": "_:b22558", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b25591", + "@id": "_:b15222", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006", "result": { - "@id": "_:b25660", + "@id": "_:b3727", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c006-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c006-context.jsonld" + }, + "title": "adding new term", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c006-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3489", + "@id": "_:b7584", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/ec01-in.jsonld", - "mf:result": "invalid term definition", - "title": "Invalid keyword in term definition", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid term definition is found", "assertions": [ { - "@id": "_:b3493", + "@id": "_:b7588", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "result": { - "@id": "_:b24565", + "@id": "_:b25444", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3487", + "@id": "_:b7585", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3488", + "@id": "_:b17351", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3492", + "@id": "_:b7586", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21152", + "@id": "_:b23685", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3497", + "@id": "_:b7593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26612", + "@id": "_:b25542", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3496", + "@id": "_:b7589", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "result": { - "@id": "_:b26875", + "@id": "_:b19442", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3494", + "@id": "_:b7582", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22574", + "@id": "_:b7583", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3490", + "@id": "_:b7592", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13500", + "@id": "_:b17273", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3491", + "@id": "_:b7590", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "result": { - "@id": "_:b19828", + "@id": "_:b26396", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3498", + "@id": "_:b7587", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "result": { - "@id": "_:b26408", + "@id": "_:b24835", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3495", + "@id": "_:b7591", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007", "result": { - "@id": "_:b16491", + "@id": "_:b24713", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c007-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c007-context.jsonld" + }, + "title": "overriding a term", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c007-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5154", + "@id": "_:b15784", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/ec02-in.jsonld", - "mf:result": "keyword redefinition", - "title": "Term definition on @type with empty map", - "rdfs:comment": "Verifies that an exception is raised if @type is defined as a term with an empty map", "assertions": [ { - "@id": "_:b5162", + "@id": "_:b17154", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "result": { - "@id": "_:b23840", + "@id": "_:b19395", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5155", + "@id": "_:b17161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7335", + "@id": "_:b22969", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5159", + "@id": "_:b17163", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23444", + "@id": "_:b22615", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5158", + "@id": "_:b17155", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21575", + "@id": "_:b20429", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5152", + "@id": "_:b17162", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "result": { - "@id": "_:b5153", + "@id": "_:b22904", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5160", + "@id": "_:b17159", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25281", + "@id": "_:b2204", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5161", + "@id": "_:b17156", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25282", + "@id": "_:b17114", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5156", + "@id": "_:b17157", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "result": { - "@id": "_:b10816", + "@id": "_:b23283", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5163", + "@id": "_:b17160", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "result": { - "@id": "_:b25283", + "@id": "_:b23285", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5157", + "@id": "_:b17158", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008", "result": { - "@id": "_:b15264", + "@id": "_:b23284", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c008-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c008-context.jsonld" + }, + "title": "alias of @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c008-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13420", + "@id": "_:b1499", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/em01-in.jsonld", - "mf:result": "invalid container mapping", - "title": "Invalid container mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found", "assertions": [ { - "@id": "_:b13429", + "@id": "_:b1504", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "result": { - "@id": "_:b21911", + "@id": "_:b1514", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13418", + "@id": "_:b1501", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13419", + "@id": "_:b1511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13424", + "@id": "_:b1508", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21908", + "@id": "_:b1518", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13425", + "@id": "_:b1507", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21909", + "@id": "_:b1517", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13426", + "@id": "_:b1506", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "result": { - "@id": "_:b20866", + "@id": "_:b1516", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13421", + "@id": "_:b1502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20277", + "@id": "_:b1512", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13428", + "@id": "_:b1509", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21773", + "@id": "_:b1519", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13423", + "@id": "_:b1505", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "result": { - "@id": "_:b21907", + "@id": "_:b1515", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13427", + "@id": "_:b1500", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "result": { - "@id": "_:b21910", + "@id": "_:b1510", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13422", + "@id": "_:b1503", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009", "result": { - "@id": "_:b21906", + "@id": "_:b1513", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c009-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c009-context.jsonld" + }, + "title": "deep @type-scoped @context does NOT affect nested nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c009-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7953", + "@id": "_:b15520", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en01-in.jsonld", - "mf:result": "invalid @nest value", - "title": "@nest MUST NOT have a string value", - "rdfs:comment": "container: @nest", "assertions": [ { - "@id": "_:b7957", + "@id": "_:b15518", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "result": { - "@id": "_:b7966", + "@id": "_:b15519", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7959", + "@id": "_:b15523", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7968", + "@id": "_:b25346", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7956", + "@id": "_:b15521", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7965", + "@id": "_:b25344", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7954", + "@id": "_:b15525", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5607", + "@id": "_:b17661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7962", + "@id": "_:b15527", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "result": { - "@id": "_:b7970", + "@id": "_:b11502", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7955", + "@id": "_:b15522", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7964", + "@id": "_:b25345", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7963", + "@id": "_:b15526", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7971", + "@id": "_:b3728", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7961", + "@id": "_:b15529", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "result": { - "@id": "_:b7969", + "@id": "_:b25348", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7958", + "@id": "_:b15524", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "result": { - "@id": "_:b7967", + "@id": "_:b22754", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7960", + "@id": "_:b15528", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010", "result": { - "@id": "_:b4991", + "@id": "_:b25347", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c010-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c010-context.jsonld" + }, + "title": "scoped context layers on intemediate contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c010-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10071", + "@id": "_:b6212", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en02-in.jsonld", - "mf:result": "invalid @nest value", - "title": "@nest MUST NOT have a boolen value", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b15964", + "@id": "_:b6215", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "result": { - "@id": "_:b18964", + "@id": "_:b24211", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15961", + "@id": "_:b6216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18961", + "@id": "_:b24413", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15966", + "@id": "_:b6217", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18965", + "@id": "_:b24618", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15965", + "@id": "_:b6218", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4806", + "@id": "_:b24619", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15960", + "@id": "_:b6213", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "result": { - "@id": "_:b18318", + "@id": "_:b15457", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15958", + "@id": "_:b6214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15959", + "@id": "_:b22339", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15962", + "@id": "_:b6210", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18962", + "@id": "_:b6211", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15968", + "@id": "_:b6221", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "result": { - "@id": "_:b18967", + "@id": "_:b14287", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15963", + "@id": "_:b6220", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "result": { - "@id": "_:b18963", + "@id": "_:b22970", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15967", + "@id": "_:b6219", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011", "result": { - "@id": "_:b18966", + "@id": "_:b24620", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c011-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c011-context.jsonld" + }, + "title": "applies context for all values", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c011-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5583", + "@id": "_:b10056", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en03-in.jsonld", - "mf:result": "invalid @nest value", - "title": "@nest MUST NOT have a numeric value", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b5588", + "@id": "_:b10065", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "result": { - "@id": "_:b16860", + "@id": "_:b17311", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5581", + "@id": "_:b10063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5582", + "@id": "_:b17309", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5591", + "@id": "_:b10057", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21795", + "@id": "_:b17303", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5584", + "@id": "_:b10059", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8614", + "@id": "_:b17305", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5589", + "@id": "_:b10061", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "result": { - "@id": "_:b24100", + "@id": "_:b17307", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5585", + "@id": "_:b10064", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20013", + "@id": "_:b17310", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5586", + "@id": "_:b10062", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7926", + "@id": "_:b17308", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5587", + "@id": "_:b10054", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "result": { - "@id": "_:b24337", + "@id": "_:b10055", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5592", + "@id": "_:b10058", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "result": { - "@id": "_:b3850", + "@id": "_:b17304", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5590", + "@id": "_:b10060", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012", "result": { - "@id": "_:b14999", + "@id": "_:b17306", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c012-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c012-context.jsonld" + }, + "title": "orders @type terms when applying scoped contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c012-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19153", + "@id": "_:b15641", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en04-in.jsonld", - "mf:result": "invalid @nest value", - "title": "@nest MUST NOT have a value object value", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b19156", + "@id": "_:b15649", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "result": { - "@id": "_:b17766", + "@id": "_:b15659", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19155", + "@id": "_:b15643", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24003", + "@id": "_:b15653", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19158", + "@id": "_:b15642", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22454", + "@id": "_:b15652", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19159", + "@id": "_:b15651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22591", + "@id": "_:b15661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19160", + "@id": "_:b15648", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "result": { - "@id": "_:b23930", + "@id": "_:b15658", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19154", + "@id": "_:b15645", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19289", + "@id": "_:b15655", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19152", + "@id": "_:b15650", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14882", + "@id": "_:b15660", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19161", + "@id": "_:b15646", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "result": { - "@id": "_:b21512", + "@id": "_:b15656", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19157", + "@id": "_:b15644", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "result": { - "@id": "_:b25413", + "@id": "_:b15654", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19162", + "@id": "_:b15647", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013", "result": { - "@id": "_:b19359", + "@id": "_:b15657", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c013-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c013-context.jsonld" + }, + "title": "deep property-term scoped @context in @type-scoped @context affects nested nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c013-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16708", + "@id": "_:b10951", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en05-in.jsonld", - "mf:result": "invalid @nest value", - "title": "does not allow a keyword other than @nest for the value of @nest", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b16717", + "@id": "_:b10954", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "result": { - "@id": "_:b24749", + "@id": "_:b17276", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16712", + "@id": "_:b10957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24745", + "@id": "_:b17278", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16710", + "@id": "_:b10960", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19277", + "@id": "_:b4375", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16716", + "@id": "_:b10956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21074", + "@id": "_:b17277", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16711", + "@id": "_:b10953", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "result": { - "@id": "_:b19566", + "@id": "_:b17275", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16715", + "@id": "_:b10949", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24748", + "@id": "_:b10950", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16709", + "@id": "_:b10959", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18642", + "@id": "_:b17280", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16713", + "@id": "_:b10952", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "result": { - "@id": "_:b24746", + "@id": "_:b14057", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16714", + "@id": "_:b10955", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "result": { - "@id": "_:b24747", + "@id": "_:b1845", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16706", + "@id": "_:b10958", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014", "result": { - "@id": "_:b16707", + "@id": "_:b17279", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c014-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c014-context.jsonld" + }, + "title": "type-scoped context nullification", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c014-in.jsonld", + "rdfs:comment": "Nullifying a type-scoped context continues to use the previous context when compacting @type." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9411", + "@id": "_:b20838", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/en06-in.jsonld", - "mf:result": "invalid reverse property", - "title": "does not allow @nest with @reverse", - "rdfs:comment": "Transparent Nesting", "assertions": [ { - "@id": "_:b9414", + "@id": "_:b20843", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "result": { - "@id": "_:b17171", + "@id": "_:b21641", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9419", + "@id": "_:b20842", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25638", + "@id": "_:b20397", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9420", + "@id": "_:b20845", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25459", + "@id": "_:b10561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9415", + "@id": "_:b20846", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20540", + "@id": "_:b25354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9412", + "@id": "_:b20841", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "result": { - "@id": "_:b10729", + "@id": "_:b16819", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9417", + "@id": "_:b20844", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9296", + "@id": "_:b21238", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9418", + "@id": "_:b20836", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20493", + "@id": "_:b20837", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9409", + "@id": "_:b20847", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "result": { - "@id": "_:b9410", + "@id": "_:b14121", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9413", + "@id": "_:b20839", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "result": { - "@id": "_:b13921", + "@id": "_:b20810", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9416", + "@id": "_:b20840", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015", "result": { - "@id": "_:b22569", + "@id": "_:b22471", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c015-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c015-context.jsonld" + }, + "title": "type-scoped base", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c015-in.jsonld", + "rdfs:comment": "type-scoped base" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b757", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b11030", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/ep02-in.jsonld", - "mf:result": "processing mode conflict", - "title": "processingMode json-ld-1.0 conflicts with @version: 1.1", - "rdfs:comment": "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features.", "assertions": [ { - "@id": "_:b767", + "@id": "_:b11037", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "result": { - "@id": "_:b777", + "@id": "_:b11046", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b759", + "@id": "_:b11031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b769", + "@id": "_:b11041", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b765", + "@id": "_:b11036", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b775", + "@id": "_:b11045", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b762", + "@id": "_:b11039", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b772", + "@id": "_:b11048", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b764", + "@id": "_:b11033", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "result": { - "@id": "_:b774", + "@id": "_:b11042", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b760", + "@id": "_:b11035", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b770", + "@id": "_:b11044", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b763", + "@id": "_:b11038", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b773", + "@id": "_:b11047", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b758", + "@id": "_:b11034", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "result": { - "@id": "_:b768", + "@id": "_:b11043", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b761", + "@id": "_:b11040", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "result": { - "@id": "_:b771", + "@id": "_:b11049", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b766", + "@id": "_:b11032", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016", "result": { - "@id": "_:b776", + "@id": "_:b8721", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c016-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c016-context.jsonld" + }, + "title": "type-scoped vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c016-in.jsonld", + "rdfs:comment": "type-scoped vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2902", + "@id": "_:b6254", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/ep03-in.jsonld", - "mf:result": "invalid @version value", - "title": "@version must be 1.1", - "rdfs:comment": "If @version is specified, it must be 1.1", "assertions": [ { - "@id": "_:b10584", + "@id": "_:b6262", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "result": { - "@id": "_:b12621", + "@id": "_:b23739", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10586", + "@id": "_:b6258", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12623", + "@id": "_:b23735", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10585", + "@id": "_:b6252", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12622", + "@id": "_:b6253", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10588", + "@id": "_:b6263", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12625", + "@id": "_:b23740", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10581", + "@id": "_:b6255", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "result": { - "@id": "_:b12619", + "@id": "_:b16914", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10582", + "@id": "_:b6260", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12620", + "@id": "_:b23737", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10583", + "@id": "_:b6261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6912", + "@id": "_:b23738", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10587", + "@id": "_:b6256", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "result": { - "@id": "_:b12624", + "@id": "_:b20678", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10589", + "@id": "_:b6259", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "result": { - "@id": "_:b12626", + "@id": "_:b23736", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10579", + "@id": "_:b6257", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017", "result": { - "@id": "_:b10580", + "@id": "_:b6629", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c017-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c017-context.jsonld" + }, + "title": "multiple type-scoped contexts are properly reverted", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c017-in.jsonld", + "rdfs:comment": "multiple type-scoped contexts are property reverted" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er01-in.jsonld", - "mf:result": "keyword redefinition", - "title": "Keywords cannot be aliased to other keywords", - "rdfs:comment": "Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b9024", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2142", + "@id": "_:b9029", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "result": { - "@id": "_:b26099", + "@id": "_:b21831", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2141", + "@id": "_:b9026", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24738", + "@id": "_:b2915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2135", + "@id": "_:b9025", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13682", + "@id": "_:b19559", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2136", + "@id": "_:b9031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8010", + "@id": "_:b21832", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2143", + "@id": "_:b9030", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "result": { - "@id": "_:b26941", + "@id": "_:b20671", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2139", + "@id": "_:b9028", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23883", + "@id": "_:b3164", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2133", + "@id": "_:b9032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2134", + "@id": "_:b17272", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2138", + "@id": "_:b9022", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "result": { - "@id": "_:b22208", + "@id": "_:b9023", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2140", + "@id": "_:b9033", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "result": { - "@id": "_:b19030", + "@id": "_:b21833", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2137", + "@id": "_:b9027", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018", "result": { - "@id": "_:b21412", + "@id": "_:b16373", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c018-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c018-context.jsonld" + }, + "title": "multiple type-scoped types resolved against previous context", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c018-in.jsonld", + "rdfs:comment": "multiple type-scoped types resolved against previous context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er04-in.jsonld", - "mf:result": "loading remote context failed", - "title": "Error dereferencing a remote context", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context dereference results in an error", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2488", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b16688", + "@id": "_:b2486", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "result": { - "@id": "_:b22659", + "@id": "_:b2487", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16691", + "@id": "_:b2491", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22662", + "@id": "_:b3755", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16693", + "@id": "_:b2494", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22664", + "@id": "_:b3758", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16689", + "@id": "_:b2489", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22660", + "@id": "_:b3753", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16686", + "@id": "_:b2492", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "result": { - "@id": "_:b20885", + "@id": "_:b3756", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16692", + "@id": "_:b2496", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22663", + "@id": "_:b3760", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16690", + "@id": "_:b2490", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22661", + "@id": "_:b3754", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16687", + "@id": "_:b2493", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "result": { - "@id": "_:b21594", + "@id": "_:b3757", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16685", + "@id": "_:b2495", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "result": { - "@id": "_:b18761", + "@id": "_:b3759", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16683", + "@id": "_:b2497", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019", "result": { - "@id": "_:b16684", + "@id": "_:b3761", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c019-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c019-context.jsonld" + }, + "title": "type-scoped context with multiple property scoped terms", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c019-in.jsonld", + "rdfs:comment": "type-scoped context with multiple property scoped terms" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18365", + "@id": "_:b7965", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er05-in.jsonld", - "mf:result": "invalid remote context", - "title": "Invalid remote context", - "rdfs:comment": "Verifies that an exception is raised on expansion when a remote context is not an object containing @context", "assertions": [ { - "@id": "_:b18363", + "@id": "_:b7973", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "result": { - "@id": "_:b18364", + "@id": "_:b13166", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18371", + "@id": "_:b7963", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22511", + "@id": "_:b7964", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18369", + "@id": "_:b7968", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23479", + "@id": "_:b17876", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18372", + "@id": "_:b7969", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23481", + "@id": "_:b25795", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18367", + "@id": "_:b7970", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "result": { - "@id": "_:b23478", + "@id": "_:b25796", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18374", + "@id": "_:b7966", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23482", + "@id": "_:b11464", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18366", + "@id": "_:b7967", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22163", + "@id": "_:b23442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18368", + "@id": "_:b7971", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "result": { - "@id": "_:b21041", + "@id": "_:b25797", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18373", + "@id": "_:b7974", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "result": { - "@id": "_:b22536", + "@id": "_:b21602", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18370", + "@id": "_:b7972", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020", "result": { - "@id": "_:b23480", + "@id": "_:b9395", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c020-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c020-context.jsonld" + }, + "title": "type-scoped value", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c020-in.jsonld", + "rdfs:comment": "type-scoped value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er06-in.jsonld", - "mf:result": "invalid local context", - "title": "Invalid local context", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context is not a string or object", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b21409", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b18430", + "@id": "_:b21407", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "result": { - "@id": "_:b16566", + "@id": "_:b21408", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18427", + "@id": "_:b21412", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21799", + "@id": "_:b22641", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18426", + "@id": "_:b21414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20960", + "@id": "_:b26250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18423", + "@id": "_:b21418", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19572", + "@id": "_:b20324", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18424", + "@id": "_:b21416", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "result": { - "@id": "_:b21797", + "@id": "_:b22201", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18425", + "@id": "_:b21410", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21798", + "@id": "_:b21704", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18421", + "@id": "_:b21411", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18422", + "@id": "_:b22393", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18431", + "@id": "_:b21415", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "result": { - "@id": "_:b21802", + "@id": "_:b25947", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18428", + "@id": "_:b21413", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "result": { - "@id": "_:b21800", + "@id": "_:b11987", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18429", + "@id": "_:b21417", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021", "result": { - "@id": "_:b21801", + "@id": "_:b22992", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c021-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c021-context.jsonld" + }, + "title": "type-scoped value mix", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c021-in.jsonld", + "rdfs:comment": "type-scoped value mix" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er07-in.jsonld", - "mf:result": "invalid base IRI", - "title": "Invalid base IRI", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @base", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12463", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b938", + "@id": "_:b12470", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "result": { - "@id": "_:b12772", + "@id": "_:b26610", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b945", + "@id": "_:b12472", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12779", + "@id": "_:b27009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b940", + "@id": "_:b12468", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12774", + "@id": "_:b24057", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b939", + "@id": "_:b12467", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12773", + "@id": "_:b25222", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b937", + "@id": "_:b12473", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "result": { - "@id": "_:b12519", + "@id": "_:b27014", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b943", + "@id": "_:b12471", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12777", + "@id": "_:b14466", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b941", + "@id": "_:b12465", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12775", + "@id": "_:b23859", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b944", + "@id": "_:b12464", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "result": { - "@id": "_:b12778", + "@id": "_:b20408", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b942", + "@id": "_:b12466", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "result": { - "@id": "_:b12776", + "@id": "_:b20482", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b934", + "@id": "_:b12469", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022", "result": { - "@id": "_:b935", + "@id": "_:b25811", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c022-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c022-context.jsonld" + }, + "title": "type-scoped property-scoped contexts including @type:@vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c022-in.jsonld", + "rdfs:comment": "type-scoped property-scoped contexts including @type:@vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er08-in.jsonld", - "mf:result": "invalid vocab mapping", - "title": "Invalid vocab mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1592", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b17993", + "@id": "_:b1596", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "result": { - "@id": "_:b19957", + "@id": "_:b10237", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17992", + "@id": "_:b1593", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11533", + "@id": "_:b9672", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17995", + "@id": "_:b1597", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20500", + "@id": "_:b10238", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17994", + "@id": "_:b1600", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20499", + "@id": "_:b10241", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18001", + "@id": "_:b1599", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "result": { - "@id": "_:b20505", + "@id": "_:b10240", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17999", + "@id": "_:b1598", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20503", + "@id": "_:b10239", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17997", + "@id": "_:b1590", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18132", + "@id": "_:b1591", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18000", + "@id": "_:b1601", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "result": { - "@id": "_:b20504", + "@id": "_:b10242", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17996", + "@id": "_:b1595", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "result": { - "@id": "_:b20501", + "@id": "_:b10236", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17998", + "@id": "_:b1594", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023", "result": { - "@id": "_:b20502", + "@id": "_:b10235", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c023-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c023-context.jsonld" + }, + "title": "composed type-scoped property-scoped contexts including @type:@vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c023-in.jsonld", + "rdfs:comment": "composed type-scoped property-scoped contexts including @type:@vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er09-in.jsonld", - "mf:result": "invalid default language", - "title": "Invalid default language", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @language", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b15756", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b3142", + "@id": "_:b15760", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "result": { - "@id": "_:b27027", + "@id": "_:b21220", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3136", + "@id": "_:b15757", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15717", + "@id": "_:b3579", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3137", + "@id": "_:b15755", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18403", + "@id": "_:b15733", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3134", + "@id": "_:b15762", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3135", + "@id": "_:b21222", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3140", + "@id": "_:b15764", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "result": { - "@id": "_:b26611", + "@id": "_:b8143", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3138", + "@id": "_:b15761", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24984", + "@id": "_:b21221", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3141", + "@id": "_:b15765", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26843", + "@id": "_:b21224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3144", + "@id": "_:b15758", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "result": { - "@id": "_:b17039", + "@id": "_:b19077", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3139", + "@id": "_:b15763", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "result": { - "@id": "_:b26333", + "@id": "_:b21223", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3143", + "@id": "_:b15759", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024", "result": { - "@id": "_:b3593", + "@id": "_:b21219", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c024-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c024-context.jsonld" + }, + "title": "type-scoped + property-scoped + values evaluates against previous context", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c024-in.jsonld", + "rdfs:comment": "type-scoped + property-scoped + values evaluates against previous context" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er10-in.jsonld", - "mf:result": "cyclic IRI mapping", - "title": "Cyclic IRI mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a cyclic IRI mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10549", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b9316", + "@id": "_:b10556", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "result": { - "@id": "_:b10097", + "@id": "_:b26667", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9315", + "@id": "_:b10551", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10096", + "@id": "_:b18103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9314", + "@id": "_:b10550", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10095", + "@id": "_:b16294", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9308", + "@id": "_:b10555", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9309", + "@id": "_:b20666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9318", + "@id": "_:b10554", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "result": { - "@id": "_:b10099", + "@id": "_:b26176", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9317", + "@id": "_:b10558", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10098", + "@id": "_:b5776", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9311", + "@id": "_:b10547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1834", + "@id": "_:b10548", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9312", + "@id": "_:b10553", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "result": { - "@id": "_:b10093", + "@id": "_:b21947", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9310", + "@id": "_:b10557", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "result": { - "@id": "_:b10092", + "@id": "_:b26668", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9313", + "@id": "_:b10552", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025", "result": { - "@id": "_:b10094", + "@id": "_:b16425", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c025-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c025-context.jsonld" + }, + "title": "type-scoped + graph container", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c025-in.jsonld", + "rdfs:comment": "type-scoped + graph container" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er11-in.jsonld", - "mf:result": "invalid term definition", - "title": "Invalid term definition", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid term definition is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1427", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b24273", + "@id": "_:b1435", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "result": { - "@id": "_:b20841", + "@id": "_:b22581", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b24274", + "@id": "_:b1429", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22752", + "@id": "_:b21771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b24276", + "@id": "_:b1431", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22377", + "@id": "_:b22577", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b24281", + "@id": "_:b1428", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24967", + "@id": "_:b22576", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b24275", + "@id": "_:b1433", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "result": { - "@id": "_:b26339", + "@id": "_:b22579", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b24278", + "@id": "_:b1430", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26490", + "@id": "_:b14290", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b24279", + "@id": "_:b1434", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b27015", + "@id": "_:b22580", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b24277", + "@id": "_:b1432", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "result": { - "@id": "_:b15627", + "@id": "_:b22578", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b24280", + "@id": "_:b1425", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "result": { - "@id": "_:b26970", + "@id": "_:b1426", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b24282", + "@id": "_:b1436", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026", "result": { - "@id": "_:b19197", + "@id": "_:b2168", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c026-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c026-context.jsonld" + }, + "title": "@propagate: true on type-scoped context", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c026-in.jsonld", + "rdfs:comment": "type-scoped context with @propagate: true survive node-objects" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er12-in.jsonld", - "mf:result": "invalid type mapping", - "title": "Invalid type mapping (not a string)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b17886", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2768", + "@id": "_:b17894", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "result": { - "@id": "_:b17817", + "@id": "_:b21247", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2770", + "@id": "_:b17892", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26022", + "@id": "_:b23967", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2774", + "@id": "_:b17893", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24488", + "@id": "_:b22148", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2775", + "@id": "_:b17884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26057", + "@id": "_:b17885", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2771", + "@id": "_:b17895", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "result": { - "@id": "_:b26628", + "@id": "_:b23968", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2766", + "@id": "_:b17887", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6332", + "@id": "_:b21658", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2772", + "@id": "_:b17889", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25771", + "@id": "_:b2927", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2767", + "@id": "_:b17888", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "result": { - "@id": "_:b25482", + "@id": "_:b23965", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2769", + "@id": "_:b17891", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "result": { - "@id": "_:b25973", + "@id": "_:b23779", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2773", + "@id": "_:b17890", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027", "result": { - "@id": "_:b24042", + "@id": "_:b23966", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/c027-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/c027-context.jsonld" + }, + "title": "@propagate: false on property-scoped context", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/c027-in.jsonld", + "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er13-in.jsonld", - "mf:result": "invalid type mapping", - "title": "Invalid type mapping (not absolute IRI)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5123", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b18480", + "@id": "_:b5125", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "result": { - "@id": "_:b25328", + "@id": "_:b15343", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18483", + "@id": "_:b5129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8330", + "@id": "_:b26360", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18479", + "@id": "_:b5128", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23003", + "@id": "_:b12484", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18477", + "@id": "_:b5121", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20722", + "@id": "_:b5122", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18484", + "@id": "_:b5130", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "result": { - "@id": "_:b19790", + "@id": "_:b26657", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18475", + "@id": "_:b5124", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18476", + "@id": "_:b10214", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18485", + "@id": "_:b5132", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21426", + "@id": "_:b24863", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18482", + "@id": "_:b5131", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "result": { - "@id": "_:b21905", + "@id": "_:b23969", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18481", + "@id": "_:b5126", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "result": { - "@id": "_:b26254", + "@id": "_:b23062", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18478", + "@id": "_:b5127", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01", "result": { - "@id": "_:b21022", + "@id": "_:b23488", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di01-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/di01-context.jsonld" + }, + "title": "term direction null", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di01-in.jsonld", + "rdfs:comment": "Uses term with null direction when two terms conflict on direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er14-in.jsonld", - "mf:result": "invalid reverse property", - "title": "Invalid reverse property (contains @id)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid reverse property is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5458", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b9000", + "@id": "_:b5467", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "result": { - "@id": "_:b24376", + "@id": "_:b23030", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8994", + "@id": "_:b5462", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18647", + "@id": "_:b21184", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8998", + "@id": "_:b5461", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14220", + "@id": "_:b23065", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8997", + "@id": "_:b5465", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20633", + "@id": "_:b1218", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8991", + "@id": "_:b5459", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "result": { - "@id": "_:b8992", + "@id": "_:b14310", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8993", + "@id": "_:b5463", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16383", + "@id": "_:b25593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9001", + "@id": "_:b5466", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19322", + "@id": "_:b5593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8996", + "@id": "_:b5464", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "result": { - "@id": "_:b22701", + "@id": "_:b16781", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8999", + "@id": "_:b5460", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "result": { - "@id": "_:b24375", + "@id": "_:b17080", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8995", + "@id": "_:b5456", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02", "result": { - "@id": "_:b20049", + "@id": "_:b5457", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di02-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/di02-context.jsonld" + }, + "title": "use alias of @direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di02-in.jsonld", + "rdfs:comment": "Use alias of @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er15-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid IRI mapping (@reverse not a string)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b14760", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b2951", + "@id": "_:b14769", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "result": { - "@id": "_:b12520", + "@id": "_:b15434", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2945", + "@id": "_:b14767", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2946", + "@id": "_:b18238", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2947", + "@id": "_:b14763", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6807", + "@id": "_:b18234", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2948", + "@id": "_:b14766", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14768", + "@id": "_:b18237", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2949", + "@id": "_:b14765", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "result": { - "@id": "_:b16313", + "@id": "_:b18236", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2952", + "@id": "_:b14762", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24320", + "@id": "_:b18233", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2955", + "@id": "_:b14768", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26663", + "@id": "_:b18239", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2954", + "@id": "_:b14764", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "result": { - "@id": "_:b8315", + "@id": "_:b18235", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2953", + "@id": "_:b14758", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "result": { - "@id": "_:b25533", + "@id": "_:b14759", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2950", + "@id": "_:b14761", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03", "result": { - "@id": "_:b19655", + "@id": "_:b18232", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di03-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/di03-context.jsonld" + }, + "title": "term selection with lists and direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di03-in.jsonld", + "rdfs:comment": "Term selection includes values of @list." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er17-in.jsonld", - "mf:result": "invalid reverse property", - "title": "Invalid reverse property (invalid @container)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid reverse property is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7072", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b12001", + "@id": "_:b7081", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "result": { - "@id": "_:b11700", + "@id": "_:b26547", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11999", + "@id": "_:b7077", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18723", + "@id": "_:b26794", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12003", + "@id": "_:b7078", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18726", + "@id": "_:b1537", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11997", + "@id": "_:b7073", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18721", + "@id": "_:b22374", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12005", + "@id": "_:b7079", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "result": { - "@id": "_:b13802", + "@id": "_:b22375", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12004", + "@id": "_:b7074", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18727", + "@id": "_:b23962", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12002", + "@id": "_:b7080", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18725", + "@id": "_:b9970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11998", + "@id": "_:b7070", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "result": { - "@id": "_:b18722", + "@id": "_:b7071", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11995", + "@id": "_:b7076", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "result": { - "@id": "_:b11996", + "@id": "_:b26234", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12000", + "@id": "_:b7075", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04", "result": { - "@id": "_:b18724", + "@id": "_:b25128", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di04-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/di04-context.jsonld" + }, + "title": "simple language map with term direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di04-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er18-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid IRI mapping (@id not a string)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7226", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b16065", + "@id": "_:b7231", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "result": { - "@id": "_:b18276", + "@id": "_:b23862", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16060", + "@id": "_:b7228", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7577", + "@id": "_:b16771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16062", + "@id": "_:b7234", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10226", + "@id": "_:b17619", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16066", + "@id": "_:b7227", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18277", + "@id": "_:b9485", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16063", + "@id": "_:b7235", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "result": { - "@id": "_:b13360", + "@id": "_:b22117", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16059", + "@id": "_:b7232", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6206", + "@id": "_:b25562", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16067", + "@id": "_:b7233", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16840", + "@id": "_:b25563", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16064", + "@id": "_:b7230", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "result": { - "@id": "_:b18275", + "@id": "_:b25561", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16061", + "@id": "_:b7229", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "result": { - "@id": "_:b18274", + "@id": "_:b2928", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16068", + "@id": "_:b7224", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05", "result": { - "@id": "_:b18278", + "@id": "_:b7225", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di05-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/di05-context.jsonld" + }, + "title": "simple language map with overriding term direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di05-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er19-in.jsonld", - "mf:result": "invalid keyword alias", - "title": "Invalid keyword alias (@context)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid keyword alias is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b12368", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b1647", + "@id": "_:b12366", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "result": { - "@id": "_:b12148", + "@id": "_:b12367", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1650", + "@id": "_:b12375", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25787", + "@id": "_:b24696", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1653", + "@id": "_:b12373", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26750", + "@id": "_:b24694", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1651", + "@id": "_:b12374", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25796", + "@id": "_:b24695", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1648", + "@id": "_:b12377", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "result": { - "@id": "_:b21262", + "@id": "_:b24697", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1652", + "@id": "_:b12372", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26749", + "@id": "_:b24454", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1649", + "@id": "_:b12376", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4862", + "@id": "_:b24514", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1644", + "@id": "_:b12371", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "result": { - "@id": "_:b1645", + "@id": "_:b22357", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1646", + "@id": "_:b12370", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "result": { - "@id": "_:b6697", + "@id": "_:b17949", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1654", + "@id": "_:b12369", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06", "result": { - "@id": "_:b10797", + "@id": "_:b16680", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di06-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/di06-context.jsonld" + }, + "title": "simple language map with overriding null direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di06-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er20-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid IRI mapping (no vocab mapping)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid IRI mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7025", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8836", + "@id": "_:b11755", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "result": { - "@id": "_:b11241", + "@id": "_:b18385", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8840", + "@id": "_:b11748", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17478", + "@id": "_:b11749", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8843", + "@id": "_:b11752", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23641", + "@id": "_:b18382", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8844", + "@id": "_:b11750", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23642", + "@id": "_:b18381", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8839", + "@id": "_:b11751", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "result": { - "@id": "_:b23505", + "@id": "_:b11204", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8838", + "@id": "_:b11757", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22949", + "@id": "_:b18386", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8842", + "@id": "_:b11753", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23640", + "@id": "_:b18383", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8841", + "@id": "_:b11758", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "result": { - "@id": "_:b23639", + "@id": "_:b18387", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8834", + "@id": "_:b11756", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "result": { - "@id": "_:b8835", + "@id": "_:b17313", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8837", + "@id": "_:b11754", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07", "result": { - "@id": "_:b19608", + "@id": "_:b18384", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/di07-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/di07-context.jsonld" + }, + "title": "simple language map with mismatching term direction", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/di07-in.jsonld", + "rdfs:comment": "Term selection with language maps and @direction." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b630", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b1159", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er21-in.jsonld", - "mf:result": "invalid container mapping", - "title": "Invalid container mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found", "assertions": [ { - "@id": "_:b639", + "@id": "_:b1157", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "result": { - "@id": "_:b25639", + "@id": "_:b1158", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b638", + "@id": "_:b1165", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9484", + "@id": "_:b26848", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b633", + "@id": "_:b1168", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19861", + "@id": "_:b4970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b632", + "@id": "_:b1164", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2557", + "@id": "_:b21269", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b635", + "@id": "_:b1162", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "result": { - "@id": "_:b22570", + "@id": "_:b21804", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b634", + "@id": "_:b1166", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15317", + "@id": "_:b25894", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b636", + "@id": "_:b1160", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24049", + "@id": "_:b11725", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b637", + "@id": "_:b1161", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "result": { - "@id": "_:b24037", + "@id": "_:b6448", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b631", + "@id": "_:b1167", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "result": { - "@id": "_:b12466", + "@id": "_:b25126", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b640", + "@id": "_:b1163", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#te002", "result": { - "@id": "_:b20482", + "@id": "_:b25669", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "IRI confused with prefix", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/e002-context.jsonld" + }, + "title": "Absolute IRI confused with Compact IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/e002-in.jsonld", + "rdfs:comment": "Verifies that IRI compaction detects when the result is an absolute IRI with a scheme matching a term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er22-in.jsonld", - "mf:result": "invalid language mapping", - "title": "Invalid language mapping", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid language mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b375", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b786", + "@id": "_:b378", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "result": { - "@id": "_:b796", + "@id": "_:b388", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b781", + "@id": "_:b377", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b791", + "@id": "_:b387", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b784", + "@id": "_:b382", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b794", + "@id": "_:b392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b783", + "@id": "_:b379", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b793", + "@id": "_:b389", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b787", + "@id": "_:b381", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "result": { - "@id": "_:b797", + "@id": "_:b391", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b780", + "@id": "_:b384", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b790", + "@id": "_:b394", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b785", + "@id": "_:b376", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b795", + "@id": "_:b386", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b782", + "@id": "_:b380", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "result": { - "@id": "_:b792", + "@id": "_:b390", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b779", + "@id": "_:b383", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "result": { - "@id": "_:b789", + "@id": "_:b393", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b778", + "@id": "_:b385", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01", "result": { - "@id": "_:b788", + "@id": "_:b395", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @nest value", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/en01-context.jsonld" + }, + "title": "Nest term not defined", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/en01-in.jsonld", + "rdfs:comment": "Transparent Nesting" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er23-in.jsonld", - "mf:result": "invalid type mapping", - "title": "Invalid IRI mapping (relative IRI in @type)", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid type mapping is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b11353", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b1060", + "@id": "_:b11360", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "result": { - "@id": "_:b26041", + "@id": "_:b11679", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1058", + "@id": "_:b11356", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7700", + "@id": "_:b19886", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1061", + "@id": "_:b11354", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26302", + "@id": "_:b22336", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1062", + "@id": "_:b11355", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17751", + "@id": "_:b23640", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1063", + "@id": "_:b11358", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "result": { - "@id": "_:b24330", + "@id": "_:b25361", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1065", + "@id": "_:b11361", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20335", + "@id": "_:b24338", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1059", + "@id": "_:b11357", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18764", + "@id": "_:b25360", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1056", + "@id": "_:b11351", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "result": { - "@id": "_:b1057", + "@id": "_:b11352", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1064", + "@id": "_:b11362", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "result": { - "@id": "_:b19223", + "@id": "_:b25363", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1066", + "@id": "_:b11359", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05", "result": { - "@id": "_:b6086", + "@id": "_:b25362", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "processing mode conflict", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep05-context.jsonld" + }, + "title": "processingMode json-ld-1.0 conflicts with @version: 1.1", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep05-in.jsonld", + "rdfs:comment": "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er25-in.jsonld", - "mf:result": "invalid reverse property map", - "title": "Invalid reverse property map", - "rdfs:comment": "Verifies that an exception is raised in Expansion when a invalid reverse property map is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b648", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8757", + "@id": "_:b655", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "result": { - "@id": "_:b23795", + "@id": "_:b665", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8754", + "@id": "_:b651", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8755", + "@id": "_:b661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8758", + "@id": "_:b652", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24956", + "@id": "_:b662", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8760", + "@id": "_:b654", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25227", + "@id": "_:b664", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8764", + "@id": "_:b658", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "result": { - "@id": "_:b23759", + "@id": "_:b668", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8762", + "@id": "_:b657", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21730", + "@id": "_:b667", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8759", + "@id": "_:b656", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25226", + "@id": "_:b666", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8756", + "@id": "_:b653", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "result": { - "@id": "_:b15957", + "@id": "_:b663", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8761", + "@id": "_:b650", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "result": { - "@id": "_:b17955", + "@id": "_:b660", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8763", + "@id": "_:b649", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06", "result": { - "@id": "_:b22124", + "@id": "_:b659", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @version value", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep06-context.jsonld" + }, + "title": "@version must be 1.1", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep06-in.jsonld", + "rdfs:comment": "If @version is specified, it must be 1.1" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er26-in.jsonld", - "mf:result": "colliding keywords", - "title": "Colliding keywords", - "rdfs:comment": "Verifies that an exception is raised in Expansion when colliding keywords are found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3026", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b17272", + "@id": "_:b3024", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "result": { - "@id": "_:b22665", + "@id": "_:b3025", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17274", + "@id": "_:b3031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22667", + "@id": "_:b23354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17277", + "@id": "_:b3028", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21447", + "@id": "_:b23352", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17271", + "@id": "_:b3035", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19660", + "@id": "_:b23355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17269", + "@id": "_:b3030", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "result": { - "@id": "_:b17270", + "@id": "_:b23353", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17273", + "@id": "_:b3032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22666", + "@id": "_:b22618", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17275", + "@id": "_:b3033", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22668", + "@id": "_:b6222", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17278", + "@id": "_:b3027", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "result": { - "@id": "_:b22670", + "@id": "_:b8483", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17276", + "@id": "_:b3034", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "result": { - "@id": "_:b22669", + "@id": "_:b9487", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17279", + "@id": "_:b3029", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07", "result": { - "@id": "_:b6680", + "@id": "_:b20403", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep07-context.jsonld" + }, + "title": "@prefix is not allowed in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep07-in.jsonld", + "rdfs:comment": "@prefix is not allowed in a term definition 1.0" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er27-in.jsonld", - "mf:result": "invalid @id value", - "title": "Invalid @id value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @id value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b324", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5840", + "@id": "_:b326", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "result": { - "@id": "_:b5850", + "@id": "_:b13161", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5838", + "@id": "_:b331", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5848", + "@id": "_:b18620", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5841", + "@id": "_:b332", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5851", + "@id": "_:b24182", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5842", + "@id": "_:b329", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5852", + "@id": "_:b25139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5844", + "@id": "_:b327", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "result": { - "@id": "_:b5854", + "@id": "_:b23510", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5843", + "@id": "_:b325", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5853", + "@id": "_:b10024", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5845", + "@id": "_:b333", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5855", + "@id": "_:b8994", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5837", + "@id": "_:b328", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "result": { - "@id": "_:b5847", + "@id": "_:b24395", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5839", + "@id": "_:b330", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "result": { - "@id": "_:b5849", + "@id": "_:b19146", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5846", + "@id": "_:b334", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08", "result": { - "@id": "_:b5856", + "@id": "_:b24462", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid @prefix value", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep08-context.jsonld" + }, + "title": "@prefix must be a boolean", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep08-in.jsonld", + "rdfs:comment": "@prefix must be a boolean in a term definition in 1.1" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er28-in.jsonld", - "mf:result": "invalid type value", - "title": "Invalid type value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid type value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8314", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b15274", + "@id": "_:b8322", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "result": { - "@id": "_:b21939", + "@id": "_:b26552", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15267", + "@id": "_:b8315", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21933", + "@id": "_:b18609", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15269", + "@id": "_:b8319", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21935", + "@id": "_:b15249", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15265", + "@id": "_:b8320", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15266", + "@id": "_:b25249", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15273", + "@id": "_:b8323", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "result": { - "@id": "_:b21938", + "@id": "_:b8510", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15270", + "@id": "_:b8316", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21936", + "@id": "_:b20006", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15275", + "@id": "_:b8312", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21940", + "@id": "_:b8313", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15272", + "@id": "_:b8318", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "result": { - "@id": "_:b21937", + "@id": "_:b22184", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15271", + "@id": "_:b8321", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "result": { - "@id": "_:b17210", + "@id": "_:b26551", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15268", + "@id": "_:b8317", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09", "result": { - "@id": "_:b21934", + "@id": "_:b20580", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep09-context.jsonld" + }, + "title": "@prefix not allowed on compact IRI term", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep09-in.jsonld", + "rdfs:comment": "If processingMode is json-ld-1.0, or if term contains a colon (:), an invalid term definition has been detected and processing is aborted." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er29-in.jsonld", - "mf:result": "invalid value object value", - "title": "Invalid value object value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b13201", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b8280", + "@id": "_:b13209", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "result": { - "@id": "_:b10183", + "@id": "_:b7624", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8282", + "@id": "_:b13199", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2545", + "@id": "_:b13200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8284", + "@id": "_:b13205", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24388", + "@id": "_:b25419", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8278", + "@id": "_:b13210", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8279", + "@id": "_:b25420", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8286", + "@id": "_:b13202", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "result": { - "@id": "_:b21478", + "@id": "_:b22655", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8285", + "@id": "_:b13203", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24860", + "@id": "_:b24491", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8281", + "@id": "_:b13207", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12887", + "@id": "_:b16305", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8283", + "@id": "_:b13206", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "result": { - "@id": "_:b23613", + "@id": "_:b17527", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8288", + "@id": "_:b13208", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "result": { - "@id": "_:b24193", + "@id": "_:b24490", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8287", + "@id": "_:b13204", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10", "result": { - "@id": "_:b24344", + "@id": "_:b25418", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep10-context.jsonld" + }, + "title": "@nest is not allowed in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep10-in.jsonld", + "rdfs:comment": "@nest is not allowed in a term definitionin 1.0" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er30-in.jsonld", - "mf:result": "invalid language-tagged string", - "title": "Invalid language-tagged string", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1006", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b4421", + "@id": "_:b1004", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "result": { - "@id": "_:b24133", + "@id": "_:b1005", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4418", + "@id": "_:b1012", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23488", + "@id": "_:b23804", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4413", + "@id": "_:b1007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12433", + "@id": "_:b5774", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4419", + "@id": "_:b1015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25175", + "@id": "_:b16662", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4411", + "@id": "_:b1008", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "result": { - "@id": "_:b4412", + "@id": "_:b20779", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4420", + "@id": "_:b1014", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25176", + "@id": "_:b24427", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4415", + "@id": "_:b1011", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20120", + "@id": "_:b25435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4414", + "@id": "_:b1009", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "result": { - "@id": "_:b15299", + "@id": "_:b24079", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4416", + "@id": "_:b1013", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "result": { - "@id": "_:b23959", + "@id": "_:b25955", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4417", + "@id": "_:b1010", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11", "result": { - "@id": "_:b21865", + "@id": "_:b19594", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid term definition", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep11-context.jsonld" + }, + "title": "@context is not allowed in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep11-in.jsonld", + "rdfs:comment": "@context is not allowed in a term definitionin 1.0" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er31-in.jsonld", - "mf:result": "invalid @index value", - "title": "Invalid @index value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @index value value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b5779", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b9706", + "@id": "_:b5781", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "result": { - "@id": "_:b25048", + "@id": "_:b5791", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9705", + "@id": "_:b5787", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24002", + "@id": "_:b5797", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9698", + "@id": "_:b5782", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9699", + "@id": "_:b5792", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9708", + "@id": "_:b5780", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11954", + "@id": "_:b5790", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9702", + "@id": "_:b5784", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "result": { - "@id": "_:b24458", + "@id": "_:b5794", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9704", + "@id": "_:b5788", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25047", + "@id": "_:b5798", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9703", + "@id": "_:b5789", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7628", + "@id": "_:b5799", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9707", + "@id": "_:b5783", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "result": { - "@id": "_:b25049", + "@id": "_:b5793", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9701", + "@id": "_:b5785", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "result": { - "@id": "_:b22407", + "@id": "_:b5795", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9700", + "@id": "_:b5786", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12", "result": { - "@id": "_:b22116", + "@id": "_:b5796", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep12-context.jsonld" + }, + "title": "@container may not be an array in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep12-in.jsonld", + "rdfs:comment": "validate appropriate values of @container" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er33-in.jsonld", - "mf:result": "invalid @reverse value", - "title": "Invalid @reverse value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid @reverse value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10620", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b16434", + "@id": "_:b10625", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "result": { - "@id": "_:b18835", + "@id": "_:b10634", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16431", + "@id": "_:b10622", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18832", + "@id": "_:b10631", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16437", + "@id": "_:b10623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18838", + "@id": "_:b10632", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16436", + "@id": "_:b10621", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18837", + "@id": "_:b3862", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16438", + "@id": "_:b10630", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "result": { - "@id": "_:b18839", + "@id": "_:b10638", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16430", + "@id": "_:b10628", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2276", + "@id": "_:b10637", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16435", + "@id": "_:b10627", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18836", + "@id": "_:b10636", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16433", + "@id": "_:b10624", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "result": { - "@id": "_:b18834", + "@id": "_:b10633", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16432", + "@id": "_:b10629", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "result": { - "@id": "_:b18833", + "@id": "_:b4749", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16439", + "@id": "_:b10626", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13", "result": { - "@id": "_:b15684", + "@id": "_:b10635", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep13-context.jsonld" + }, + "title": "@container may not be @id in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep13-in.jsonld", + "rdfs:comment": "validate appropriate values of @container" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er34-in.jsonld", - "mf:result": "invalid reverse property value", - "title": "Invalid reverse property value (in @reverse)", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid reverse property value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3229", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b7892", + "@id": "_:b3236", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "result": { - "@id": "_:b17689", + "@id": "_:b19937", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7893", + "@id": "_:b3231", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19971", + "@id": "_:b5761", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7896", + "@id": "_:b3235", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24716", + "@id": "_:b19936", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7890", + "@id": "_:b3234", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7891", + "@id": "_:b19935", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7897", + "@id": "_:b3233", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "result": { - "@id": "_:b25203", + "@id": "_:b14785", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7900", + "@id": "_:b3232", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26894", + "@id": "_:b7046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7899", + "@id": "_:b3237", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20857", + "@id": "_:b19938", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7895", + "@id": "_:b3238", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "result": { - "@id": "_:b24861", + "@id": "_:b19939", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7898", + "@id": "_:b3230", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "result": { - "@id": "_:b18321", + "@id": "_:b18856", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7894", + "@id": "_:b3239", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14", "result": { - "@id": "_:b23156", + "@id": "_:b19696", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep14-context.jsonld" + }, + "title": "@container may not be @type in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep14-in.jsonld", + "rdfs:comment": "validate appropriate values of @container" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er35-in.jsonld", - "mf:result": "invalid language map value", - "title": "Invalid language map value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language map value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b16140", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + }, "assertions": [ { - "@id": "_:b2355", + "@id": "_:b18241", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "result": { - "@id": "_:b14425", + "@id": "_:b18242", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2354", + "@id": "_:b18243", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23882", + "@id": "_:b20549", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2360", + "@id": "_:b18246", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23932", + "@id": "_:b24018", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2358", + "@id": "_:b18249", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26724", + "@id": "_:b26144", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2356", + "@id": "_:b18245", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "result": { - "@id": "_:b25364", + "@id": "_:b22836", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2351", + "@id": "_:b18250", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b2352", + "@id": "_:b19788", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2359", + "@id": "_:b18248", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5417", + "@id": "_:b24273", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2357", + "@id": "_:b18244", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "result": { - "@id": "_:b23233", + "@id": "_:b22267", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2361", + "@id": "_:b18247", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "result": { - "@id": "_:b16473", + "@id": "_:b25951", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2353", + "@id": "_:b18251", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15", "result": { - "@id": "_:b12534", + "@id": "_:b26145", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid container mapping", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/ep15-context.jsonld" + }, + "title": "@container may not be @graph in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/ep15-in.jsonld", + "rdfs:comment": "validate appropriate values of @container" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er36-in.jsonld", - "mf:result": "invalid reverse property value", - "title": "Invalid reverse property value (through coercion)", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid reverse property value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4883", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b7332", + "@id": "_:b4889", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "result": { - "@id": "_:b23261", + "@id": "_:b26062", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7326", + "@id": "_:b4884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23257", + "@id": "_:b12525", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7330", + "@id": "_:b4886", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23259", + "@id": "_:b22216", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7322", + "@id": "_:b4887", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7323", + "@id": "_:b13089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7329", + "@id": "_:b4885", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "result": { - "@id": "_:b12150", + "@id": "_:b17487", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7327", + "@id": "_:b4881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23258", + "@id": "_:b4882", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7325", + "@id": "_:b4888", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22268", + "@id": "_:b23443", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7328", + "@id": "_:b4892", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "result": { - "@id": "_:b20851", + "@id": "_:b10596", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7331", + "@id": "_:b4891", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "result": { - "@id": "_:b23260", + "@id": "_:b19550", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7324", + "@id": "_:b4890", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01", "result": { - "@id": "_:b21794", + "@id": "_:b26594", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in01-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/in01-context.jsonld" + }, + "title": "Basic Included array", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in01-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er37-in.jsonld", - "mf:result": "invalid value object", - "title": "Invalid value object (unexpected keyword)", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b4392", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b16513", + "@id": "_:b4399", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "result": { - "@id": "_:b22411", + "@id": "_:b17741", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16512", + "@id": "_:b4395", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24134", + "@id": "_:b17737", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16515", + "@id": "_:b4401", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26283", + "@id": "_:b17743", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16509", + "@id": "_:b4397", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15336", + "@id": "_:b17739", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16511", + "@id": "_:b4393", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "result": { - "@id": "_:b25839", + "@id": "_:b5397", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16516", + "@id": "_:b4394", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26988", + "@id": "_:b17649", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16517", + "@id": "_:b4398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23761", + "@id": "_:b17740", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16514", + "@id": "_:b4390", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "result": { - "@id": "_:b14907", + "@id": "_:b4391", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16510", + "@id": "_:b4400", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "result": { - "@id": "_:b18085", + "@id": "_:b17742", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16518", + "@id": "_:b4396", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02", "result": { - "@id": "_:b19042", + "@id": "_:b17738", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in02-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/in02-context.jsonld" + }, + "title": "Basic Included object", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in02-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er38-in.jsonld", - "mf:result": "invalid value object", - "title": "Invalid value object (@type and @language)", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b3088", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b17593", + "@id": "_:b3097", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "result": { - "@id": "_:b26174", + "@id": "_:b9861", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17591", + "@id": "_:b3092", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26817", + "@id": "_:b12306", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17592", + "@id": "_:b3098", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24550", + "@id": "_:b21861", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17590", + "@id": "_:b3093", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26929", + "@id": "_:b3808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17585", + "@id": "_:b3094", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "result": { - "@id": "_:b22324", + "@id": "_:b14980", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17588", + "@id": "_:b3095", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25580", + "@id": "_:b21859", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17587", + "@id": "_:b3091", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25248", + "@id": "_:b21858", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17583", + "@id": "_:b3089", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "result": { - "@id": "_:b17584", + "@id": "_:b16014", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17589", + "@id": "_:b3090", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "result": { - "@id": "_:b23948", + "@id": "_:b21857", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17586", + "@id": "_:b3096", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03", "result": { - "@id": "_:b24200", + "@id": "_:b21860", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in03-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/in03-context.jsonld" + }, + "title": "Multiple properties mapping to @included are folded together", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in03-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er39-in.jsonld", - "mf:result": "invalid language-tagged value", - "title": "Invalid language-tagged value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid language-tagged value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7153", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b6852", + "@id": "_:b7156", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "result": { - "@id": "_:b6862", + "@id": "_:b22737", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6849", + "@id": "_:b7154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6859", + "@id": "_:b20038", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6847", + "@id": "_:b7155", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6857", + "@id": "_:b22270", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6846", + "@id": "_:b7159", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6856", + "@id": "_:b16150", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6850", + "@id": "_:b7157", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "result": { - "@id": "_:b6860", + "@id": "_:b23243", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6854", + "@id": "_:b7161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4259", + "@id": "_:b20036", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6853", + "@id": "_:b7158", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6863", + "@id": "_:b8484", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6848", + "@id": "_:b7162", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "result": { - "@id": "_:b6858", + "@id": "_:b24371", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6845", + "@id": "_:b7151", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "result": { - "@id": "_:b6855", + "@id": "_:b7152", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6851", + "@id": "_:b7160", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04", "result": { - "@id": "_:b6861", + "@id": "_:b22100", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in04-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/in04-context.jsonld" + }, + "title": "Included containing @included", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in04-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er40-in.jsonld", - "mf:result": "invalid typed value", - "title": "Invalid typed value", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid typed value is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b13485", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b5061", + "@id": "_:b13494", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "result": { - "@id": "_:b26424", + "@id": "_:b13504", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5055", + "@id": "_:b13492", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25510", + "@id": "_:b13502", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5059", + "@id": "_:b13493", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26237", + "@id": "_:b13503", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5056", + "@id": "_:b13495", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22996", + "@id": "_:b13505", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5053", + "@id": "_:b13487", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "result": { - "@id": "_:b19693", + "@id": "_:b13497", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5058", + "@id": "_:b13489", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25525", + "@id": "_:b13499", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5057", + "@id": "_:b13490", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26398", + "@id": "_:b13500", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5052", + "@id": "_:b13486", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "result": { - "@id": "_:b15366", + "@id": "_:b13496", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5054", + "@id": "_:b13491", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "result": { - "@id": "_:b22167", + "@id": "_:b13501", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5060", + "@id": "_:b13488", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05", "result": { - "@id": "_:b25754", + "@id": "_:b13498", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/in05-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/in05-context.jsonld" + }, + "title": "Property value with @included", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/in05-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er41-in.jsonld", - "mf:result": "invalid set or list object", - "title": "Invalid set or list object", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid set or list object is found", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b2983", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b11682", + "@id": "_:b2987", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "result": { - "@id": "_:b24913", + "@id": "_:b22179", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11684", + "@id": "_:b2986", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1931", + "@id": "_:b20761", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11681", + "@id": "_:b2991", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1155", + "@id": "_:b24392", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11679", + "@id": "_:b2988", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17739", + "@id": "_:b24390", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11683", + "@id": "_:b2989", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "result": { - "@id": "_:b25189", + "@id": "_:b24391", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11686", + "@id": "_:b2985", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26342", + "@id": "_:b18452", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11687", + "@id": "_:b2984", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5531", + "@id": "_:b11777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11685", + "@id": "_:b2990", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "result": { - "@id": "_:b6552", + "@id": "_:b18049", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11677", + "@id": "_:b2981", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "result": { - "@id": "_:b11678", + "@id": "_:b2982", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11680", + "@id": "_:b2992", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01", "result": { - "@id": "_:b19426", + "@id": "_:b10485", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js01-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js01-context.jsonld" + }, + "title": "Compact JSON literal (boolean true)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js01-in.jsonld", + "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (boolean true)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12837", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b17005", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er42-in.jsonld", - "mf:result": "keyword redefinition", - "title": "Keywords may not be redefined in 1.0", - "rdfs:comment": "Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword", "assertions": [ { - "@id": "_:b12845", + "@id": "_:b17007", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "result": { - "@id": "_:b18979", + "@id": "_:b20438", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12844", + "@id": "_:b17006", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18978", + "@id": "_:b15181", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12843", + "@id": "_:b17009", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18977", + "@id": "_:b18330", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12841", + "@id": "_:b17010", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18975", + "@id": "_:b19513", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12842", + "@id": "_:b17011", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "result": { - "@id": "_:b18976", + "@id": "_:b3775", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12835", + "@id": "_:b17012", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12836", + "@id": "_:b23084", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12846", + "@id": "_:b17003", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18980", + "@id": "_:b17004", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12838", + "@id": "_:b17013", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "result": { - "@id": "_:b18454", + "@id": "_:b14292", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12840", + "@id": "_:b17008", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "result": { - "@id": "_:b6207", + "@id": "_:b23325", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12839", + "@id": "_:b17014", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02", "result": { - "@id": "_:b18974", + "@id": "_:b21803", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js02-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js02-context.jsonld" + }, + "title": "Compact JSON literal (boolean false)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js02-in.jsonld", + "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (boolean false)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13568", + "@id": "_:b3196", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er43-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Term definition with @id: @type", - "rdfs:comment": "Expanding term mapping to @type uses @type syntax now illegal", "assertions": [ { - "@id": "_:b13576", + "@id": "_:b3200", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "result": { - "@id": "_:b26674", + "@id": "_:b25692", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13573", + "@id": "_:b3198", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26350", + "@id": "_:b24019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13566", + "@id": "_:b3201", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13567", + "@id": "_:b26525", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13577", + "@id": "_:b3202", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21775", + "@id": "_:b24871", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13574", + "@id": "_:b3194", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "result": { - "@id": "_:b24185", + "@id": "_:b3195", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13569", + "@id": "_:b3203", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21438", + "@id": "_:b24774", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13572", + "@id": "_:b3205", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25237", + "@id": "_:b22489", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13575", + "@id": "_:b3199", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "result": { - "@id": "_:b26662", + "@id": "_:b24964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13571", + "@id": "_:b3204", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "result": { - "@id": "_:b15042", + "@id": "_:b14243", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13570", + "@id": "_:b3197", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03", "result": { - "@id": "_:b23747", + "@id": "_:b8297", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js03-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js03-context.jsonld" + }, + "title": "Compact JSON literal (double)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js03-in.jsonld", + "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (double)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b853", + "@id": "_:b18937", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er44-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Redefine terms looking like compact IRIs", - "rdfs:comment": "Term definitions may look like compact IRIs, but must be consistent.", "assertions": [ { - "@id": "_:b858", + "@id": "_:b18940", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "result": { - "@id": "_:b17123", + "@id": "_:b18112", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b851", + "@id": "_:b18943", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b852", + "@id": "_:b25335", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b856", + "@id": "_:b18939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15353", + "@id": "_:b22321", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b859", + "@id": "_:b18942", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17124", + "@id": "_:b25334", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b860", + "@id": "_:b18941", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "result": { - "@id": "_:b17125", + "@id": "_:b23796", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b854", + "@id": "_:b18944", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6820", + "@id": "_:b25336", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b855", + "@id": "_:b18946", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13801", + "@id": "_:b17615", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b862", + "@id": "_:b18938", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "result": { - "@id": "_:b17127", + "@id": "_:b18134", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b861", + "@id": "_:b18935", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "result": { - "@id": "_:b17126", + "@id": "_:b18936", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b857", + "@id": "_:b18945", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04", "result": { - "@id": "_:b17122", + "@id": "_:b25337", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js04-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js04-context.jsonld" + }, + "title": "Compact JSON literal (double-zero)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js04-in.jsonld", + "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (double-zero)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9626", + "@id": "_:b4809", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er48-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid term as relative IRI", - "rdfs:comment": "Verifies that a relative IRI cannot be used as a term.", "assertions": [ { - "@id": "_:b9631", + "@id": "_:b4816", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "result": { - "@id": "_:b25944", + "@id": "_:b25599", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9633", + "@id": "_:b4807", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21277", + "@id": "_:b4808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9635", + "@id": "_:b4812", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25945", + "@id": "_:b24902", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9624", + "@id": "_:b4813", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9625", + "@id": "_:b25138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9630", + "@id": "_:b4814", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "result": { - "@id": "_:b23742", + "@id": "_:b22672", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9634", + "@id": "_:b4810", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24360", + "@id": "_:b17882", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9629", + "@id": "_:b4818", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20683", + "@id": "_:b23624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9627", + "@id": "_:b4815", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "result": { - "@id": "_:b14802", + "@id": "_:b19756", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9628", + "@id": "_:b4817", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "result": { - "@id": "_:b17282", + "@id": "_:b24815", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9632", + "@id": "_:b4811", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05", "result": { - "@id": "_:b24076", + "@id": "_:b19059", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js05-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js05-context.jsonld" + }, + "title": "Compact JSON literal (integer)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js05-in.jsonld", + "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (integer)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1870", + "@id": "_:b9231", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er49-in.jsonld", - "mf:result": "invalid term definition", - "title": "A relative IRI cannot be used as a prefix", - "rdfs:comment": "Verifies that a relative IRI cannot be used as a term.", "assertions": [ { - "@id": "_:b20746", + "@id": "_:b9232", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "result": { - "@id": "_:b25890", + "@id": "_:b9242", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b20741", + "@id": "_:b9235", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18645", + "@id": "_:b5614", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20749", + "@id": "_:b9239", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26660", + "@id": "_:b9248", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20744", + "@id": "_:b9240", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24987", + "@id": "_:b9249", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20743", + "@id": "_:b9237", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "result": { - "@id": "_:b1798", + "@id": "_:b9246", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20748", + "@id": "_:b9238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21094", + "@id": "_:b9247", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20745", + "@id": "_:b9233", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12068", + "@id": "_:b9243", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20747", + "@id": "_:b9241", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "result": { - "@id": "_:b20726", + "@id": "_:b9250", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20742", + "@id": "_:b9234", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "result": { - "@id": "_:b24050", + "@id": "_:b9244", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20739", + "@id": "_:b9236", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06", "result": { - "@id": "_:b20740", + "@id": "_:b9245", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js06-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js06-context.jsonld" + }, + "title": "Compact JSON literal (object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js06-in.jsonld", + "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (object)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er50-in.jsonld", - "mf:result": "invalid IRI mapping", - "title": "Invalid reverse id", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse.", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b10511", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b17574", + "@id": "_:b10515", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "result": { - "@id": "_:b16800", + "@id": "_:b17327", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17571", + "@id": "_:b10516", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17035", + "@id": "_:b25906", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17572", + "@id": "_:b10514", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20600", + "@id": "_:b18638", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17575", + "@id": "_:b10517", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22024", + "@id": "_:b26337", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17570", + "@id": "_:b10512", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "result": { - "@id": "_:b26807", + "@id": "_:b12945", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17568", + "@id": "_:b10509", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25634", + "@id": "_:b10510", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17573", + "@id": "_:b10513", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17861", + "@id": "_:b19494", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17567", + "@id": "_:b10518", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "result": { - "@id": "_:b22586", + "@id": "_:b24702", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17566", + "@id": "_:b10519", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "result": { - "@id": "_:b9709", + "@id": "_:b27001", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17569", + "@id": "_:b10520", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07", "result": { - "@id": "_:b26203", + "@id": "_:b20762", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js07-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js07-context.jsonld" + }, + "title": "Compact JSON literal (array)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js07-in.jsonld", + "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (array)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er51-in.jsonld", - "mf:result": "invalid value object value", - "title": "Invalid value object value using a value alias", - "rdfs:comment": "Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b1415", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b21270", + "@id": "_:b1424", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "result": { - "@id": "_:b23007", + "@id": "_:b24579", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b21269", + "@id": "_:b1421", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25988", + "@id": "_:b25932", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21272", + "@id": "_:b1420", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20678", + "@id": "_:b18105", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21264", + "@id": "_:b1417", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21265", + "@id": "_:b17544", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21274", + "@id": "_:b1413", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "result": { - "@id": "_:b22042", + "@id": "_:b1414", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21266", + "@id": "_:b1419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21578", + "@id": "_:b25708", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21273", + "@id": "_:b1416", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20107", + "@id": "_:b12764", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21267", + "@id": "_:b1418", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "result": { - "@id": "_:b24395", + "@id": "_:b17082", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b21271", + "@id": "_:b1422", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "result": { - "@id": "_:b25130", + "@id": "_:b25933", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21268", + "@id": "_:b1423", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08", "result": { - "@id": "_:b5134", + "@id": "_:b16734", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js08-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js08-context.jsonld" + }, + "title": "Compact already expanded JSON literal", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js08-in.jsonld", + "rdfs:comment": "Tests compacting JSON literal does not expand terms inside json." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er52-in.jsonld", - "mf:result": "invalid term definition", - "title": "Definition for the empty term", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains a definition for the empty term", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b8874", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b15156", + "@id": "_:b8875", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "result": { - "@id": "_:b24910", + "@id": "_:b11983", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15157", + "@id": "_:b8872", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25307", + "@id": "_:b8873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15159", + "@id": "_:b8877", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15177", + "@id": "_:b18807", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15158", + "@id": "_:b8880", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25833", + "@id": "_:b23861", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15161", + "@id": "_:b8878", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "result": { - "@id": "_:b25475", + "@id": "_:b19544", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15154", + "@id": "_:b8881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22197", + "@id": "_:b18732", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15162", + "@id": "_:b8879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24891", + "@id": "_:b24575", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15155", + "@id": "_:b8882", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "result": { - "@id": "_:b22541", + "@id": "_:b26707", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15160", + "@id": "_:b8883", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "result": { - "@id": "_:b25516", + "@id": "_:b8234", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15152", + "@id": "_:b8876", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09", "result": { - "@id": "_:b15153", + "@id": "_:b15146", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js09-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js09-context.jsonld" + }, + "title": "Compact already expanded JSON literal with aliased keys", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js09-in.jsonld", + "rdfs:comment": "Tests compacting JSON literal in expanded form." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/er53-in.jsonld", - "mf:result": "invalid @prefix value", - "title": "Invalid prefix value", - "rdfs:comment": "Verifies that an exception is raised on expansion when a context contains an invalid @prefix value", + "https://w3c.github.io/json-ld-api/tests/vocab#option": { + "@id": "_:b7253", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + }, "assertions": [ { - "@id": "_:b8946", + "@id": "_:b7259", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "result": { - "@id": "_:b26885", + "@id": "_:b12000", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8945", + "@id": "_:b7254", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26616", + "@id": "_:b11996", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8947", + "@id": "_:b7255", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21345", + "@id": "_:b5611", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8944", + "@id": "_:b7257", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25288", + "@id": "_:b11998", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8941", + "@id": "_:b7256", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "result": { - "@id": "_:b21102", + "@id": "_:b11997", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8943", + "@id": "_:b7258", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24130", + "@id": "_:b11999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8942", + "@id": "_:b7261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23431", + "@id": "_:b12002", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8939", + "@id": "_:b7262", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "result": { - "@id": "_:b8940", + "@id": "_:b12003", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8948", + "@id": "_:b7251", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "result": { - "@id": "_:b9959", + "@id": "_:b7252", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8949", + "@id": "_:b7260", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10", "result": { - "@id": "_:b20537", + "@id": "_:b12001", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js10-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js10-context.jsonld" + }, + "title": "Compact JSON literal (string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js10-in.jsonld", + "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (string)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5596", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" + "@id": "_:b9590", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/es01-in.jsonld", - "mf:result": "invalid container mapping", - "title": "Using an array value for @context is illegal in JSON-LD 1.0", - "rdfs:comment": "Verifies that an exception is raised on expansion when a invalid container mapping is found", "assertions": [ { - "@id": "_:b5597", + "@id": "_:b9598", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "result": { - "@id": "_:b7074", + "@id": "_:b17335", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5601", + "@id": "_:b9591", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24728", + "@id": "_:b13748", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5603", + "@id": "_:b9597", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12183", + "@id": "_:b21795", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5598", + "@id": "_:b9594", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23595", + "@id": "_:b21792", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5604", + "@id": "_:b9596", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "result": { - "@id": "_:b23371", + "@id": "_:b21794", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5602", + "@id": "_:b9592", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19276", + "@id": "_:b16682", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5605", + "@id": "_:b9599", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20333", + "@id": "_:b17353", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5600", + "@id": "_:b9595", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "result": { - "@id": "_:b24603", + "@id": "_:b21793", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5594", + "@id": "_:b9593", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "result": { - "@id": "_:b5595", + "@id": "_:b21791", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5599", + "@id": "_:b9588", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11", "result": { - "@id": "_:b24098", + "@id": "_:b9589", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/js11-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/js11-context.jsonld" + }, + "title": "Compact JSON literal (null)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/js11-in.jsonld", + "rdfs:comment": "Tests compacting property with @type @json to a JSON literal (null)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6089", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/es02-in.jsonld", - "mf:result": "invalid container mapping", - "title": "Mapping @container: [@list, @set] is invalid", - "rdfs:comment": "Testing legal combinations of @set with other container values", "assertions": [ { - "@id": "_:b6093", + "@id": "_:b6020", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "result": { - "@id": "_:b23006", + "@id": "_:b6030", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6090", + "@id": "_:b6015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6173", + "@id": "_:b6025", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6094", + "@id": "_:b6021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23699", + "@id": "_:b6031", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6096", + "@id": "_:b6019", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15182", + "@id": "_:b6029", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6098", + "@id": "_:b6014", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "result": { - "@id": "_:b22724", + "@id": "_:b6024", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6091", + "@id": "_:b6013", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19212", + "@id": "_:b6023", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6092", + "@id": "_:b6018", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21290", + "@id": "_:b6028", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6087", + "@id": "_:b6017", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "result": { - "@id": "_:b6088", + "@id": "_:b6027", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6095", + "@id": "_:b6022", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "result": { - "@id": "_:b26552", + "@id": "_:b6032", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6097", + "@id": "_:b6016", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01", "result": { - "@id": "_:b6399", + "@id": "_:b6026", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/la01-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/la01-context.jsonld" + }, + "title": "most specific term matching in @list.", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/la01-in.jsonld", + "rdfs:comment": "The most specific term that matches all of the elements in the list, taking into account the default language, must be selected, without considering case of language." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5476", + "@id": "_:b10094", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in01-out.jsonld", - "title": "Basic Included array", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b5481", + "@id": "_:b10102", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "result": { - "@id": "_:b21157", + "@id": "_:b17153", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5483", + "@id": "_:b10097", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b9637", + "@id": "_:b21089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5474", + "@id": "_:b10101", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5475", + "@id": "_:b15166", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5479", + "@id": "_:b10098", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21155", + "@id": "_:b21090", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5477", + "@id": "_:b10096", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "result": { - "@id": "_:b19041", + "@id": "_:b21088", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5478", + "@id": "_:b10095", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20434", + "@id": "_:b2794", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5485", + "@id": "_:b10103", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9430", + "@id": "_:b3564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5480", + "@id": "_:b10099", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "result": { - "@id": "_:b21156", + "@id": "_:b21091", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5482", + "@id": "_:b10100", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "result": { - "@id": "_:b21158", + "@id": "_:b18361", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5484", + "@id": "_:b10092", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01", "result": { - "@id": "_:b21159", + "@id": "_:b10093", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li01-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/li01-context.jsonld" + }, + "title": "coerced @list containing an empty list", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li01-in.jsonld", + "rdfs:comment": "Lists of Lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16616", + "@id": "_:b15283", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in02-out.jsonld", - "title": "Basic Included object", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b16620", + "@id": "_:b15286", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "result": { - "@id": "_:b25773", + "@id": "_:b21805", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16622", + "@id": "_:b15289", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23164", + "@id": "_:b25872", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16623", + "@id": "_:b15281", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25775", + "@id": "_:b15282", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16618", + "@id": "_:b15290", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22396", + "@id": "_:b25873", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16625", + "@id": "_:b15288", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "result": { - "@id": "_:b25271", + "@id": "_:b23232", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16614", + "@id": "_:b15284", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16615", + "@id": "_:b17331", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16624", + "@id": "_:b15291", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20831", + "@id": "_:b25733", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16621", + "@id": "_:b15285", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "result": { - "@id": "_:b25774", + "@id": "_:b18108", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16617", + "@id": "_:b15292", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "result": { - "@id": "_:b20442", + "@id": "_:b25874", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16619", + "@id": "_:b15287", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02", "result": { - "@id": "_:b23399", + "@id": "_:b25528", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li02-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/li02-context.jsonld" + }, + "title": "coerced @list containing a list", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li02-in.jsonld", + "rdfs:comment": "Lists of Lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2659", + "@id": "_:b7794", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in03-out.jsonld", - "title": "Multiple properties mapping to @included are folded together", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b2657", + "@id": "_:b7795", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "result": { - "@id": "_:b2658", + "@id": "_:b20152", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2661", + "@id": "_:b7797", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19333", + "@id": "_:b12425", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2665", + "@id": "_:b7801", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26425", + "@id": "_:b15191", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2668", + "@id": "_:b7803", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24006", + "@id": "_:b15263", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2660", + "@id": "_:b7802", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "result": { - "@id": "_:b16743", + "@id": "_:b24287", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2662", + "@id": "_:b7798", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3346", + "@id": "_:b24890", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2664", + "@id": "_:b7800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26083", + "@id": "_:b26215", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2667", + "@id": "_:b7792", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "result": { - "@id": "_:b25287", + "@id": "_:b7793", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2666", + "@id": "_:b7799", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "result": { - "@id": "_:b17741", + "@id": "_:b20799", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2663", + "@id": "_:b7796", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03", "result": { - "@id": "_:b18825", + "@id": "_:b22480", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li03-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/li03-context.jsonld" + }, + "title": "coerced @list containing an deep list", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li03-in.jsonld", + "rdfs:comment": "Lists of Lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19300", + "@id": "_:b5533", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in04-out.jsonld", - "title": "Included containing @included", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b19308", + "@id": "_:b5542", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "result": { - "@id": "_:b19882", + "@id": "_:b24127", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19303", + "@id": "_:b5536", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19877", + "@id": "_:b23672", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19302", + "@id": "_:b5540", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19876", + "@id": "_:b22426", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19309", + "@id": "_:b5541", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19883", + "@id": "_:b24126", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19299", + "@id": "_:b5535", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "result": { - "@id": "_:b16169", + "@id": "_:b23105", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19306", + "@id": "_:b5531", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19880", + "@id": "_:b5532", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19304", + "@id": "_:b5534", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19878", + "@id": "_:b13080", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19307", + "@id": "_:b5537", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "result": { - "@id": "_:b19881", + "@id": "_:b21625", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19305", + "@id": "_:b5538", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "result": { - "@id": "_:b19879", + "@id": "_:b24124", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19301", + "@id": "_:b5539", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04", "result": { - "@id": "_:b19875", + "@id": "_:b24125", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li04-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/li04-context.jsonld" + }, + "title": "coerced @list containing multiple lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li04-in.jsonld", + "rdfs:comment": "Lists of Lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8889", + "@id": "_:b4821", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in05-out.jsonld", - "title": "Property value with @included", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b8892", + "@id": "_:b4822", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "result": { - "@id": "_:b11667", + "@id": "_:b19891", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8891", + "@id": "_:b4819", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11666", + "@id": "_:b4820", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8893", + "@id": "_:b4826", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11141", + "@id": "_:b16600", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8895", + "@id": "_:b4827", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11669", + "@id": "_:b25530", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8896", + "@id": "_:b4830", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "result": { - "@id": "_:b11670", + "@id": "_:b23534", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8894", + "@id": "_:b4825", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11668", + "@id": "_:b23518", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8898", + "@id": "_:b4829", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11672", + "@id": "_:b26939", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8890", + "@id": "_:b4823", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "result": { - "@id": "_:b9561", + "@id": "_:b20467", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8887", + "@id": "_:b4824", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "result": { - "@id": "_:b8888", + "@id": "_:b22206", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8897", + "@id": "_:b4828", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05", "result": { - "@id": "_:b11671", + "@id": "_:b2011", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/li05-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/li05-context.jsonld" + }, + "title": "coerced @list containing mixed list values", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/li05-in.jsonld", + "rdfs:comment": "Lists of Lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13238", + "@id": "_:b12892", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/in06-out.jsonld", - "title": "json.api example", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b13242", + "@id": "_:b12898", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "result": { - "@id": "_:b23594", + "@id": "_:b12908", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13247", + "@id": "_:b12895", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25055", + "@id": "_:b12905", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13245", + "@id": "_:b12893", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25054", + "@id": "_:b12903", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13243", + "@id": "_:b12901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2212", + "@id": "_:b12911", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13241", + "@id": "_:b12900", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "result": { - "@id": "_:b22455", + "@id": "_:b12910", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13246", + "@id": "_:b12897", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22045", + "@id": "_:b12907", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13240", + "@id": "_:b12902", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21425", + "@id": "_:b12912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13239", + "@id": "_:b12896", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "result": { - "@id": "_:b19028", + "@id": "_:b12906", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13244", + "@id": "_:b12894", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "result": { - "@id": "_:b6500", + "@id": "_:b12904", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13248", + "@id": "_:b12899", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001", "result": { - "@id": "_:b23450", + "@id": "_:b12909", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m001-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m001-context.jsonld" + }, + "title": "Indexes to object not having an @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m001-in.jsonld", + "rdfs:comment": "Compaction using @container: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12153", + "@id": "_:b6200", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in07-in.jsonld", - "mf:result": "invalid @included value", - "title": "Error if @included value is a string", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b12161", + "@id": "_:b6207", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "result": { - "@id": "_:b25853", + "@id": "_:b25262", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12158", + "@id": "_:b6206", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7424", + "@id": "_:b24505", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12160", + "@id": "_:b6202", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25852", + "@id": "_:b23599", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12162", + "@id": "_:b6209", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25854", + "@id": "_:b23632", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12154", + "@id": "_:b6198", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "result": { - "@id": "_:b22846", + "@id": "_:b6199", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12157", + "@id": "_:b6205", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25851", + "@id": "_:b25743", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12155", + "@id": "_:b6203", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24230", + "@id": "_:b13284", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12156", + "@id": "_:b6204", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "result": { - "@id": "_:b25850", + "@id": "_:b26842", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12159", + "@id": "_:b6208", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "result": { - "@id": "_:b15936", + "@id": "_:b23242", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12151", + "@id": "_:b6201", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002", "result": { - "@id": "_:b12152", + "@id": "_:b13969", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m002-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m002-context.jsonld" + }, + "title": "Indexes to object already having an @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m002-in.jsonld", + "rdfs:comment": "Compaction using @container: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6599", + "@id": "_:b12140", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in08-in.jsonld", - "mf:result": "invalid @included value", - "title": "Error if @included value is a value object", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b6597", + "@id": "_:b12146", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "result": { - "@id": "_:b6598", + "@id": "_:b25905", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6608", + "@id": "_:b12148", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26767", + "@id": "_:b26258", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6606", + "@id": "_:b12145", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19959", + "@id": "_:b22062", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6603", + "@id": "_:b12141", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19859", + "@id": "_:b8809", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6601", + "@id": "_:b12142", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "result": { - "@id": "_:b24132", + "@id": "_:b17055", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6602", + "@id": "_:b12147", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23445", + "@id": "_:b26375", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6604", + "@id": "_:b12138", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25230", + "@id": "_:b12139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6605", + "@id": "_:b12143", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "result": { - "@id": "_:b26114", + "@id": "_:b24157", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6607", + "@id": "_:b12144", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "result": { - "@id": "_:b26942", + "@id": "_:b18157", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6600", + "@id": "_:b12149", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003", "result": { - "@id": "_:b13598", + "@id": "_:b21711", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m003-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m003-context.jsonld" + }, + "title": "Indexes to object not having an @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m003-in.jsonld", + "rdfs:comment": "Compaction using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15421", + "@id": "_:b457", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/in09-in.jsonld", - "mf:result": "invalid @included value", - "title": "Error if @included value is a list object", - "rdfs:comment": "Tests included blocks.", "assertions": [ { - "@id": "_:b15419", + "@id": "_:b1408", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "result": { - "@id": "_:b15420", + "@id": "_:b15083", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15424", + "@id": "_:b1404", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24465", + "@id": "_:b15079", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15423", + "@id": "_:b1403", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18653", + "@id": "_:b15078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15429", + "@id": "_:b1402", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25420", + "@id": "_:b15077", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15422", + "@id": "_:b1406", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "result": { - "@id": "_:b17232", + "@id": "_:b15081", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15426", + "@id": "_:b1405", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26644", + "@id": "_:b15080", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15430", + "@id": "_:b1400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26868", + "@id": "_:b15075", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15428", + "@id": "_:b1407", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "result": { - "@id": "_:b11280", + "@id": "_:b15082", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15425", + "@id": "_:b1398", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "result": { - "@id": "_:b25617", + "@id": "_:b1399", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15427", + "@id": "_:b1401", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004", "result": { - "@id": "_:b25487", + "@id": "_:b15076", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m004-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m004-context.jsonld" + }, + "title": "Indexes to object already having an @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m004-in.jsonld", + "rdfs:comment": "Compaction using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3313", + "@id": "_:b5991", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js01-out.jsonld", - "title": "Expand JSON literal (boolean true)", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (boolean true).", "assertions": [ { - "@id": "_:b3321", + "@id": "_:b19408", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "result": { - "@id": "_:b26818", + "@id": "_:b15206", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3319", + "@id": "_:b19409", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24873", + "@id": "_:b22678", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3318", + "@id": "_:b19412", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23884", + "@id": "_:b24241", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3322", + "@id": "_:b19414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b27001", + "@id": "_:b24243", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3316", + "@id": "_:b19415", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "result": { - "@id": "_:b21612", + "@id": "_:b19826", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3320", + "@id": "_:b19413", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24378", + "@id": "_:b24242", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3314", + "@id": "_:b19411", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19313", + "@id": "_:b24240", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3317", + "@id": "_:b19407", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "result": { - "@id": "_:b12215", + "@id": "_:b20143", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3315", + "@id": "_:b19405", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "result": { - "@id": "_:b20936", + "@id": "_:b19406", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3311", + "@id": "_:b19410", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005", "result": { - "@id": "_:b3312", + "@id": "_:b22473", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m005-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m005-context.jsonld" + }, + "title": "Indexes to object using compact IRI @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m005-in.jsonld", + "rdfs:comment": "Compaction using @container: @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b22220", + "@id": "_:b2330", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js02-out.jsonld", - "title": "Expand JSON literal (boolean false)", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (boolean false).", "assertions": [ { - "@id": "_:b22229", + "@id": "_:b2337", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "result": { - "@id": "_:b19607", + "@id": "_:b20003", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b22222", + "@id": "_:b2332", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24396", + "@id": "_:b19999", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22228", + "@id": "_:b2336", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25359", + "@id": "_:b20002", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22223", + "@id": "_:b2339", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10199", + "@id": "_:b20004", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22218", + "@id": "_:b2335", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "result": { - "@id": "_:b22219", + "@id": "_:b20001", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22224", + "@id": "_:b2331", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18468", + "@id": "_:b14103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22221", + "@id": "_:b2334", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22568", + "@id": "_:b20000", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22225", + "@id": "_:b2333", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "result": { - "@id": "_:b25357", + "@id": "_:b16780", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b22227", + "@id": "_:b2328", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "result": { - "@id": "_:b24875", + "@id": "_:b2329", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22226", + "@id": "_:b2338", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006", "result": { - "@id": "_:b25358", + "@id": "_:b14309", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m006-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m006-context.jsonld" + }, + "title": "Indexes using compacted @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m006-in.jsonld", + "rdfs:comment": "Compaction using @container: @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9776", + "@id": "_:b9847", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js03-out.jsonld", - "title": "Expand JSON literal (double)", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (double).", "assertions": [ { - "@id": "_:b9777", + "@id": "_:b9845", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "result": { - "@id": "_:b17146", + "@id": "_:b9846", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9781", + "@id": "_:b9854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22246", + "@id": "_:b23096", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9785", + "@id": "_:b9848", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22250", + "@id": "_:b23090", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9778", + "@id": "_:b9856", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18546", + "@id": "_:b23098", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9779", + "@id": "_:b9851", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "result": { - "@id": "_:b22244", + "@id": "_:b23093", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9782", + "@id": "_:b9849", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22247", + "@id": "_:b23091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9780", + "@id": "_:b9850", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22245", + "@id": "_:b23092", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9783", + "@id": "_:b9852", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "result": { - "@id": "_:b22248", + "@id": "_:b23094", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9774", + "@id": "_:b9853", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "result": { - "@id": "_:b9775", + "@id": "_:b23095", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9784", + "@id": "_:b9855", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007", "result": { - "@id": "_:b22249", + "@id": "_:b23097", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m007-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m007-context.jsonld" + }, + "title": "When type is in a type map", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m007-in.jsonld", + "rdfs:comment": "scoped context on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7028", + "@id": "_:b4241", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js04-out.jsonld", - "title": "Expand JSON literal (double-zero)", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (double-zero).", "assertions": [ { - "@id": "_:b7036", + "@id": "_:b4248", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "result": { - "@id": "_:b6174", + "@id": "_:b21679", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7031", + "@id": "_:b4242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25191", + "@id": "_:b19323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7030", + "@id": "_:b4247", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21765", + "@id": "_:b25784", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7026", + "@id": "_:b4250", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7027", + "@id": "_:b26508", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7034", + "@id": "_:b4239", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "result": { - "@id": "_:b26659", + "@id": "_:b4240", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7029", + "@id": "_:b4245", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15956", + "@id": "_:b26178", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7035", + "@id": "_:b4249", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26809", + "@id": "_:b25525", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7032", + "@id": "_:b4243", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "result": { - "@id": "_:b25731", + "@id": "_:b5304", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7033", + "@id": "_:b4246", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "result": { - "@id": "_:b26361", + "@id": "_:b23946", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7037", + "@id": "_:b4244", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008", "result": { - "@id": "_:b25198", + "@id": "_:b13266", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m008-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m008-context.jsonld" + }, + "title": "@index map with @none node definition", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m008-in.jsonld", + "rdfs:comment": "index on @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4869", + "@id": "_:b3154", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js05-out.jsonld", - "title": "Expand JSON literal (integer)", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (integer).", "assertions": [ { - "@id": "_:b4872", + "@id": "_:b3163", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "result": { - "@id": "_:b25776", + "@id": "_:b11724", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4871", + "@id": "_:b3155", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24928", + "@id": "_:b11772", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4867", + "@id": "_:b3158", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4868", + "@id": "_:b20214", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4874", + "@id": "_:b3160", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16565", + "@id": "_:b25173", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4876", + "@id": "_:b3159", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "result": { - "@id": "_:b26365", + "@id": "_:b25172", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4875", + "@id": "_:b3161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26452", + "@id": "_:b21988", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4873", + "@id": "_:b3156", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12962", + "@id": "_:b18259", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4877", + "@id": "_:b3152", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "result": { - "@id": "_:b26633", + "@id": "_:b3153", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4870", + "@id": "_:b3162", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "result": { - "@id": "_:b16125", + "@id": "_:b11168", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4878", + "@id": "_:b3157", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009", "result": { - "@id": "_:b14694", + "@id": "_:b20819", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m009-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m009-context.jsonld" + }, + "title": "@index map with @none value", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m009-in.jsonld", + "rdfs:comment": "index on @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7584", + "@id": "_:b13015", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js06-out.jsonld", - "title": "Expand JSON literal (object)", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (object).", "assertions": [ { - "@id": "_:b7588", + "@id": "_:b13024", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "result": { - "@id": "_:b21576", + "@id": "_:b25428", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7591", + "@id": "_:b13019", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20453", + "@id": "_:b8459", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7589", + "@id": "_:b13017", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18728", + "@id": "_:b17861", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7592", + "@id": "_:b13020", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13463", + "@id": "_:b22101", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7582", + "@id": "_:b13013", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "result": { - "@id": "_:b7583", + "@id": "_:b13014", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7587", + "@id": "_:b13018", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24690", + "@id": "_:b8851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7593", + "@id": "_:b13021", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18999", + "@id": "_:b26946", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7590", + "@id": "_:b13016", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "result": { - "@id": "_:b24691", + "@id": "_:b15580", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7586", + "@id": "_:b13023", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "result": { - "@id": "_:b23756", + "@id": "_:b26248", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7585", + "@id": "_:b13022", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010", "result": { - "@id": "_:b19862", + "@id": "_:b10049", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m010-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m010-context.jsonld" + }, + "title": "@index map with @none value using alias of @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m010-in.jsonld", + "rdfs:comment": "index on @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6835", + "@id": "_:b13169", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js07-out.jsonld", - "title": "Expand JSON literal (array)", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (array).", "assertions": [ { - "@id": "_:b6837", + "@id": "_:b13172", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "result": { - "@id": "_:b19440", + "@id": "_:b16563", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6838", + "@id": "_:b13175", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22420", + "@id": "_:b25719", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6833", + "@id": "_:b13170", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6834", + "@id": "_:b15535", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6842", + "@id": "_:b13167", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21761", + "@id": "_:b13168", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6840", + "@id": "_:b13177", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "result": { - "@id": "_:b4903", + "@id": "_:b26641", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6839", + "@id": "_:b13174", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24471", + "@id": "_:b24824", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6836", + "@id": "_:b13173", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b12886", + "@id": "_:b23945", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6841", + "@id": "_:b13176", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "result": { - "@id": "_:b22494", + "@id": "_:b21345", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6843", + "@id": "_:b13171", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "result": { - "@id": "_:b12388", + "@id": "_:b20620", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6844", + "@id": "_:b13178", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011", "result": { - "@id": "_:b24472", + "@id": "_:b26267", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m011-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m011-context.jsonld" + }, + "title": "@language map with no @language", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m011-in.jsonld", + "rdfs:comment": "index on @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10247", + "@id": "_:b11241", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js08-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js08-out.jsonld", - "title": "Expand JSON literal with array canonicalization", - "rdfs:comment": "Tests expanding JSON literal with array canonicalization.", "assertions": [ { - "@id": "_:b10255", + "@id": "_:b15878", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "result": { - "@id": "_:b25703", + "@id": "_:b24690", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10252", + "@id": "_:b15872", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13768", + "@id": "_:b17457", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10245", + "@id": "_:b15881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10246", + "@id": "_:b23845", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10248", + "@id": "_:b15876", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15318", + "@id": "_:b24689", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10250", + "@id": "_:b15873", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "result": { - "@id": "_:b19793", + "@id": "_:b19836", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10254", + "@id": "_:b15879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25702", + "@id": "_:b14179", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10251", + "@id": "_:b15880", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21401", + "@id": "_:b23419", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10256", + "@id": "_:b15875", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "result": { - "@id": "_:b22439", + "@id": "_:b23367", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10249", + "@id": "_:b15874", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "result": { - "@id": "_:b18283", + "@id": "_:b22205", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10253", + "@id": "_:b15877", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012", "result": { - "@id": "_:b23705", + "@id": "_:b19671", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m012-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m012-context.jsonld" + }, + "title": "language map with no @language using alias of @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m012-in.jsonld", + "rdfs:comment": "index on @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1486", + "@id": "_:b670", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js09-out.jsonld", - "title": "Transform JSON literal with string canonicalization", - "rdfs:comment": "Tests expanding JSON literal with string canonicalization.", "assertions": [ { - "@id": "_:b1489", + "@id": "_:b675", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "result": { - "@id": "_:b20640", + "@id": "_:b685", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1487", + "@id": "_:b677", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15229", + "@id": "_:b687", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1492", + "@id": "_:b674", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24283", + "@id": "_:b684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1495", + "@id": "_:b678", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23570", + "@id": "_:b688", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1488", + "@id": "_:b671", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "result": { - "@id": "_:b18130", + "@id": "_:b681", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1490", + "@id": "_:b673", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22783", + "@id": "_:b683", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1484", + "@id": "_:b672", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1485", + "@id": "_:b682", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1494", + "@id": "_:b679", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "result": { - "@id": "_:b23125", + "@id": "_:b689", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1491", + "@id": "_:b680", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "result": { - "@id": "_:b23783", + "@id": "_:b690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1493", + "@id": "_:b676", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013", "result": { - "@id": "_:b24284", + "@id": "_:b686", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m013-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m013-context.jsonld" + }, + "title": "id map using @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m013-in.jsonld", + "rdfs:comment": "index on @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5536", + "@id": "_:b5577", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js10-out.jsonld", - "title": "Expand JSON literal with structural canonicalization", - "rdfs:comment": "Tests expanding JSON literal with structural canonicalization.", "assertions": [ { - "@id": "_:b5545", + "@id": "_:b5583", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "result": { - "@id": "_:b8092", + "@id": "_:b13519", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5542", + "@id": "_:b5579", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8090", + "@id": "_:b13515", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5538", + "@id": "_:b5584", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8086", + "@id": "_:b13520", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5544", + "@id": "_:b5586", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8091", + "@id": "_:b13522", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5539", + "@id": "_:b5575", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "result": { - "@id": "_:b8087", + "@id": "_:b5576", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5543", + "@id": "_:b5582", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1078", + "@id": "_:b13518", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5540", + "@id": "_:b5581", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8088", + "@id": "_:b13517", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5537", + "@id": "_:b5585", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "result": { - "@id": "_:b8085", + "@id": "_:b13521", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5541", + "@id": "_:b5580", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "result": { - "@id": "_:b8089", + "@id": "_:b13516", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5546", + "@id": "_:b5578", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014", "result": { - "@id": "_:b8093", + "@id": "_:b13514", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m014-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m014-context.jsonld" + }, + "title": "id map using @none with alias", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m014-in.jsonld", + "rdfs:comment": "index on @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3172", + "@id": "_:b11686", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js11-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js11-out.jsonld", - "title": "Expand JSON literal with unicode canonicalization", - "rdfs:comment": "Tests expanding JSON literal with unicode canonicalization.", "assertions": [ { - "@id": "_:b3170", + "@id": "_:b11691", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "result": { - "@id": "_:b3171", + "@id": "_:b22202", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3179", + "@id": "_:b11693", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7831", + "@id": "_:b18100", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3174", + "@id": "_:b11687", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7826", + "@id": "_:b12621", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3173", + "@id": "_:b11696", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7825", + "@id": "_:b22509", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3177", + "@id": "_:b11692", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "result": { - "@id": "_:b7829", + "@id": "_:b3524", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3176", + "@id": "_:b11694", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7828", + "@id": "_:b22508", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3178", + "@id": "_:b11689", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7830", + "@id": "_:b14337", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3175", + "@id": "_:b11695", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "result": { - "@id": "_:b7827", + "@id": "_:b17456", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3181", + "@id": "_:b11690", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "result": { - "@id": "_:b7833", + "@id": "_:b22507", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3180", + "@id": "_:b11688", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015", "result": { - "@id": "_:b7832", + "@id": "_:b22224", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m015-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m015-context.jsonld" + }, + "title": "type map using @none with alias", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m015-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14668", + "@id": "_:b3483", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js12-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js12-out.jsonld", - "title": "Expand JSON literal with value canonicalization", - "rdfs:comment": "Tests expanding JSON literal with value canonicalization.", "assertions": [ { - "@id": "_:b14674", + "@id": "_:b3492", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "result": { - "@id": "_:b25254", + "@id": "_:b12237", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14675", + "@id": "_:b3490", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26427", + "@id": "_:b25238", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14672", + "@id": "_:b3484", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24045", + "@id": "_:b12181", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14678", + "@id": "_:b3486", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14221", + "@id": "_:b24463", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14676", + "@id": "_:b3485", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "result": { - "@id": "_:b17769", + "@id": "_:b23214", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14669", + "@id": "_:b3491", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17307", + "@id": "_:b25239", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14670", + "@id": "_:b3488", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23167", + "@id": "_:b2081", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14677", + "@id": "_:b3489", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "result": { - "@id": "_:b26909", + "@id": "_:b25237", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14671", + "@id": "_:b3481", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "result": { - "@id": "_:b23638", + "@id": "_:b3482", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14673", + "@id": "_:b3487", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016", "result": { - "@id": "_:b17172", + "@id": "_:b6711", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m016-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m016-context.jsonld" + }, + "title": "type map using @none with alias", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m016-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10390", + "@id": "_:b2475", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js13-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js13-out.jsonld", - "title": "Expand JSON literal with wierd canonicalization", - "rdfs:comment": "Tests expanding JSON literal with wierd canonicalization.", "assertions": [ { - "@id": "_:b10396", + "@id": "_:b2482", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "result": { - "@id": "_:b24620", + "@id": "_:b25310", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10398", + "@id": "_:b2483", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26249", + "@id": "_:b26653", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10400", + "@id": "_:b2478", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25627", + "@id": "_:b23070", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10399", + "@id": "_:b2480", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16951", + "@id": "_:b26492", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10394", + "@id": "_:b2473", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "result": { - "@id": "_:b24219", + "@id": "_:b2474", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10395", + "@id": "_:b2484", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25614", + "@id": "_:b26654", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10392", + "@id": "_:b2479", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17958", + "@id": "_:b24843", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10391", + "@id": "_:b2481", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "result": { - "@id": "_:b17186", + "@id": "_:b25154", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10397", + "@id": "_:b2476", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "result": { - "@id": "_:b24423", + "@id": "_:b3099", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10393", + "@id": "_:b2477", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017", "result": { - "@id": "_:b22842", + "@id": "_:b17136", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m017-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m017-context.jsonld" + }, + "title": "graph index map using @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m017-in.jsonld", + "rdfs:comment": "index on @graph and @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16353", + "@id": "_:b6065", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js14-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js14-out.jsonld", - "title": "Expand JSON literal without expanding contents", - "rdfs:comment": "Tests expanding JSON literal does not expand terms inside json.", "assertions": [ { - "@id": "_:b16356", + "@id": "_:b6066", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "result": { - "@id": "_:b21734", + "@id": "_:b6076", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16354", + "@id": "_:b6074", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17750", + "@id": "_:b6084", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16358", + "@id": "_:b6072", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24733", + "@id": "_:b6082", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16360", + "@id": "_:b6070", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21903", + "@id": "_:b6080", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16361", + "@id": "_:b6068", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "result": { - "@id": "_:b26992", + "@id": "_:b6078", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16351", + "@id": "_:b6071", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16352", + "@id": "_:b6081", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16355", + "@id": "_:b6075", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b9234", + "@id": "_:b6085", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16362", + "@id": "_:b6069", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "result": { - "@id": "_:b24789", + "@id": "_:b6079", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16359", + "@id": "_:b6073", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "result": { - "@id": "_:b22850", + "@id": "_:b6083", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16357", + "@id": "_:b6067", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018", "result": { - "@id": "_:b23670", + "@id": "_:b6077", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m018-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m018-context.jsonld" + }, + "title": "graph id map using @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m018-in.jsonld", + "rdfs:comment": "index on @graph and @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4098", + "@id": "_:b23548", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js15-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js15-out.jsonld", - "title": "Expand JSON literal aleady in expanded form", - "rdfs:comment": "Tests expanding JSON literal in expanded form.", "assertions": [ { - "@id": "_:b4101", + "@id": "_:b23552", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "result": { - "@id": "_:b24740", + "@id": "_:b23560", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4099", + "@id": "_:b23553", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14390", + "@id": "_:b23561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4100", + "@id": "_:b23554", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13964", + "@id": "_:b23562", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4107", + "@id": "_:b23558", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25539", + "@id": "_:b23564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4096", + "@id": "_:b23557", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "result": { - "@id": "_:b4097", + "@id": "_:b23563", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4106", + "@id": "_:b23549", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25538", + "@id": "_:b14875", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4104", + "@id": "_:b23556", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19650", + "@id": "_:b22396", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4102", + "@id": "_:b23551", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "result": { - "@id": "_:b25536", + "@id": "_:b7700", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4103", + "@id": "_:b23555", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "result": { - "@id": "_:b25537", + "@id": "_:b22888", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4105", + "@id": "_:b23550", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019", "result": { - "@id": "_:b20801", + "@id": "_:b23559", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m019-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m019-context.jsonld" + }, + "title": "graph id map using alias of @none", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m019-in.jsonld", + "rdfs:comment": "index on @graph and @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18704", + "@id": "_:b7831", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js16-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js16-out.jsonld", - "title": "Expand JSON literal aleady in expanded form with aliased keys", - "rdfs:comment": "Tests expanding JSON literal in expanded form with aliased keys in value object.", "assertions": [ { - "@id": "_:b18713", + "@id": "_:b7832", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "result": { - "@id": "_:b12498", + "@id": "_:b8723", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18708", + "@id": "_:b7840", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22200", + "@id": "_:b24711", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18712", + "@id": "_:b7841", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22165", + "@id": "_:b22722", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18710", + "@id": "_:b7834", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13034", + "@id": "_:b24026", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18705", + "@id": "_:b7837", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "result": { - "@id": "_:b14755", + "@id": "_:b19346", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18707", + "@id": "_:b7833", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23983", + "@id": "_:b22334", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18709", + "@id": "_:b7839", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23984", + "@id": "_:b16354", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18702", + "@id": "_:b7835", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "result": { - "@id": "_:b18703", + "@id": "_:b25006", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18706", + "@id": "_:b7838", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "result": { - "@id": "_:b8289", + "@id": "_:b18665", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18711", + "@id": "_:b7836", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020", "result": { - "@id": "_:b23985", + "@id": "_:b25030", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m020-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m020-context.jsonld" + }, + "title": "node reference compacts to string value of type map", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m020-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9981", + "@id": "_:b19951", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js17-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js17-out.jsonld", - "title": "Expand JSON literal (string)", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (string).", "assertions": [ { - "@id": "_:b9983", + "@id": "_:b19957", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "result": { - "@id": "_:b22715", + "@id": "_:b19966", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9985", + "@id": "_:b19959", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23801", + "@id": "_:b19968", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9989", + "@id": "_:b19953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17281", + "@id": "_:b19962", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9984", + "@id": "_:b19958", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20828", + "@id": "_:b19967", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9991", + "@id": "_:b19961", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "result": { - "@id": "_:b19428", + "@id": "_:b13774", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9988", + "@id": "_:b19960", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26131", + "@id": "_:b19969", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9990", + "@id": "_:b19956", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22779", + "@id": "_:b19965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9986", + "@id": "_:b19955", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "result": { - "@id": "_:b26045", + "@id": "_:b19964", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9987", + "@id": "_:b19952", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "result": { - "@id": "_:b25309", + "@id": "_:b16657", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9982", + "@id": "_:b19954", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021", "result": { - "@id": "_:b11595", + "@id": "_:b19963", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m021-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m021-context.jsonld" + }, + "title": "node reference compacts to string value of type map with @type: @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m021-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16955", + "@id": "_:b11805", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js18-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js18-out.jsonld", - "title": "Expand JSON literal (null)", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (null).", "assertions": [ { - "@id": "_:b16957", + "@id": "_:b11810", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "result": { - "@id": "_:b22264", + "@id": "_:b21338", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16958", + "@id": "_:b11806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19497", + "@id": "_:b21334", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16961", + "@id": "_:b11807", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26598", + "@id": "_:b21335", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16959", + "@id": "_:b11814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21058", + "@id": "_:b21341", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16962", + "@id": "_:b11813", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "result": { - "@id": "_:b25895", + "@id": "_:b21340", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16954", + "@id": "_:b11808", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11940", + "@id": "_:b21336", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16964", + "@id": "_:b11803", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22384", + "@id": "_:b11804", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16956", + "@id": "_:b11809", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "result": { - "@id": "_:b23005", + "@id": "_:b21337", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16960", + "@id": "_:b11812", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "result": { - "@id": "_:b26802", + "@id": "_:b13773", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16963", + "@id": "_:b11811", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022", "result": { - "@id": "_:b26880", + "@id": "_:b21339", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/m022-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/m022-context.jsonld" + }, + "title": "node reference compacts to string value of type map with @type: @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/m022-in.jsonld", + "rdfs:comment": "index on @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19585", + "@id": "_:b3142", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js19-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js19-out.jsonld", - "title": "Expand JSON literal with aliased @type", - "rdfs:comment": "Tests expanding JSON literal with aliased @type.", "assertions": [ { - "@id": "_:b19586", + "@id": "_:b3140", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "result": { - "@id": "_:b20430", + "@id": "_:b3141", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19589", + "@id": "_:b3145", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25508", + "@id": "_:b23981", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19583", + "@id": "_:b3149", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19584", + "@id": "_:b21750", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19593", + "@id": "_:b3150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26836", + "@id": "_:b23279", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19591", + "@id": "_:b3151", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "result": { - "@id": "_:b26492", + "@id": "_:b25700", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19594", + "@id": "_:b3144", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23348", + "@id": "_:b14770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19592", + "@id": "_:b3143", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26033", + "@id": "_:b10091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19588", + "@id": "_:b3146", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "result": { - "@id": "_:b22719", + "@id": "_:b24974", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19590", + "@id": "_:b3147", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "result": { - "@id": "_:b25826", + "@id": "_:b19817", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19587", + "@id": "_:b3148", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001", "result": { - "@id": "_:b22263", + "@id": "_:b22115", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n001-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n001-context.jsonld" + }, + "title": "Indexes to @nest for property with @nest", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n001-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3894", + "@id": "_:b18517", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js20-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js20-out.jsonld", - "title": "Expand JSON literal with aliased @value", - "rdfs:comment": "Tests expanding JSON literal with aliased @value.", "assertions": [ { - "@id": "_:b3892", + "@id": "_:b18518", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "result": { - "@id": "_:b3893", + "@id": "_:b18528", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3895", + "@id": "_:b18521", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17153", + "@id": "_:b18531", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3899", + "@id": "_:b18522", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25606", + "@id": "_:b18532", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3898", + "@id": "_:b18525", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25214", + "@id": "_:b17230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3902", + "@id": "_:b18527", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "result": { - "@id": "_:b23559", + "@id": "_:b12278", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3897", + "@id": "_:b18520", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23773", + "@id": "_:b18530", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3900", + "@id": "_:b18526", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13989", + "@id": "_:b18535", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3901", + "@id": "_:b18524", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "result": { - "@id": "_:b20777", + "@id": "_:b18534", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3896", + "@id": "_:b18519", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "result": { - "@id": "_:b18139", + "@id": "_:b18529", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3903", + "@id": "_:b18523", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002", "result": { - "@id": "_:b19674", + "@id": "_:b18533", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n002-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n002-context.jsonld" + }, + "title": "Indexes to @nest for all properties with @nest", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n002-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7259", + "@id": "_:b1618", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js21-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js21-out.jsonld", - "title": "Expand JSON literal with @context", - "rdfs:comment": "Tests expanding JSON literal with a @context.", "assertions": [ { - "@id": "_:b17836", + "@id": "_:b1622", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "result": { - "@id": "_:b20001", + "@id": "_:b6981", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17834", + "@id": "_:b1625", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20865", + "@id": "_:b6984", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17831", + "@id": "_:b1623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17832", + "@id": "_:b6982", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17837", + "@id": "_:b1626", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26755", + "@id": "_:b6985", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17841", + "@id": "_:b1627", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "result": { - "@id": "_:b25474", + "@id": "_:b6986", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17833", + "@id": "_:b1621", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18780", + "@id": "_:b6980", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17840", + "@id": "_:b1624", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26756", + "@id": "_:b6983", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17839", + "@id": "_:b1620", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "result": { - "@id": "_:b18063", + "@id": "_:b6979", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17838", + "@id": "_:b1619", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "result": { - "@id": "_:b26331", + "@id": "_:b5803", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17835", + "@id": "_:b1616", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003", "result": { - "@id": "_:b23929", + "@id": "_:b1617", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n003-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n003-context.jsonld" + }, + "title": "Nests using alias of @nest", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n003-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19710", + "@id": "_:b13304", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js22-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js22-out.jsonld", - "title": "Expand JSON literal (null) aleady in expanded form.", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (null).", "assertions": [ { - "@id": "_:b19713", + "@id": "_:b13312", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "result": { - "@id": "_:b20403", + "@id": "_:b22150", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19714", + "@id": "_:b13310", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22822", + "@id": "_:b26276", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19715", + "@id": "_:b13307", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23013", + "@id": "_:b14622", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19716", + "@id": "_:b13308", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25089", + "@id": "_:b18653", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19712", + "@id": "_:b13311", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "result": { - "@id": "_:b15394", + "@id": "_:b24369", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19708", + "@id": "_:b13306", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19709", + "@id": "_:b20418", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19711", + "@id": "_:b13305", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21097", + "@id": "_:b17121", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19718", + "@id": "_:b13313", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "result": { - "@id": "_:b22426", + "@id": "_:b25798", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19719", + "@id": "_:b13309", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "result": { - "@id": "_:b26996", + "@id": "_:b21667", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19717", + "@id": "_:b13302", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004", "result": { - "@id": "_:b25910", + "@id": "_:b13303", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n004-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n004-context.jsonld" + }, + "title": "Arrays of nested values", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n004-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6749", + "@id": "_:b4728", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/js23-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/js23-out.jsonld", - "title": "Expand JSON literal (empty array).", - "rdfs:comment": "Tests expanding property with @type @json to a JSON literal (empty array).", "assertions": [ { - "@id": "_:b6754", + "@id": "_:b4736", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "result": { - "@id": "_:b22642", + "@id": "_:b11436", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6756", + "@id": "_:b4731", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22644", + "@id": "_:b18197", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6751", + "@id": "_:b4729", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21393", + "@id": "_:b6723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6750", + "@id": "_:b4726", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9575", + "@id": "_:b4727", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6747", + "@id": "_:b4733", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "result": { - "@id": "_:b6748", + "@id": "_:b18199", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6755", + "@id": "_:b4734", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22643", + "@id": "_:b18200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6757", + "@id": "_:b4737", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22645", + "@id": "_:b18202", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6752", + "@id": "_:b4732", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "result": { - "@id": "_:b22390", + "@id": "_:b18198", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6753", + "@id": "_:b4735", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "result": { - "@id": "_:b22641", + "@id": "_:b18201", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6758", + "@id": "_:b4730", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005", "result": { - "@id": "_:b6953", + "@id": "_:b18196", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n005-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n005-context.jsonld" + }, + "title": "Nested @container: @list", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n005-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4881", + "@id": "_:b15122", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/l001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/l001-out.jsonld", - "title": "Language map with null value", - "rdfs:comment": "A language map may have a null value, which is ignored", "assertions": [ { - "@id": "_:b4887", + "@id": "_:b15126", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "result": { - "@id": "_:b26185", + "@id": "_:b23731", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4886", + "@id": "_:b15129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25453", + "@id": "_:b22333", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4890", + "@id": "_:b15128", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24409", + "@id": "_:b23733", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4882", + "@id": "_:b15124", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9711", + "@id": "_:b7752", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4889", + "@id": "_:b15127", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "result": { - "@id": "_:b27031", + "@id": "_:b23732", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4885", + "@id": "_:b15131", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22960", + "@id": "_:b23734", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4883", + "@id": "_:b15130", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18243", + "@id": "_:b14004", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4879", + "@id": "_:b15120", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "result": { - "@id": "_:b4880", + "@id": "_:b15121", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4884", + "@id": "_:b15123", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "result": { - "@id": "_:b21866", + "@id": "_:b20527", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4888", + "@id": "_:b15125", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006", "result": { - "@id": "_:b26934", + "@id": "_:b15106", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n006-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n006-context.jsonld" + }, + "title": "Nested @container: @index", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n006-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3999", + "@id": "_:b9331", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li01-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li01-out.jsonld", - "title": "@list containing @list", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b4002", + "@id": "_:b9332", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "result": { - "@id": "_:b18934", + "@id": "_:b11483", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4003", + "@id": "_:b9335", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10282", + "@id": "_:b4642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3997", + "@id": "_:b9337", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3998", + "@id": "_:b11487", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4006", + "@id": "_:b9339", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18937", + "@id": "_:b11489", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4008", + "@id": "_:b9338", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "result": { - "@id": "_:b18939", + "@id": "_:b11488", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4004", + "@id": "_:b9329", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18935", + "@id": "_:b9330", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4001", + "@id": "_:b9340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18933", + "@id": "_:b11490", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4000", + "@id": "_:b9333", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "result": { - "@id": "_:b13724", + "@id": "_:b11484", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4005", + "@id": "_:b9336", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "result": { - "@id": "_:b18936", + "@id": "_:b11486", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4007", + "@id": "_:b9334", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007", "result": { - "@id": "_:b18938", + "@id": "_:b11485", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n007-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n007-context.jsonld" + }, + "title": "Nested @container: @language", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n007-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9208", + "@id": "_:b15110", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li02-out.jsonld", - "title": "@list containing empty @list", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b9206", + "@id": "_:b15109", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "result": { - "@id": "_:b9207", + "@id": "_:b9272", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9212", + "@id": "_:b15118", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13150", + "@id": "_:b23234", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9216", + "@id": "_:b15111", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1444", + "@id": "_:b10824", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9210", + "@id": "_:b15115", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13148", + "@id": "_:b26433", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9209", + "@id": "_:b15114", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "result": { - "@id": "_:b13147", + "@id": "_:b25174", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9217", + "@id": "_:b15113", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13153", + "@id": "_:b25279", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9211", + "@id": "_:b15117", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13149", + "@id": "_:b26958", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9214", + "@id": "_:b15116", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "result": { - "@id": "_:b13152", + "@id": "_:b23688", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9215", + "@id": "_:b15119", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "result": { - "@id": "_:b8599", + "@id": "_:b25068", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9213", + "@id": "_:b15112", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008", "result": { - "@id": "_:b13151", + "@id": "_:b24756", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n008-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n008-context.jsonld" + }, + "title": "Nested @container: @type", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n008-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14982", + "@id": "_:b7982", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li03-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li03-out.jsonld", - "title": "@list containing @list (with coercion)", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b14991", + "@id": "_:b7985", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "result": { - "@id": "_:b24936", + "@id": "_:b21424", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14988", + "@id": "_:b7990", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26471", + "@id": "_:b18582", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14986", + "@id": "_:b7987", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25300", + "@id": "_:b11747", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14983", + "@id": "_:b7991", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20919", + "@id": "_:b27022", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14989", + "@id": "_:b7983", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "result": { - "@id": "_:b18328", + "@id": "_:b14846", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14984", + "@id": "_:b7988", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24541", + "@id": "_:b23318", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14992", + "@id": "_:b7989", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26464", + "@id": "_:b17459", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14985", + "@id": "_:b7984", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "result": { - "@id": "_:b20019", + "@id": "_:b21236", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14990", + "@id": "_:b7986", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "result": { - "@id": "_:b24327", + "@id": "_:b25577", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14987", + "@id": "_:b7980", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009", "result": { - "@id": "_:b26450", + "@id": "_:b7981", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n009-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n009-context.jsonld" + }, + "title": "Nested @container: @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n009-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7442", + "@id": "_:b9463", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li04-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li04-out.jsonld", - "title": "@list containing empty @list (with coercion)", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b7440", + "@id": "_:b9467", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "result": { - "@id": "_:b7441", + "@id": "_:b15187", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7444", + "@id": "_:b9464", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21542", + "@id": "_:b3509", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7449", + "@id": "_:b9469", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21755", + "@id": "_:b15188", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7450", + "@id": "_:b9468", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26221", + "@id": "_:b3642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7445", + "@id": "_:b9471", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "result": { - "@id": "_:b11043", + "@id": "_:b12275", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7448", + "@id": "_:b9472", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26602", + "@id": "_:b12462", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7443", + "@id": "_:b9466", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20983", + "@id": "_:b15186", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7451", + "@id": "_:b9465", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "result": { - "@id": "_:b22255", + "@id": "_:b15185", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7446", + "@id": "_:b9461", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "result": { - "@id": "_:b7411", + "@id": "_:b9462", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7447", + "@id": "_:b9470", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010", "result": { - "@id": "_:b4468", + "@id": "_:b15189", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n010-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n010-context.jsonld" + }, + "title": "Multiple nest aliases", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n010-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16461", + "@id": "_:b2854", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li05-out.jsonld", - "title": "coerced @list containing an array", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b16464", + "@id": "_:b2857", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "result": { - "@id": "_:b21557", + "@id": "_:b26204", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16466", + "@id": "_:b2855", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22068", + "@id": "_:b20205", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16468", + "@id": "_:b2852", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26704", + "@id": "_:b2853", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16469", + "@id": "_:b2856", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26705", + "@id": "_:b24630", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16463", + "@id": "_:b2863", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "result": { - "@id": "_:b19361", + "@id": "_:b27015", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16467", + "@id": "_:b2862", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26087", + "@id": "_:b20571", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16462", + "@id": "_:b2861", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18646", + "@id": "_:b26539", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16470", + "@id": "_:b2858", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "result": { - "@id": "_:b24543", + "@id": "_:b26421", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16465", + "@id": "_:b2859", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "result": { - "@id": "_:b22499", + "@id": "_:b26959", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16460", + "@id": "_:b2860", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011", "result": { - "@id": "_:b16378", + "@id": "_:b23356", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/n011-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/n011-context.jsonld" + }, + "title": "Nests using alias of @nest (defined with @id)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/n011-in.jsonld", + "rdfs:comment": "Compaction using @nest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4135", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b6312", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li06-out.jsonld", - "title": "coerced @list containing an empty array", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b4142", + "@id": "_:b6321", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "result": { - "@id": "_:b25275", + "@id": "_:b6331", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4141", + "@id": "_:b6317", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26245", + "@id": "_:b6327", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4140", + "@id": "_:b6319", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25455", + "@id": "_:b6329", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4138", + "@id": "_:b6313", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7507", + "@id": "_:b6323", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4143", + "@id": "_:b6314", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "result": { - "@id": "_:b26508", + "@id": "_:b6324", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b4139", + "@id": "_:b6316", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23892", + "@id": "_:b6326", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4137", + "@id": "_:b6322", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21728", + "@id": "_:b6332", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4133", + "@id": "_:b6315", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "result": { - "@id": "_:b4134", + "@id": "_:b6325", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4144", + "@id": "_:b6320", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "result": { - "@id": "_:b25234", + "@id": "_:b6330", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b4136", + "@id": "_:b6318", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001", "result": { - "@id": "_:b14003", + "@id": "_:b6328", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p001-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/p001-context.jsonld" + }, + "title": "Compact IRI will not use an expanded term definition in 1.0", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p001-in.jsonld", + "rdfs:comment": "Terms with an expanded term definition are not used for creating compact IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1207", + "@id": "_:b1058", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li07-out.jsonld", - "title": "coerced @list containing deep arrays", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b1215", + "@id": "_:b1059", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "result": { - "@id": "_:b25939", + "@id": "_:b20015", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1205", + "@id": "_:b1061", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1206", + "@id": "_:b24224", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1213", + "@id": "_:b1060", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24824", + "@id": "_:b22663", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1212", + "@id": "_:b1062", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22789", + "@id": "_:b19790", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1214", + "@id": "_:b1056", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "result": { - "@id": "_:b25938", + "@id": "_:b1057", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1208", + "@id": "_:b1065", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12655", + "@id": "_:b23015", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1211", + "@id": "_:b1067", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21876", + "@id": "_:b24228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1210", + "@id": "_:b1066", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "result": { - "@id": "_:b18049", + "@id": "_:b24227", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1209", + "@id": "_:b1064", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "result": { - "@id": "_:b8393", + "@id": "_:b24226", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1216", + "@id": "_:b1063", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002", "result": { - "@id": "_:b22021", + "@id": "_:b24225", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p002-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/p002-context.jsonld" + }, + "title": "Compact IRI does not use expanded term definition in 1.1", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p002-in.jsonld", + "rdfs:comment": "Terms with an expanded term definition are not used for creating compact IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5112", + "@id": "_:b9062", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li08-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li08-out.jsonld", - "title": "coerced @list containing deep empty arrays", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b5121", + "@id": "_:b9064", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "result": { - "@id": "_:b21027", + "@id": "_:b22493", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5113", + "@id": "_:b9063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14925", + "@id": "_:b9930", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5114", + "@id": "_:b9068", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12213", + "@id": "_:b24128", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5118", + "@id": "_:b9066", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25380", + "@id": "_:b22687", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5119", + "@id": "_:b9071", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "result": { - "@id": "_:b25381", + "@id": "_:b25576", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5115", + "@id": "_:b9070", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22269", + "@id": "_:b26293", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5120", + "@id": "_:b9069", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13803", + "@id": "_:b23117", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5116", + "@id": "_:b9065", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "result": { - "@id": "_:b22744", + "@id": "_:b23128", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5110", + "@id": "_:b9067", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "result": { - "@id": "_:b5111", + "@id": "_:b18861", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5117", + "@id": "_:b9060", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003", "result": { - "@id": "_:b23369", + "@id": "_:b9061", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p003-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/p003-context.jsonld" + }, + "title": "Compact IRI does not use simple term that does not end with a gen-delim", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p003-in.jsonld", + "rdfs:comment": "Terms not ending with a gen-delim are not used for creating compact IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3829", + "@id": "_:b5980", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li09-out.jsonld", - "title": "coerced @list containing multiple lists", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b3836", + "@id": "_:b5986", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "result": { - "@id": "_:b25469", + "@id": "_:b23021", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3831", + "@id": "_:b5983", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23042", + "@id": "_:b24471", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3832", + "@id": "_:b5987", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23767", + "@id": "_:b18538", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3833", + "@id": "_:b5982", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23361", + "@id": "_:b23267", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3838", + "@id": "_:b5989", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "result": { - "@id": "_:b7133", + "@id": "_:b24393", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3837", + "@id": "_:b5985", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25470", + "@id": "_:b24207", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3834", + "@id": "_:b5988", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21520", + "@id": "_:b23398", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3830", + "@id": "_:b5981", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "result": { - "@id": "_:b17964", + "@id": "_:b7190", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3835", + "@id": "_:b5984", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "result": { - "@id": "_:b23887", + "@id": "_:b25319", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3827", + "@id": "_:b5990", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004", "result": { - "@id": "_:b3828", + "@id": "_:b24813", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p004-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/p004-context.jsonld" + }, + "title": "Compact IRIs using simple terms ending with gen-delim", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p004-in.jsonld", + "rdfs:comment": "All simple terms ending with gen-delim are suitable for compaction" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3609", + "@id": "_:b18887", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/li10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/li10-out.jsonld", - "title": "coerced @list containing mixed list values", - "rdfs:comment": "List of lists", "assertions": [ { - "@id": "_:b3613", + "@id": "_:b18895", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "result": { - "@id": "_:b18651", + "@id": "_:b20676", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3611", + "@id": "_:b18890", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14144", + "@id": "_:b23274", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3617", + "@id": "_:b18894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23689", + "@id": "_:b18075", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3612", + "@id": "_:b18896", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16475", + "@id": "_:b6512", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3616", + "@id": "_:b18891", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "result": { - "@id": "_:b23688", + "@id": "_:b24940", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3618", + "@id": "_:b18892", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23690", + "@id": "_:b8965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3607", + "@id": "_:b18889", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3608", + "@id": "_:b21939", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3610", + "@id": "_:b18885", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "result": { - "@id": "_:b5632", + "@id": "_:b18886", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3614", + "@id": "_:b18893", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "result": { - "@id": "_:b19610", + "@id": "_:b13363", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3615", + "@id": "_:b18888", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005", "result": { - "@id": "_:b21681", + "@id": "_:b21519", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p005-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/p005-context.jsonld" + }, + "title": "Compact IRI uses term with definition including @prefix: true", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p005-in.jsonld", + "rdfs:comment": "Expanded term definition may set prefix explicitly in 1.1" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10304", + "@id": "_:b5496", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m001-out.jsonld", - "title": "Adds @id to object not having an @id", - "rdfs:comment": "Expansion using @container: @id", "assertions": [ { - "@id": "_:b10303", + "@id": "_:b5502", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "result": { - "@id": "_:b9163", + "@id": "_:b15855", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10305", + "@id": "_:b5497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8795", + "@id": "_:b15850", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10313", + "@id": "_:b5505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15636", + "@id": "_:b15858", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10307", + "@id": "_:b5494", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15630", + "@id": "_:b5495", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10309", + "@id": "_:b5499", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "result": { - "@id": "_:b15632", + "@id": "_:b15852", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10312", + "@id": "_:b5503", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15635", + "@id": "_:b15856", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10306", + "@id": "_:b5501", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15629", + "@id": "_:b15854", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10311", + "@id": "_:b5498", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "result": { - "@id": "_:b15634", + "@id": "_:b15851", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10310", + "@id": "_:b5500", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "result": { - "@id": "_:b15633", + "@id": "_:b15853", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10308", + "@id": "_:b5504", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006", "result": { - "@id": "_:b15631", + "@id": "_:b15857", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p006-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/p006-context.jsonld" + }, + "title": "Compact IRI uses term with definition including @prefix: true", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p006-in.jsonld", + "rdfs:comment": "Expanded term definition may set prefix explicitly in 1.1" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18569", + "@id": "_:b2426", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m002-out.jsonld", - "title": "Retains @id in object already having an @id", - "rdfs:comment": "Expansion using @container: @id", "assertions": [ { - "@id": "_:b18575", + "@id": "_:b2427", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "result": { - "@id": "_:b24298", + "@id": "_:b7531", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18574", + "@id": "_:b2432", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24297", + "@id": "_:b16838", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18571", + "@id": "_:b2429", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22112", + "@id": "_:b18804", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18567", + "@id": "_:b2430", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18568", + "@id": "_:b21920", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18576", + "@id": "_:b2424", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "result": { - "@id": "_:b24299", + "@id": "_:b2425", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18572", + "@id": "_:b2434", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13379", + "@id": "_:b22482", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18578", + "@id": "_:b2433", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23856", + "@id": "_:b23674", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18570", + "@id": "_:b2431", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "result": { - "@id": "_:b20957", + "@id": "_:b2352", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18573", + "@id": "_:b2435", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "result": { - "@id": "_:b24296", + "@id": "_:b24677", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18577", + "@id": "_:b2428", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007", "result": { - "@id": "_:b20889", + "@id": "_:b14821", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p007-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/p007-context.jsonld" + }, + "title": "Compact IRI not used as prefix", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p007-in.jsonld", + "rdfs:comment": "Terms including a colon are excluded from being used as a prefix" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4954", + "@id": "_:b13612", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m003-out.jsonld", - "title": "Adds @type to object not having an @type", - "rdfs:comment": "Expansion using @container: @type", "assertions": [ { - "@id": "_:b21459", + "@id": "_:b13613", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "result": { - "@id": "_:b21920", + "@id": "_:b17406", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b21455", + "@id": "_:b13620", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21916", + "@id": "_:b20087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b21453", + "@id": "_:b13615", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21914", + "@id": "_:b21227", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21452", + "@id": "_:b13618", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21913", + "@id": "_:b21229", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b21460", + "@id": "_:b13610", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "result": { - "@id": "_:b21921", + "@id": "_:b13611", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b21457", + "@id": "_:b13616", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21918", + "@id": "_:b15453", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b21456", + "@id": "_:b13621", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21917", + "@id": "_:b16778", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b21458", + "@id": "_:b13619", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "result": { - "@id": "_:b21919", + "@id": "_:b21230", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b21454", + "@id": "_:b13614", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "result": { - "@id": "_:b21915", + "@id": "_:b21226", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b21450", + "@id": "_:b13617", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008", "result": { - "@id": "_:b21451", + "@id": "_:b21228", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/p008-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/p008-context.jsonld" + }, + "title": "Compact IRI does not use term with definition including @prefix: false", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/p008-in.jsonld", + "rdfs:comment": "Expanded term definition may set prefix explicitly in 1.1" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10367", + "@id": "_:b9756", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m004-out.jsonld", - "title": "Prepends @type in object already having an @type", - "rdfs:comment": "Expansion using @container: @type", "assertions": [ { - "@id": "_:b10371", + "@id": "_:b9758", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "result": { - "@id": "_:b21710", + "@id": "_:b7112", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10369", + "@id": "_:b9754", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21483", + "@id": "_:b9755", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10372", + "@id": "_:b9765", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21711", + "@id": "_:b26969", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10374", + "@id": "_:b9761", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21713", + "@id": "_:b24893", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10376", + "@id": "_:b9762", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "result": { - "@id": "_:b21468", + "@id": "_:b25475", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10373", + "@id": "_:b9759", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21712", + "@id": "_:b21245", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10370", + "@id": "_:b9764", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21709", + "@id": "_:b25847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10375", + "@id": "_:b9760", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "result": { - "@id": "_:b21360", + "@id": "_:b22907", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10368", + "@id": "_:b9757", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "result": { - "@id": "_:b20635", + "@id": "_:b13780", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10365", + "@id": "_:b9763", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01", "result": { - "@id": "_:b10366", + "@id": "_:b23217", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi01-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi01-context.jsonld" + }, + "title": "property-valued index indexes property value, instead of property (value)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi01-in.jsonld", + "rdfs:comment": "Compacting property-valued indexes." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b577", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://example.org/" - } + "@id": "_:b6582", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m005-out.jsonld", - "title": "Adds expanded @id to object", - "rdfs:comment": "Expansion using @container: @id", "assertions": [ { - "@id": "_:b9083", + "@id": "_:b6580", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "result": { - "@id": "_:b19646", + "@id": "_:b6581", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9076", + "@id": "_:b6584", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19641", + "@id": "_:b15891", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9079", + "@id": "_:b6590", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19643", + "@id": "_:b10479", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9081", + "@id": "_:b6585", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19645", + "@id": "_:b15892", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9082", + "@id": "_:b6588", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "result": { - "@id": "_:b8351", + "@id": "_:b15895", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9077", + "@id": "_:b6586", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19642", + "@id": "_:b15893", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9075", + "@id": "_:b6589", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17156", + "@id": "_:b15896", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9078", + "@id": "_:b6591", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "result": { - "@id": "_:b3619", + "@id": "_:b15897", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9080", + "@id": "_:b6583", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "result": { - "@id": "_:b19644", + "@id": "_:b15890", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9073", + "@id": "_:b6587", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02", "result": { - "@id": "_:b9074", + "@id": "_:b15894", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi02-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi02-context.jsonld" + }, + "title": "property-valued index indexes property value, instead of property (multiple values)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi02-in.jsonld", + "rdfs:comment": "Compacting property-valued indexes." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13095", + "@id": "_:b3512", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m006-out.jsonld", - "title": "Adds vocabulary expanded @type to object", - "rdfs:comment": "Expansion using @container: @type", "assertions": [ { - "@id": "_:b13099", + "@id": "_:b3521", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "result": { - "@id": "_:b24828", + "@id": "_:b26697", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13098", + "@id": "_:b3513", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b7506", + "@id": "_:b13809", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13096", + "@id": "_:b3517", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16974", + "@id": "_:b24723", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13100", + "@id": "_:b3510", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25495", + "@id": "_:b3511", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13093", + "@id": "_:b3514", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "result": { - "@id": "_:b13094", + "@id": "_:b23776", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13101", + "@id": "_:b3516", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26276", + "@id": "_:b1219", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13103", + "@id": "_:b3515", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21572", + "@id": "_:b24633", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13104", + "@id": "_:b3518", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "result": { - "@id": "_:b12998", + "@id": "_:b26843", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13102", + "@id": "_:b3519", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "result": { - "@id": "_:b25003", + "@id": "_:b26844", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13097", + "@id": "_:b3520", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03", "result": { - "@id": "_:b17650", + "@id": "_:b3823", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi03-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi03-context.jsonld" + }, + "title": "property-valued index indexes property value, instead of property (node)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi03-in.jsonld", + "rdfs:comment": "Compacting property-valued indexes." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14174", + "@id": "_:b14296", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m007-out.jsonld", - "title": "Adds document expanded @type to object", - "rdfs:comment": "Expansion using @container: @type", "assertions": [ { - "@id": "_:b14172", + "@id": "_:b14303", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "result": { - "@id": "_:b14173", + "@id": "_:b21674", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14177", + "@id": "_:b14297", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17251", + "@id": "_:b21668", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14175", + "@id": "_:b14302", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15314", + "@id": "_:b21673", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14182", + "@id": "_:b14304", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26394", + "@id": "_:b21675", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14176", + "@id": "_:b14301", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "result": { - "@id": "_:b19483", + "@id": "_:b21672", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14181", + "@id": "_:b14294", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25136", + "@id": "_:b14295", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14180", + "@id": "_:b14298", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25220", + "@id": "_:b21669", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14179", + "@id": "_:b14299", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "result": { - "@id": "_:b19221", + "@id": "_:b21670", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14178", + "@id": "_:b14300", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "result": { - "@id": "_:b24351", + "@id": "_:b21671", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14183", + "@id": "_:b14305", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04", "result": { - "@id": "_:b24842", + "@id": "_:b21676", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi04-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi04-context.jsonld" + }, + "title": "property-valued index indexes property value, instead of property (multiple nodes)", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi04-in.jsonld", + "rdfs:comment": "Compacting property-valued indexes." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11538", + "@id": "_:b15544", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m008-out.jsonld", - "title": "When type is in a type map", - "rdfs:comment": "scoped context on @type", "assertions": [ { - "@id": "_:b11541", + "@id": "_:b15546", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "result": { - "@id": "_:b11551", + "@id": "_:b20989", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11543", + "@id": "_:b15549", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11553", + "@id": "_:b20992", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11539", + "@id": "_:b15547", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11549", + "@id": "_:b20990", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11540", + "@id": "_:b15553", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11550", + "@id": "_:b19042", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11548", + "@id": "_:b15551", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "result": { - "@id": "_:b11557", + "@id": "_:b11522", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11545", + "@id": "_:b15543", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11554", + "@id": "_:b9270", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11547", + "@id": "_:b15550", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11556", + "@id": "_:b20776", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11544", + "@id": "_:b15548", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "result": { - "@id": "_:b9560", + "@id": "_:b20991", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11542", + "@id": "_:b15552", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "result": { - "@id": "_:b11552", + "@id": "_:b20993", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11546", + "@id": "_:b15545", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05", "result": { - "@id": "_:b11555", + "@id": "_:b20455", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi05-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi05-context.jsonld" + }, + "title": "property-valued index indexes using @none if no property value exists", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi05-in.jsonld", + "rdfs:comment": "Compacting property-valued indexes." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9923", + "@id": "_:b5571", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m009-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m009-out.jsonld", - "title": "language map with @none", - "rdfs:comment": "index on @language", "assertions": [ { - "@id": "_:b9921", + "@id": "_:b11224", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "result": { - "@id": "_:b9922", + "@id": "_:b26349", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9928", + "@id": "_:b11222", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14799", + "@id": "_:b19366", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9927", + "@id": "_:b11219", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24725", + "@id": "_:b26432", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9929", + "@id": "_:b11223", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20859", + "@id": "_:b19099", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9932", + "@id": "_:b11221", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "result": { - "@id": "_:b24850", + "@id": "_:b25772", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9925", + "@id": "_:b11218", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16574", + "@id": "_:b19948", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9931", + "@id": "_:b11225", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15349", + "@id": "_:b26734", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9926", + "@id": "_:b11220", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "result": { - "@id": "_:b23015", + "@id": "_:b26733", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9930", + "@id": "_:b11226", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "result": { - "@id": "_:b18455", + "@id": "_:b22971", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9924", + "@id": "_:b11217", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06", "result": { - "@id": "_:b20012", + "@id": "_:b12835", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pi06-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pi06-context.jsonld" + }, + "title": "property-valued index indexes using @none if no property value does not compact to string", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pi06-in.jsonld", + "rdfs:comment": "Compacting property-valued indexes." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6074", + "@id": "_:b9136", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m010-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m010-out.jsonld", - "title": "language map with alias of @none", - "rdfs:comment": "index on @language", "assertions": [ { - "@id": "_:b6080", + "@id": "_:b9134", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "result": { - "@id": "_:b11794", + "@id": "_:b9135", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6081", + "@id": "_:b9141", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22319", + "@id": "_:b26119", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6075", + "@id": "_:b9144", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14664", + "@id": "_:b26647", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6072", + "@id": "_:b9139", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6073", + "@id": "_:b25485", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6077", + "@id": "_:b9143", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "result": { - "@id": "_:b22050", + "@id": "_:b21296", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6082", + "@id": "_:b9138", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20799", + "@id": "_:b24061", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6083", + "@id": "_:b9140", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22320", + "@id": "_:b23247", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6079", + "@id": "_:b9142", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "result": { - "@id": "_:b22318", + "@id": "_:b26340", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6078", + "@id": "_:b9145", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "result": { - "@id": "_:b22317", + "@id": "_:b22378", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6076", + "@id": "_:b9137", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01", "result": { - "@id": "_:b16718", + "@id": "_:b23570", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid context nullification", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr01-context.jsonld" + }, + "title": "Check illegal clearing of context with protected terms", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr01-in.jsonld", + "rdfs:comment": "Check error when clearing a context with protected terms." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11049", + "@id": "_:b8201", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m011-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m011-out.jsonld", - "title": "id map with @none", - "rdfs:comment": "index on @id", "assertions": [ { - "@id": "_:b11054", + "@id": "_:b8210", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "result": { - "@id": "_:b25632", + "@id": "_:b26481", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11047", + "@id": "_:b8204", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11048", + "@id": "_:b24067", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11051", + "@id": "_:b8208", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9408", + "@id": "_:b21976", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11058", + "@id": "_:b8202", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20797", + "@id": "_:b22099", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11055", + "@id": "_:b8203", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "result": { - "@id": "_:b25633", + "@id": "_:b17029", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11050", + "@id": "_:b8206", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19412", + "@id": "_:b26479", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11053", + "@id": "_:b8199", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20123", + "@id": "_:b8200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11056", + "@id": "_:b8209", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "result": { - "@id": "_:b23715", + "@id": "_:b18825", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11052", + "@id": "_:b8207", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "result": { - "@id": "_:b25190", + "@id": "_:b26480", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11057", + "@id": "_:b8205", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02", "result": { - "@id": "_:b20473", + "@id": "_:b24585", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr02-context.jsonld" + }, + "title": "Check illegal overriding of protected term", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr02-in.jsonld", + "rdfs:comment": "Check error when overriding a protected term." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5089", + "@id": "_:b4335", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m012-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m012-out.jsonld", - "title": "type map with alias of @none", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b5098", + "@id": "_:b4342", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "result": { - "@id": "_:b15807", + "@id": "_:b20823", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5096", + "@id": "_:b4333", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21986", + "@id": "_:b4334", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5091", + "@id": "_:b4336", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17507", + "@id": "_:b24752", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5087", + "@id": "_:b4344", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5088", + "@id": "_:b26786", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5093", + "@id": "_:b4337", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "result": { - "@id": "_:b19997", + "@id": "_:b9184", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5092", + "@id": "_:b4340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21983", + "@id": "_:b26675", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5097", + "@id": "_:b4343", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21987", + "@id": "_:b2823", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5090", + "@id": "_:b4339", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "result": { - "@id": "_:b16938", + "@id": "_:b26691", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5094", + "@id": "_:b4341", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "result": { - "@id": "_:b21984", + "@id": "_:b26762", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5095", + "@id": "_:b4338", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03", "result": { - "@id": "_:b21985", + "@id": "_:b9969", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "protected term redefinition", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr03-context.jsonld" + }, + "title": "Check illegal overriding of protected term from type-scoped context", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr03-in.jsonld", + "rdfs:comment": "Check error when overriding a protected term from type-scoped context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1331", + "@id": "_:b13240", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m013-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m013-out.jsonld", - "title": "graph index map with @none", - "rdfs:comment": "index on @graph and @index", "assertions": [ { - "@id": "_:b1339", + "@id": "_:b13246", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "result": { - "@id": "_:b13072", + "@id": "_:b19794", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1337", + "@id": "_:b13238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12658", + "@id": "_:b13239", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1333", + "@id": "_:b13242", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7653", + "@id": "_:b19791", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1332", + "@id": "_:b13244", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3750", + "@id": "_:b11285", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1338", + "@id": "_:b13249", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "result": { - "@id": "_:b20844", + "@id": "_:b19796", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1335", + "@id": "_:b13248", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22130", + "@id": "_:b19795", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1340", + "@id": "_:b13241", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25540", + "@id": "_:b2080", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1334", + "@id": "_:b13245", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "result": { - "@id": "_:b14120", + "@id": "_:b19793", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1341", + "@id": "_:b13247", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "result": { - "@id": "_:b22595", + "@id": "_:b12323", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1336", + "@id": "_:b13243", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04", "result": { - "@id": "_:b6724", + "@id": "_:b19792", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pr04-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr04-context.jsonld" + }, + "title": "Check legal overriding of protected term from property-scoped context", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr04-in.jsonld", + "rdfs:comment": "Check overriding a protected term from property-scoped context." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9715", + "@id": "_:b15662", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m014-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m014-out.jsonld", - "title": "graph index map with alias @none", - "rdfs:comment": "index on @graph and @index", "assertions": [ { - "@id": "_:b9720", + "@id": "_:b15667", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "result": { - "@id": "_:b13029", + "@id": "_:b26576", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9714", + "@id": "_:b15669", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6637", + "@id": "_:b24388", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9717", + "@id": "_:b15672", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13026", + "@id": "_:b26835", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9716", + "@id": "_:b15671", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13025", + "@id": "_:b26443", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9719", + "@id": "_:b15664", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "result": { - "@id": "_:b13028", + "@id": "_:b22075", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9721", + "@id": "_:b15668", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13030", + "@id": "_:b26803", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9722", + "@id": "_:b15663", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13031", + "@id": "_:b21503", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9723", + "@id": "_:b15665", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "result": { - "@id": "_:b13032", + "@id": "_:b24529", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9718", + "@id": "_:b15666", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "result": { - "@id": "_:b13027", + "@id": "_:b26380", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9724", + "@id": "_:b15670", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05", "result": { - "@id": "_:b13033", + "@id": "_:b26820", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/pr05-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/pr05-context.jsonld" + }, + "title": "Check legal overriding of type-scoped protected term from nested node", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/pr05-in.jsonld", + "rdfs:comment": "Check legal overriding of type-scoped protected term from nested node." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11325", + "@id": "_:b3943", + "https://w3c.github.io/json-ld-api/tests/vocab#base": { + "@id": "http://example.org/" + }, "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m015-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m015-out.jsonld", - "title": "graph id index map with aliased @none", - "rdfs:comment": "index on @graph and @id with @none", "assertions": [ { - "@id": "_:b11326", + "@id": "_:b3948", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "result": { - "@id": "_:b20362", + "@id": "_:b9558", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11332", + "@id": "_:b3947", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26863", + "@id": "_:b9557", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11331", + "@id": "_:b3944", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24726", + "@id": "_:b9554", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11327", + "@id": "_:b3945", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23405", + "@id": "_:b9555", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11329", + "@id": "_:b3950", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "result": { - "@id": "_:b17487", + "@id": "_:b9560", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11323", + "@id": "_:b3946", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11324", + "@id": "_:b9556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11333", + "@id": "_:b3952", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24818", + "@id": "_:b9562", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11334", + "@id": "_:b3951", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "result": { - "@id": "_:b22702", + "@id": "_:b9561", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11330", + "@id": "_:b3941", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "result": { - "@id": "_:b25581", + "@id": "_:b3942", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11328", + "@id": "_:b3949", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001", "result": { - "@id": "_:b24164", + "@id": "_:b9559", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/r001-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/r001-context.jsonld" + }, + "title": "Expands and compacts to document base by default", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/r001-in.jsonld", + "rdfs:comment": "Compact IRI attempts to compact document-relative IRIs" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15216", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b17584", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#compactToRelative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m016-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m016-out.jsonld", - "title": "graph id index map with aliased @none", - "rdfs:comment": "index on @graph and @id with @none", "assertions": [ { - "@id": "_:b15215", + "@id": "_:b17592", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "result": { - "@id": "_:b6012", + "@id": "_:b25775", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15222", + "@id": "_:b17590", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21789", + "@id": "_:b26740", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15217", + "@id": "_:b17587", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16163", + "@id": "_:b20698", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15224", + "@id": "_:b17586", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25295", + "@id": "_:b20604", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15223", + "@id": "_:b17582", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "result": { - "@id": "_:b25294", + "@id": "_:b17583", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15219", + "@id": "_:b17588", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20470", + "@id": "_:b22852", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15218", + "@id": "_:b17589", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20334", + "@id": "_:b24903", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15221", + "@id": "_:b17593", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "result": { - "@id": "_:b25293", + "@id": "_:b26079", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15220", + "@id": "_:b17591", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "result": { - "@id": "_:b20080", + "@id": "_:b26839", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15225", + "@id": "_:b17585", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002", "result": { - "@id": "_:b24933", + "@id": "_:b23971", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/r002-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/r002-context.jsonld" + }, + "title": "Expands and does not compact to document base with compactToRelative false", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/r002-in.jsonld", + "rdfs:comment": "With compactToRelative option set to false, IRIs which could be made relative to the document base are not made relative." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5703", + "@id": "_:b7443", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m017-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m017-out.jsonld", - "title": "string value of type map expands to node reference", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b5705", + "@id": "_:b7451", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "result": { - "@id": "_:b5715", + "@id": "_:b26297", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5708", + "@id": "_:b7450", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5717", + "@id": "_:b7699", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5709", + "@id": "_:b7445", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2999", + "@id": "_:b22204", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5713", + "@id": "_:b7441", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b5721", + "@id": "_:b7442", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5704", + "@id": "_:b7452", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "result": { - "@id": "_:b5714", + "@id": "_:b26804", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5711", + "@id": "_:b7446", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b5719", + "@id": "_:b22878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5707", + "@id": "_:b7447", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5716", + "@id": "_:b25482", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5706", + "@id": "_:b7448", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "result": { - "@id": "_:b4746", + "@id": "_:b7348", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5712", + "@id": "_:b7449", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "result": { - "@id": "_:b5720", + "@id": "_:b26308", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5710", + "@id": "_:b7444", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001", "result": { - "@id": "_:b5718", + "@id": "_:b18185", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/s001-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/s001-context.jsonld" + }, + "title": "@context with single array values", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/s001-in.jsonld", + "rdfs:comment": "@context values may be in an array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6278", + "@id": "_:b5179", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m018-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m018-out.jsonld", - "title": "string value of type map expands to node reference with @type: @id", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b6284", + "@id": "_:b5177", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "result": { - "@id": "_:b15592", + "@id": "_:b5178", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6285", + "@id": "_:b5184", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15593", + "@id": "_:b3138", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6279", + "@id": "_:b5182", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13290", + "@id": "_:b23838", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6286", + "@id": "_:b5181", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15594", + "@id": "_:b21036", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6287", + "@id": "_:b5187", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "result": { - "@id": "_:b15595", + "@id": "_:b24045", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6283", + "@id": "_:b5183", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15591", + "@id": "_:b22307", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6276", + "@id": "_:b5186", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6277", + "@id": "_:b24456", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6280", + "@id": "_:b5180", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "result": { - "@id": "_:b15371", + "@id": "_:b19895", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6282", + "@id": "_:b5185", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "result": { - "@id": "_:b15590", + "@id": "_:b23963", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6281", + "@id": "_:b5188", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002", "result": { - "@id": "_:b15589", + "@id": "_:b6962", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/s002-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/s002-context.jsonld" + }, + "title": "@context with array including @set uses array values", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/s002-in.jsonld", + "rdfs:comment": "@context values may include @set along with another compatible value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16846", + "@id": "_:b2369", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m019-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/m019-out.jsonld", - "title": "string value of type map expands to node reference with @type: @vocab", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b16851", + "@id": "_:b2373", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "result": { - "@id": "_:b21898", + "@id": "_:b26342", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16844", + "@id": "_:b2377", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b16845", + "@id": "_:b10755", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16847", + "@id": "_:b2370", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18136", + "@id": "_:b11718", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16852", + "@id": "_:b2375", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26362", + "@id": "_:b24201", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16855", + "@id": "_:b2372", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "result": { - "@id": "_:b26449", + "@id": "_:b26122", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16850", + "@id": "_:b2378", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25355", + "@id": "_:b23603", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16848", + "@id": "_:b2379", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23028", + "@id": "_:b26388", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16854", + "@id": "_:b2376", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "result": { - "@id": "_:b26846", + "@id": "_:b26747", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16849", + "@id": "_:b2371", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "result": { - "@id": "_:b13127", + "@id": "_:b18926", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16853", + "@id": "_:b2374", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01", "result": { - "@id": "_:b26260", + "@id": "_:b26650", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/tn01-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/tn01-context.jsonld" + }, + "title": "@type: @none does not compact values", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/tn01-in.jsonld", + "rdfs:comment": "@type: @none does not compact values." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15654", + "@id": "_:b12211", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/m020-in.jsonld", - "mf:result": "invalid type mapping", - "title": "string value of type map must not be a literal", - "rdfs:comment": "index on @type", "assertions": [ { - "@id": "_:b15660", + "@id": "_:b12212", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "result": { - "@id": "_:b26281", + "@id": "_:b17298", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15656", + "@id": "_:b12216", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25216", + "@id": "_:b25103", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15655", + "@id": "_:b12213", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20477", + "@id": "_:b17883", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15652", + "@id": "_:b12214", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15653", + "@id": "_:b11023", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15658", + "@id": "_:b12217", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "result": { - "@id": "_:b26515", + "@id": "_:b11523", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15659", + "@id": "_:b12209", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26978", + "@id": "_:b12210", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15657", + "@id": "_:b12218", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26430", + "@id": "_:b9997", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15662", + "@id": "_:b12220", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "result": { - "@id": "_:b25197", + "@id": "_:b26124", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15661", + "@id": "_:b12215", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "result": { - "@id": "_:b17150", + "@id": "_:b23483", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15663", + "@id": "_:b12219", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02", "result": { - "@id": "_:b20122", + "@id": "_:b26811", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/tn02-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/tn02-context.jsonld" + }, + "title": "@type: @none does not use arrays by default", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/tn02-in.jsonld", + "rdfs:comment": "@type: @none honors @container." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", + "@id": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11877", + "@id": "_:b4537", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n001-out.jsonld", - "title": "Expands input using @nest", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b11879", + "@id": "_:b4540", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "result": { - "@id": "_:b22950", + "@id": "_:b9841", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11881", + "@id": "_:b4539", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21732", + "@id": "_:b17117", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11886", + "@id": "_:b4541", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23836", + "@id": "_:b2851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11884", + "@id": "_:b4545", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23163", + "@id": "_:b5090", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11885", + "@id": "_:b4546", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "result": { - "@id": "_:b23787", + "@id": "_:b21591", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11880", + "@id": "_:b4544", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24307", + "@id": "_:b26949", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11883", + "@id": "_:b4542", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b16149", + "@id": "_:b19143", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11882", + "@id": "_:b4535", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "result": { - "@id": "_:b24198", + "@id": "_:b4536", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11878", + "@id": "_:b4543", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "result": { - "@id": "_:b12612", + "@id": "_:b24307", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11875", + "@id": "_:b4538", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03", "result": { - "@id": "_:b11876", + "@id": "_:b8311", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - }, + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/compact/tn03-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/compact/tn03-context.jsonld" + }, + "title": "@type: @none uses arrays with @container: @set", + "testAction": "https://w3c.github.io/json-ld-api/tests/compact/tn03-in.jsonld", + "rdfs:comment": "@type: @none honors @container." + } + ], + "title": "Compaction", + "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", + "rdfs:comment": "These tests implement the requirements for the JSON-LD [Compaction Algorithm](https://www.w3.org/TR/json-ld11-api/#compaction-algorithm)." + }, + { + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest", + "@type": [ + "Report", + "mf:Manifest" + ], + "entries": [ { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3919", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n002-out.jsonld", - "title": "Expands input using aliased @nest", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b3928", + "@id": "_:b8530", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", "result": { - "@id": "_:b23834", + "@id": "_:b11027", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3925", + "@id": "_:b8531", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6326", + "@id": "_:b15790", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3926", + "@id": "_:b8536", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26574", + "@id": "_:b17945", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3927", + "@id": "_:b8528", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18006", + "@id": "_:b8529", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3920", + "@id": "_:b8538", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", + "mode": "earl:automatic", "result": { - "@id": "_:b9802", + "@id": "_:b12608", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b3917", + "@id": "_:b8535", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3918", + "@id": "_:b26040", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3922", + "@id": "_:b8532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21529", + "@id": "_:b23005", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3924", + "@id": "_:b8537", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", "result": { - "@id": "_:b24328", + "@id": "_:b26686", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3923", + "@id": "_:b8533", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", + "mode": "earl:automatic", "result": { - "@id": "_:b23857", + "@id": "_:b25144", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3921", + "@id": "_:b8534", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001", "result": { - "@id": "_:b14656", + "@id": "_:b16664", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0001-out.jsonld", + "title": "Object Lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0001-in.nq", + "rdfs:comment": "Tests generation using different types of objects." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5505", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n003-out.jsonld", - "title": "Appends nested values when property at base and nested", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b5506", + "@id": "_:b1908", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", "result": { - "@id": "_:b17107", + "@id": "_:b14534", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5512", + "@id": "_:b1909", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26701", + "@id": "_:b16991", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5508", + "@id": "_:b1916", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22363", + "@id": "_:b25581", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5509", + "@id": "_:b1906", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16505", + "@id": "_:b1907", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5503", + "@id": "_:b1913", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", + "mode": "earl:automatic", "result": { - "@id": "_:b5504", + "@id": "_:b25900", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b5507", + "@id": "_:b1912", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14945", + "@id": "_:b18781", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5514", + "@id": "_:b1911", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26649", + "@id": "_:b20815", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5510", + "@id": "_:b1910", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", "result": { - "@id": "_:b24406", + "@id": "_:b16206", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5511", + "@id": "_:b1915", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", + "mode": "earl:automatic", "result": { - "@id": "_:b26700", + "@id": "_:b11703", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5513", + "@id": "_:b1914", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002", "result": { - "@id": "_:b18827", + "@id": "_:b26679", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0002-out.jsonld", + "title": "Native Types", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0002-in.nq", + "rdfs:comment": "Do not use native datatypes for xsd:boolean, xsd:integer, and xsd:double by default." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11674", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n004-out.jsonld", - "title": "Appends nested values from all @nest aliases", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b13146", + "@id": "_:b3124", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", "result": { - "@id": "_:b21083", + "@id": "_:b3125", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13144", + "@id": "_:b3131", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26435", + "@id": "_:b24272", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13142", + "@id": "_:b3132", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11704", + "@id": "_:b25694", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13138", + "@id": "_:b3127", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21667", + "@id": "_:b19221", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13137", + "@id": "_:b3128", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", + "mode": "earl:automatic", "result": { - "@id": "_:b16146", + "@id": "_:b25149", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b13141", + "@id": "_:b3130", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24007", + "@id": "_:b19401", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13145", + "@id": "_:b3129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17974", + "@id": "_:b18879", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13139", + "@id": "_:b3133", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", "result": { - "@id": "_:b22288", + "@id": "_:b15455", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13143", + "@id": "_:b3134", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", + "mode": "earl:automatic", "result": { - "@id": "_:b22593", + "@id": "_:b21659", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13140", + "@id": "_:b3126", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003", "result": { - "@id": "_:b20917", + "@id": "_:b10934", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0003-out.jsonld", + "title": "BNodes and references", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0003-in.nq", + "rdfs:comment": "BNode name generation and references between resources." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6587", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n005-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n005-out.jsonld", - "title": "Nested nested containers", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b6593", + "@id": "_:b2632", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", "result": { - "@id": "_:b17913", + "@id": "_:b5506", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6592", + "@id": "_:b2636", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25493", + "@id": "_:b19838", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6589", + "@id": "_:b2633", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21571", + "@id": "_:b11469", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6594", + "@id": "_:b2638", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26721", + "@id": "_:b11914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6588", + "@id": "_:b2639", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", + "mode": "earl:automatic", "result": { - "@id": "_:b11953", + "@id": "_:b21934", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b6585", + "@id": "_:b2637", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6586", + "@id": "_:b21688", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6590", + "@id": "_:b2640", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11485", + "@id": "_:b21935", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6596", + "@id": "_:b2634", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", "result": { - "@id": "_:b26465", + "@id": "_:b16045", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6591", + "@id": "_:b2641", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", + "mode": "earl:automatic", "result": { - "@id": "_:b24542", + "@id": "_:b11942", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6595", + "@id": "_:b2635", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004", "result": { - "@id": "_:b26790", + "@id": "_:b18512", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0004-out.jsonld", + "title": "Lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0004-in.nq", + "rdfs:comment": "Multiple lists with different types of element." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15521", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n006-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n006-out.jsonld", - "title": "Arrays of nested values", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b15529", + "@id": "_:b10711", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", "result": { - "@id": "_:b3668", + "@id": "_:b21003", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b15525", + "@id": "_:b10706", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15535", + "@id": "_:b10707", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15522", + "@id": "_:b10709", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15532", + "@id": "_:b14784", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15531", + "@id": "_:b10712", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15540", + "@id": "_:b21004", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15530", + "@id": "_:b10710", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", + "mode": "earl:automatic", "result": { - "@id": "_:b15539", + "@id": "_:b21002", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b15526", + "@id": "_:b10714", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15536", + "@id": "_:b21005", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15523", + "@id": "_:b10715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15533", + "@id": "_:b21006", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15524", + "@id": "_:b10713", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", "result": { - "@id": "_:b15534", + "@id": "_:b19824", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15528", + "@id": "_:b10716", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", + "mode": "earl:automatic", "result": { - "@id": "_:b15538", + "@id": "_:b21007", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b15527", + "@id": "_:b10708", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005", "result": { - "@id": "_:b15537", + "@id": "_:b17375", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0005-out.jsonld", + "title": "Document with list", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0005-in.nq", + "rdfs:comment": "Uses a named graph containing a list." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5193", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n007-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n007-out.jsonld", - "title": "A nest of arrays", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b5202", + "@id": "_:b17579", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", "result": { - "@id": "_:b23728", + "@id": "_:b19774", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5191", + "@id": "_:b17572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5192", + "@id": "_:b19768", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5198", + "@id": "_:b17574", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23538", + "@id": "_:b19770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5194", + "@id": "_:b17575", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16863", + "@id": "_:b16994", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5201", + "@id": "_:b17573", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", + "mode": "earl:automatic", "result": { - "@id": "_:b22575", + "@id": "_:b19769", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b5200", + "@id": "_:b17577", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26937", + "@id": "_:b19772", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5199", + "@id": "_:b17570", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23169", + "@id": "_:b17571", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5195", + "@id": "_:b17576", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", "result": { - "@id": "_:b19647", + "@id": "_:b19771", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5196", + "@id": "_:b17580", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", + "mode": "earl:automatic", "result": { - "@id": "_:b18740", + "@id": "_:b18779", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5197", + "@id": "_:b17578", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006", "result": { - "@id": "_:b22460", + "@id": "_:b19773", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0006-out.jsonld", + "title": "Two graphs having same subject but different values", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0006-in.nq", + "rdfs:comment": "Ensure that properties and list elements aren't confused between graphs." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17850", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/n008-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/n008-out.jsonld", - "title": "Multiple keys may mapping to @type when nesting", - "rdfs:comment": "Expansion using @nest", "assertions": [ { - "@id": "_:b17851", + "@id": "_:b14132", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", "result": { - "@id": "_:b19995", + "@id": "_:b21624", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17852", + "@id": "_:b14131", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22922", + "@id": "_:b22573", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17857", + "@id": "_:b14126", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23813", + "@id": "_:b22570", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17856", + "@id": "_:b14123", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23461", + "@id": "_:b14124", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17858", + "@id": "_:b14128", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", + "mode": "earl:automatic", "result": { - "@id": "_:b22998", + "@id": "_:b18780", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b17854", + "@id": "_:b14129", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23811", + "@id": "_:b22572", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17848", + "@id": "_:b14130", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17849", + "@id": "_:b19870", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17853", + "@id": "_:b14133", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", "result": { - "@id": "_:b5027", + "@id": "_:b18700", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17855", + "@id": "_:b14125", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", + "mode": "earl:automatic", "result": { - "@id": "_:b23812", + "@id": "_:b21146", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17859", + "@id": "_:b14127", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007", "result": { - "@id": "_:b23814", + "@id": "_:b22571", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0007-out.jsonld", + "title": "Graph with multiple named graphs", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0007-in.nq", + "rdfs:comment": "Testing @graph recursion." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8482", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/p001-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/p001-out.jsonld", - "title": "@version may be specified after first context", - "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version.", "assertions": [ { - "@id": "_:b8480", + "@id": "_:b2520", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", "result": { - "@id": "_:b8481", + "@id": "_:b19844", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8486", + "@id": "_:b2513", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24834", + "@id": "_:b7975", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8489", + "@id": "_:b2517", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26220", + "@id": "_:b25381", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8490", + "@id": "_:b2518", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19054", + "@id": "_:b24965", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8491", + "@id": "_:b2516", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", + "mode": "earl:automatic", "result": { - "@id": "_:b23039", + "@id": "_:b25147", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b8488", + "@id": "_:b2519", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26103", + "@id": "_:b23864", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8484", + "@id": "_:b2511", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23980", + "@id": "_:b2512", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8483", + "@id": "_:b2514", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", "result": { - "@id": "_:b17888", + "@id": "_:b21369", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8487", + "@id": "_:b2521", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", + "mode": "earl:automatic", "result": { - "@id": "_:b13105", + "@id": "_:b7623", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8485", + "@id": "_:b2515", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009", "result": { - "@id": "_:b11792", + "@id": "_:b13935", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0009-out.jsonld", + "title": "List conversion with IRI nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0009-in.nq", + "rdfs:comment": "Preserve IRI list nodes (i.e., not blank nodes) when converting to @list" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10916", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/p002-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/p002-out.jsonld", - "title": "@version setting [1.0, 1.1, 1.0]", - "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version.", "assertions": [ { - "@id": "_:b10921", + "@id": "_:b5006", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", "result": { - "@id": "_:b25390", + "@id": "_:b26928", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10923", + "@id": "_:b5002", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24821", + "@id": "_:b24537", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10922", + "@id": "_:b5000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19857", + "@id": "_:b15947", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10920", + "@id": "_:b5003", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25389", + "@id": "_:b25019", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10924", + "@id": "_:b5005", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", + "mode": "earl:automatic", "result": { - "@id": "_:b25391", + "@id": "_:b26013", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b10917", + "@id": "_:b4999", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11716", + "@id": "_:b12648", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10914", + "@id": "_:b5001", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10915", + "@id": "_:b23374", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10918", + "@id": "_:b4997", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", "result": { - "@id": "_:b23785", + "@id": "_:b4998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10919", + "@id": "_:b5004", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", + "mode": "earl:automatic", "result": { - "@id": "_:b21701", + "@id": "_:b24787", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10925", + "@id": "_:b5007", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010", "result": { - "@id": "_:b18387", + "@id": "_:b15084", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0010-out.jsonld", + "title": "List pattern without rdf:nil", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0010-in.nq", + "rdfs:comment": "Do not convert lists that are not terminated by rdf:nil to @list." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3074", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/p003-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/p003-out.jsonld", - "title": "@version setting [1.1, 1.0]", - "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version.", "assertions": [ { - "@id": "_:b3279", + "@id": "_:b11890", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", "result": { - "@id": "_:b9469", + "@id": "_:b13934", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3274", + "@id": "_:b11893", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21060", + "@id": "_:b26582", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3276", + "@id": "_:b11894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23157", + "@id": "_:b22685", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3281", + "@id": "_:b11891", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6970", + "@id": "_:b22751", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3277", + "@id": "_:b11897", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", + "mode": "earl:automatic", "result": { - "@id": "_:b23288", + "@id": "_:b17877", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b3275", + "@id": "_:b11887", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18540", + "@id": "_:b11888", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3280", + "@id": "_:b11895", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20958", + "@id": "_:b17052", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3273", + "@id": "_:b11892", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", "result": { - "@id": "_:b16123", + "@id": "_:b24725", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3271", + "@id": "_:b11889", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", + "mode": "earl:automatic", "result": { - "@id": "_:b3272", + "@id": "_:b17625", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3278", + "@id": "_:b11896", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011", "result": { - "@id": "_:b20051", + "@id": "_:b26985", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0011-out.jsonld", + "title": "List pattern with extra properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0011-in.nq", + "rdfs:comment": "If additional properties are associated to a list node, the list is only partially converted to @list." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b4475", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/p004-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/p004-out.jsonld", - "title": "@version setting [1.1, 1.0, 1.1]", - "rdfs:comment": "If processing mode is not set through API, it is set by the first context containing @version.", "assertions": [ { - "@id": "_:b4476", + "@id": "_:b10162", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", "result": { - "@id": "_:b15725", + "@id": "_:b23463", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b4479", + "@id": "_:b10166", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23925", + "@id": "_:b26967", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b4481", + "@id": "_:b10161", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24460", + "@id": "_:b22634", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4482", + "@id": "_:b10167", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26406", + "@id": "_:b26634", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b4483", + "@id": "_:b10165", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", + "mode": "earl:automatic", "result": { - "@id": "_:b26896", + "@id": "_:b24006", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b4473", + "@id": "_:b10163", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4474", + "@id": "_:b18684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b4480", + "@id": "_:b10168", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24741", + "@id": "_:b20648", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b4477", + "@id": "_:b10160", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", "result": { - "@id": "_:b21099", + "@id": "_:b20328", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b4484", + "@id": "_:b10164", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", + "mode": "earl:automatic", "result": { - "@id": "_:b10640", + "@id": "_:b26414", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b4478", + "@id": "_:b10169", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012", "result": { - "@id": "_:b23797", + "@id": "_:b23600", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0012-out.jsonld", + "title": "List pattern with cycles", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0012-in.nq", + "rdfs:comment": "Detect lists containing cycles and do not convert them to @list." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7478", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi01-in.jsonld", - "mf:result": "invalid term definition", - "title": "error if @version is json-ld-1.0 for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b7483", + "@id": "_:b10571", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", "result": { - "@id": "_:b20100", + "@id": "_:b22555", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7481", + "@id": "_:b10570", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20098", + "@id": "_:b22554", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7480", + "@id": "_:b10573", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20097", + "@id": "_:b21677", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7479", + "@id": "_:b10569", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15858", + "@id": "_:b22491", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7487", + "@id": "_:b10565", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", + "mode": "earl:automatic", "result": { - "@id": "_:b20103", + "@id": "_:b19547", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b7482", + "@id": "_:b10564", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20099", + "@id": "_:b15028", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7485", + "@id": "_:b10572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20101", + "@id": "_:b22556", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7484", + "@id": "_:b10566", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", "result": { - "@id": "_:b14877", + "@id": "_:b21644", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7486", + "@id": "_:b10567", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", + "mode": "earl:automatic", "result": { - "@id": "_:b20102", + "@id": "_:b22552", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7476", + "@id": "_:b10568", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013", "result": { - "@id": "_:b7477", + "@id": "_:b22553", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0013-out.jsonld", + "title": "List pattern with multiple values of rdf:first", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0013-in.nq", + "rdfs:comment": "Do not convert list nodes to @list if nodes contain more than one value for rdf:first." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12054", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi02-in.jsonld", - "mf:result": "invalid term definition", - "title": "error if @container does not include @index for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b12063", + "@id": "_:b7193", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", "result": { - "@id": "_:b11217", + "@id": "_:b12966", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12058", + "@id": "_:b7191", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23880", + "@id": "_:b7192", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12056", + "@id": "_:b7199", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22060", + "@id": "_:b9020", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12062", + "@id": "_:b7201", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25091", + "@id": "_:b12973", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12052", + "@id": "_:b7195", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", + "mode": "earl:automatic", "result": { - "@id": "_:b12053", + "@id": "_:b12968", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b12055", + "@id": "_:b7197", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14653", + "@id": "_:b12970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12057", + "@id": "_:b7196", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22854", + "@id": "_:b12969", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12059", + "@id": "_:b7194", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", "result": { - "@id": "_:b7112", + "@id": "_:b12967", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12060", + "@id": "_:b7198", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", + "mode": "earl:automatic", "result": { - "@id": "_:b16490", + "@id": "_:b12971", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12061", + "@id": "_:b7200", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014", "result": { - "@id": "_:b25419", + "@id": "_:b12972", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0014-out.jsonld", + "title": "List pattern with multiple values of rdf:rest", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0014-in.nq", + "rdfs:comment": "Do not convert list nodes to @list if nodes contain more than one value for rdf:rest." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14036", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi03-in.jsonld", - "mf:result": "invalid term definition", - "title": "error if @index is a keyword for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b14041", + "@id": "_:b16867", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", "result": { - "@id": "_:b14051", + "@id": "_:b22316", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14045", + "@id": "_:b16865", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14054", + "@id": "_:b4624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14038", + "@id": "_:b16870", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14048", + "@id": "_:b25049", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14046", + "@id": "_:b16872", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14055", + "@id": "_:b16777", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14037", + "@id": "_:b16873", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", + "mode": "earl:automatic", "result": { - "@id": "_:b14047", + "@id": "_:b25051", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b14042", + "@id": "_:b16868", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14052", + "@id": "_:b23960", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14044", + "@id": "_:b16869", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14053", + "@id": "_:b25048", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14039", + "@id": "_:b16866", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", "result": { - "@id": "_:b14049", + "@id": "_:b16152", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14040", + "@id": "_:b16871", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", + "mode": "earl:automatic", "result": { - "@id": "_:b14050", + "@id": "_:b25050", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14043", + "@id": "_:b16874", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015", "result": { - "@id": "_:b4598", + "@id": "_:b17505", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0015-out.jsonld", + "title": "List pattern with IRI rdf:rest", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0015-in.nq", + "rdfs:comment": "Do not convert lists to @list if a list node's rdf:rest is an IRI." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6553", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi04-in.jsonld", - "mf:result": "invalid term definition", - "title": "error if @index is not a string for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b6558", + "@id": "_:b8946", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", "result": { - "@id": "_:b6567", + "@id": "_:b26005", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6554", + "@id": "_:b8939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6564", + "@id": "_:b8940", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6556", + "@id": "_:b8942", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6566", + "@id": "_:b19858", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6563", + "@id": "_:b8948", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6572", + "@id": "_:b15372", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6562", + "@id": "_:b8944", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", + "mode": "earl:automatic", "result": { - "@id": "_:b6571", + "@id": "_:b21240", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b6559", + "@id": "_:b8943", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6568", + "@id": "_:b23035", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6561", + "@id": "_:b8947", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6570", + "@id": "_:b22692", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6560", + "@id": "_:b8949", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", "result": { - "@id": "_:b6569", + "@id": "_:b19545", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6557", + "@id": "_:b8941", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", + "mode": "earl:automatic", "result": { - "@id": "_:b4372", + "@id": "_:b16733", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6555", + "@id": "_:b8945", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016", "result": { - "@id": "_:b6565", + "@id": "_:b13828", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0016-out.jsonld", + "title": "List pattern with type rdf:List", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0016-in.nq", + "rdfs:comment": "List nodes may have a rdf:type rdf:List." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1219", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi05-in.jsonld", - "mf:result": "invalid value object", - "title": "error if attempting to add property to value object for property-valued index", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b1226", + "@id": "_:b4566", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", "result": { - "@id": "_:b19434", + "@id": "_:b7263", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1227", + "@id": "_:b4570", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19435", + "@id": "_:b22249", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1222", + "@id": "_:b4571", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13091", + "@id": "_:b22250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1217", + "@id": "_:b4572", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1218", + "@id": "_:b22251", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1220", + "@id": "_:b4573", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", + "mode": "earl:automatic", "result": { - "@id": "_:b19430", + "@id": "_:b22252", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b1221", + "@id": "_:b4567", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19431", + "@id": "_:b18618", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1228", + "@id": "_:b4568", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19436", + "@id": "_:b13721", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1223", + "@id": "_:b4569", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", "result": { - "@id": "_:b19432", + "@id": "_:b22248", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1225", + "@id": "_:b4574", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", + "mode": "earl:automatic", "result": { - "@id": "_:b3581", + "@id": "_:b22253", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1224", + "@id": "_:b4564", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017", "result": { - "@id": "_:b19433", + "@id": "_:b4565", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0017-out.jsonld", + "title": "Remove duplicate triples", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0017-in.nq", + "rdfs:comment": "Equivalent triples are used only once" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6761", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b17247", + "https://w3c.github.io/json-ld-api/tests/vocab#useNativeTypes": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi06-out.jsonld", - "title": "property-valued index expands to property value, instead of @index (value)", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b6764", + "@id": "_:b17548", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", "result": { - "@id": "_:b23775", + "@id": "_:b19574", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6762", + "@id": "_:b17551", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13380", + "@id": "_:b26785", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6767", + "@id": "_:b17552", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24498", + "@id": "_:b26857", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6769", + "@id": "_:b17545", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2789", + "@id": "_:b17546", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6770", + "@id": "_:b17555", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", + "mode": "earl:automatic", "result": { - "@id": "_:b25522", + "@id": "_:b25441", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b6765", + "@id": "_:b17549", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3891", + "@id": "_:b25293", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6763", + "@id": "_:b17554", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25521", + "@id": "_:b20831", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6759", + "@id": "_:b17553", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", "result": { - "@id": "_:b6760", + "@id": "_:b26249", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6768", + "@id": "_:b17550", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", + "mode": "earl:automatic", "result": { - "@id": "_:b13365", + "@id": "_:b24275", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6766", + "@id": "_:b17547", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018", "result": { - "@id": "_:b23654", + "@id": "_:b20352", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0018-out.jsonld", + "title": "use native types flag set to true", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0018-in.nq", + "rdfs:comment": "Literals with datatype xsd:boolean, xsd:integer, and xsd:double are serialized using native scalar values" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3284", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b12988", + "https://w3c.github.io/json-ld-api/tests/vocab#useRdfType": { + "@value": "true", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi07-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi07-out.jsonld", - "title": "property-valued index appends to property value, instead of @index (value)", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b3292", + "@id": "_:b12992", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", "result": { - "@id": "_:b22651", + "@id": "_:b25463", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3293", + "@id": "_:b12994", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22652", + "@id": "_:b20126", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3285", + "@id": "_:b12990", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17022", + "@id": "_:b23526", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3286", + "@id": "_:b12997", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19331", + "@id": "_:b25260", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3290", + "@id": "_:b12996", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", + "mode": "earl:automatic", "result": { - "@id": "_:b22266", + "@id": "_:b19949", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b3287", + "@id": "_:b12989", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22533", + "@id": "_:b15502", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3289", + "@id": "_:b12991", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22649", + "@id": "_:b15621", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3288", + "@id": "_:b12993", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", "result": { - "@id": "_:b3867", + "@id": "_:b18812", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3291", + "@id": "_:b12995", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", + "mode": "earl:automatic", "result": { - "@id": "_:b22650", + "@id": "_:b25835", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b3282", + "@id": "_:b12986", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019", "result": { - "@id": "_:b3283", + "@id": "_:b12987", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0019-out.jsonld", + "title": "use rdf:type flag set to false", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0019-in.nq", + "rdfs:comment": "Setting useRdfType to true causes an rdf:type predicate to be treated like a normal property, not @type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7777", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi08-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi08-out.jsonld", - "title": "property-valued index expands to property value, instead of @index (node)", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b7780", + "@id": "_:b8802", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", "result": { - "@id": "_:b24677", + "@id": "_:b22872", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7779", + "@id": "_:b8806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11419", + "@id": "_:b26831", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7784", + "@id": "_:b8803", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19956", + "@id": "_:b25966", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7783", + "@id": "_:b8800", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13597", + "@id": "_:b8979", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7786", + "@id": "_:b8801", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", + "mode": "earl:automatic", "result": { - "@id": "_:b24680", + "@id": "_:b19283", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b7775", + "@id": "_:b8799", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7776", + "@id": "_:b20287", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7778", + "@id": "_:b8804", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11514", + "@id": "_:b3478", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7785", + "@id": "_:b8798", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", "result": { - "@id": "_:b24679", + "@id": "_:b19889", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7782", + "@id": "_:b8805", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", + "mode": "earl:automatic", "result": { - "@id": "_:b24678", + "@id": "_:b24768", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7781", + "@id": "_:b8796", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020", "result": { - "@id": "_:b23886", + "@id": "_:b8797", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0020-out.jsonld", + "title": "list with node shared across graphs", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0020-in.nq", + "rdfs:comment": "An otherwise conformant list with a node shared across different lists does not serialize using @list" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2058", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi09-out.jsonld", - "title": "property-valued index appends to property value, instead of @index (node)", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b2063", + "@id": "_:b4383", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", "result": { - "@id": "_:b23410", + "@id": "_:b26382", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2060", + "@id": "_:b4382", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11911", + "@id": "_:b21746", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2056", + "@id": "_:b4381", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2057", + "@id": "_:b24184", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2062", + "@id": "_:b4378", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26433", + "@id": "_:b19849", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2067", + "@id": "_:b4384", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", + "mode": "earl:automatic", "result": { - "@id": "_:b3146", + "@id": "_:b26383", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b2059", + "@id": "_:b4379", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3547", + "@id": "_:b20350", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2061", + "@id": "_:b4380", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24920", + "@id": "_:b20035", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2065", + "@id": "_:b4376", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", "result": { - "@id": "_:b25729", + "@id": "_:b4377", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2064", + "@id": "_:b4386", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", + "mode": "earl:automatic", "result": { - "@id": "_:b24504", + "@id": "_:b24374", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2066", + "@id": "_:b4385", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021", "result": { - "@id": "_:b26586", + "@id": "_:b23132", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0021-out.jsonld", + "title": "list with node shared across graphs (same triple in different graphs)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0021-in.nq", + "rdfs:comment": "If a list node is used in different graphs, it isn't removed and converted to @list" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20694", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi10-out.jsonld", - "title": "property-valued index does not output property for @none", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b20703", + "@id": "_:b12632", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", "result": { - "@id": "_:b25861", + "@id": "_:b24591", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b20697", + "@id": "_:b12630", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23335", + "@id": "_:b14872", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20701", + "@id": "_:b12627", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16404", + "@id": "_:b1271", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20702", + "@id": "_:b12631", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26769", + "@id": "_:b15913", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20698", + "@id": "_:b12633", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", + "mode": "earl:automatic", "result": { - "@id": "_:b20974", + "@id": "_:b22861", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b20695", + "@id": "_:b12626", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20840", + "@id": "_:b12579", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20692", + "@id": "_:b12628", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20693", + "@id": "_:b24589", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20696", + "@id": "_:b12623", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", "result": { - "@id": "_:b8302", + "@id": "_:b12624", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20700", + "@id": "_:b12625", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", + "mode": "earl:automatic", "result": { - "@id": "_:b22994", + "@id": "_:b22729", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b20699", + "@id": "_:b12629", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022", "result": { - "@id": "_:b14564", + "@id": "_:b24590", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0022-out.jsonld", + "title": "list from duplicate triples", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0022-in.nq", + "rdfs:comment": "Duplicate triples for a list node will not prevent @list from being properly generated" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14758", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pi11-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pi11-out.jsonld", - "title": "property-valued index adds property to graph object", - "rdfs:comment": "Expanding index maps where index is a property.", "assertions": [ { - "@id": "_:b14767", + "@id": "_:b1334", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", "result": { - "@id": "_:b24176", + "@id": "_:b26833", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b14760", + "@id": "_:b1327", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8162", + "@id": "_:b1328", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14765", + "@id": "_:b1329", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1354", + "@id": "_:b940", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14762", + "@id": "_:b1337", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24174", + "@id": "_:b18612", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14766", + "@id": "_:b1333", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", + "mode": "earl:automatic", "result": { - "@id": "_:b20472", + "@id": "_:b17433", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b14764", + "@id": "_:b1336", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15767", + "@id": "_:b24880", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14761", + "@id": "_:b1332", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24173", + "@id": "_:b22483", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14756", + "@id": "_:b1330", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", "result": { - "@id": "_:b14757", + "@id": "_:b20521", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14763", + "@id": "_:b1331", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", + "mode": "earl:automatic", "result": { - "@id": "_:b24175", + "@id": "_:b7175", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b14759", + "@id": "_:b1335", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023", "result": { - "@id": "_:b3097", + "@id": "_:b26909", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0023-out.jsonld", + "title": "triple with RDF nil subject", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0023-in.nq", + "rdfs:comment": "Test triple with RDF nil subject" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14439", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr01-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protect a term", - "rdfs:comment": "Check error when overriding a protected term.", "assertions": [ { - "@id": "_:b19839", + "@id": "_:b17636", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", "result": { - "@id": "_:b14792", + "@id": "_:b17646", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19837", + "@id": "_:b17630", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11322", + "@id": "_:b17640", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19829", + "@id": "_:b17632", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19830", + "@id": "_:b17642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19832", + "@id": "_:b17633", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25741", + "@id": "_:b17643", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19834", + "@id": "_:b17631", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", + "mode": "earl:automatic", "result": { - "@id": "_:b26246", + "@id": "_:b17641", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b19833", + "@id": "_:b17634", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22820", + "@id": "_:b17644", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19831", + "@id": "_:b17629", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18615", + "@id": "_:b17639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19835", + "@id": "_:b17635", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", "result": { - "@id": "_:b24594", + "@id": "_:b17645", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19836", + "@id": "_:b17637", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", + "mode": "earl:automatic", "result": { - "@id": "_:b26873", + "@id": "_:b17647", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19838", + "@id": "_:b17638", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024", "result": { - "@id": "_:b26793", + "@id": "_:b17648", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0024-out.jsonld", + "title": "multiple languages for same subject+property+value", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0024-in.nq", + "rdfs:comment": "Uniqness of triples should include the value language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17077", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr02-out.jsonld", - "title": "Set a term to not be protected", - "rdfs:comment": "A term with @protected: false is not protected.", "assertions": [ { - "@id": "_:b17086", + "@id": "_:b11266", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", "result": { - "@id": "_:b24705", + "@id": "_:b23024", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17078", + "@id": "_:b11264", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8573", + "@id": "_:b16235", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17082", + "@id": "_:b11262", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23695", + "@id": "_:b11263", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17075", + "@id": "_:b11269", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17076", + "@id": "_:b3729", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17079", + "@id": "_:b11272", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", + "mode": "earl:automatic", "result": { - "@id": "_:b22958", + "@id": "_:b21355", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b17083", + "@id": "_:b11270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23652", + "@id": "_:b24141", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17085", + "@id": "_:b11267", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24704", + "@id": "_:b13106", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17084", + "@id": "_:b11271", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", "result": { - "@id": "_:b20674", + "@id": "_:b13011", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17081", + "@id": "_:b11268", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", + "mode": "earl:automatic", "result": { - "@id": "_:b23961", + "@id": "_:b24140", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17080", + "@id": "_:b11265", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025", "result": { - "@id": "_:b17148", + "@id": "_:b18191", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0025-out.jsonld", + "title": "multiple types for same subject+property+value", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0025-in.nq", + "rdfs:comment": "Uniqness of triples should include the value type" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2524", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr03-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protect all terms in context", - "rdfs:comment": "A protected context protects all term definitions.", "assertions": [ { - "@id": "_:b2528", + "@id": "_:b8416", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", "result": { - "@id": "_:b18453", + "@id": "_:b8417", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2522", + "@id": "_:b8421", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2523", + "@id": "_:b18561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2527", + "@id": "_:b8419", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23644", + "@id": "_:b1520", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2533", + "@id": "_:b8424", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23665", + "@id": "_:b18564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2532", + "@id": "_:b8426", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", + "mode": "earl:automatic", "result": { - "@id": "_:b26604", + "@id": "_:b18566", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b2531", + "@id": "_:b8423", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21527", + "@id": "_:b18563", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2525", + "@id": "_:b8425", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21098", + "@id": "_:b18565", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2529", + "@id": "_:b8422", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", "result": { - "@id": "_:b25260", + "@id": "_:b18562", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2526", + "@id": "_:b8420", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", + "mode": "earl:automatic", "result": { - "@id": "_:b22684", + "@id": "_:b18560", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2530", + "@id": "_:b8418", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026", "result": { - "@id": "_:b8149", + "@id": "_:b10826", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/0026-out.jsonld", + "title": "triple with rdf:first property and rdf:nil value", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/0026-in.nq", + "rdfs:comment": "Check list generation with rdf:first property and rdf:nil value." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8928", + "@id": "_:b20116", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr04-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Do not protect term with @protected: false", - "rdfs:comment": "A protected context does not protect terms with @protected: false.", "assertions": [ { - "@id": "_:b8934", + "@id": "_:b20118", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", "result": { - "@id": "_:b24356", + "@id": "_:b23920", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b8932", + "@id": "_:b20119", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24355", + "@id": "_:b24089", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8930", + "@id": "_:b20123", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24354", + "@id": "_:b2820", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8933", + "@id": "_:b20114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12306", + "@id": "_:b20115", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8936", + "@id": "_:b20122", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", + "mode": "earl:automatic", "result": { - "@id": "_:b14693", + "@id": "_:b24092", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b8926", + "@id": "_:b20117", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8927", + "@id": "_:b14473", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8937", + "@id": "_:b20121", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24357", + "@id": "_:b24091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8931", + "@id": "_:b20120", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", "result": { - "@id": "_:b9108", + "@id": "_:b24090", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8929", + "@id": "_:b20124", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", + "mode": "earl:automatic", "result": { - "@id": "_:b14967", + "@id": "_:b24093", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b8935", + "@id": "_:b20125", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01", "result": { - "@id": "_:b24233", + "@id": "_:b24094", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di01-out.jsonld", + "title": "rdfDirection: null with i18n literal with direction and no language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di01-in.nq", + "rdfs:comment": "Does not parse i18n datatype without proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12717", + "@id": "_:b5717", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr05-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Clear active context with protected terms from an embedded context", - "rdfs:comment": "The Active context be set to null from an embedded context.", "assertions": [ { - "@id": "_:b12726", + "@id": "_:b5723", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", "result": { - "@id": "_:b3669", + "@id": "_:b25662", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12719", + "@id": "_:b5715", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25030", + "@id": "_:b5716", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12718", + "@id": "_:b5718", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21684", + "@id": "_:b11685", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12722", + "@id": "_:b5726", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25033", + "@id": "_:b26587", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12723", + "@id": "_:b5722", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", + "mode": "earl:automatic", "result": { - "@id": "_:b25034", + "@id": "_:b25931", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b12720", + "@id": "_:b5719", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25031", + "@id": "_:b22691", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12725", + "@id": "_:b5720", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25035", + "@id": "_:b24078", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12724", + "@id": "_:b5721", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", "result": { - "@id": "_:b21361", + "@id": "_:b25468", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12715", + "@id": "_:b5724", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", + "mode": "earl:automatic", "result": { - "@id": "_:b12716", + "@id": "_:b7921", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b12721", + "@id": "_:b5725", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02", "result": { - "@id": "_:b25032", + "@id": "_:b22621", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di02-out.jsonld", + "title": "rdfDirection: null with i18n literal with direction and language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di02-in.nq", + "rdfs:comment": "Does not parse i18n datatype without proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9193", + "@id": "_:b25116", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr06-out.jsonld", - "title": "Clear active context of protected terms from a term.", - "rdfs:comment": "The Active context may be set to null from a scoped context of a term.", "assertions": [ { - "@id": "_:b9196", + "@id": "_:b25125", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", "result": { - "@id": "_:b21989", + "@id": "_:b20034", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9202", + "@id": "_:b25114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20736", + "@id": "_:b25115", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9191", + "@id": "_:b25122", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9192", + "@id": "_:b18455", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9194", + "@id": "_:b25121", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12265", + "@id": "_:b26026", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9197", + "@id": "_:b25117", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", + "mode": "earl:automatic", "result": { - "@id": "_:b22718", + "@id": "_:b12646", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b9200", + "@id": "_:b25118", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25064", + "@id": "_:b26230", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9198", + "@id": "_:b25123", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23964", + "@id": "_:b26237", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9195", + "@id": "_:b25119", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", "result": { - "@id": "_:b20420", + "@id": "_:b15349", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9201", + "@id": "_:b25124", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", + "mode": "earl:automatic", "result": { - "@id": "_:b25065", + "@id": "_:b25204", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9199", + "@id": "_:b25120", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03", "result": { - "@id": "_:b25063", + "@id": "_:b26133", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di03-out.jsonld", + "title": "rdfDirection: null with compound literal with direction and no language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di03-in.nq", + "rdfs:comment": "Does not parse compound literal without proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6878", + "@id": "_:b2971", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr08-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Term with protected scoped context.", - "rdfs:comment": "A scoped context can protect terms.", "assertions": [ { - "@id": "_:b6881", + "@id": "_:b2972", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", "result": { - "@id": "_:b6891", + "@id": "_:b17594", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6883", + "@id": "_:b2974", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6893", + "@id": "_:b22494", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6888", + "@id": "_:b2977", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6898", + "@id": "_:b24137", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6880", + "@id": "_:b2979", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6890", + "@id": "_:b25600", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6885", + "@id": "_:b2980", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", + "mode": "earl:automatic", "result": { - "@id": "_:b6895", + "@id": "_:b18079", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b6879", + "@id": "_:b2976", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6889", + "@id": "_:b24469", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6887", + "@id": "_:b2969", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6897", + "@id": "_:b2970", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6886", + "@id": "_:b2973", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", "result": { - "@id": "_:b6896", + "@id": "_:b18109", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6884", + "@id": "_:b2978", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", + "mode": "earl:automatic", "result": { - "@id": "_:b6894", + "@id": "_:b26052", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6882", + "@id": "_:b2975", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04", "result": { - "@id": "_:b6892", + "@id": "_:b22739", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di04-out.jsonld", + "title": "rdfDirection: null with compound literal with direction and language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di04-in.nq", + "rdfs:comment": "Does not parse compound literal without proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19738", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b7137", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr09-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Attempt to redefine term in other protected context.", - "rdfs:comment": "A protected term cannot redefine another protected term.", "assertions": [ { - "@id": "_:b19747", + "@id": "_:b7142", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", "result": { - "@id": "_:b23171", + "@id": "_:b18714", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19741", + "@id": "_:b7140", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24916", + "@id": "_:b18712", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19742", + "@id": "_:b7145", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22942", + "@id": "_:b18717", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19745", + "@id": "_:b7146", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25378", + "@id": "_:b18718", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19740", + "@id": "_:b7144", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", + "mode": "earl:automatic", "result": { - "@id": "_:b23430", + "@id": "_:b18716", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b19743", + "@id": "_:b7135", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b9070", + "@id": "_:b7136", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19748", + "@id": "_:b7141", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11061", + "@id": "_:b18713", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19744", + "@id": "_:b7139", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", "result": { - "@id": "_:b25377", + "@id": "_:b10769", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19746", + "@id": "_:b7138", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", + "mode": "earl:automatic", "result": { - "@id": "_:b25379", + "@id": "_:b4968", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b19739", + "@id": "_:b7143", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05", "result": { - "@id": "_:b19924", + "@id": "_:b18715", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di05-out.jsonld", + "title": "rdfDirection: i18n-datatype with i18n literal with direction and no language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di05-in.nq", + "rdfs:comment": "Parses i18n datatype with proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6262", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b9420", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr10-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr10-out.jsonld", - "title": "Simple protected and unprotected terms.", - "rdfs:comment": "Simple protected and unprotected terms.", "assertions": [ { - "@id": "_:b6271", + "@id": "_:b9430", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", "result": { - "@id": "_:b25480", + "@id": "_:b25497", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6264", + "@id": "_:b9423", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21242", + "@id": "_:b25113", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6270", + "@id": "_:b9425", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26434", + "@id": "_:b26033", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6263", + "@id": "_:b9428", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9233", + "@id": "_:b23349", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6266", + "@id": "_:b9427", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", + "mode": "earl:automatic", "result": { - "@id": "_:b4471", + "@id": "_:b26558", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b6265", + "@id": "_:b9424", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24099", + "@id": "_:b25499", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6267", + "@id": "_:b9421", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23474", + "@id": "_:b20851", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6269", + "@id": "_:b9429", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", "result": { - "@id": "_:b16822", + "@id": "_:b25295", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6268", + "@id": "_:b9426", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", + "mode": "earl:automatic", "result": { - "@id": "_:b16770", + "@id": "_:b20543", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b6260", + "@id": "_:b9422", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06", "result": { - "@id": "_:b6261", + "@id": "_:b20327", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di06-out.jsonld", + "title": "rdfDirection: i18n-datatype with i18n literal with direction and language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di06-in.nq", + "rdfs:comment": "Parses i18n datatype with proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11742", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b8889", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr11-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Fail to override protected term.", - "rdfs:comment": "Fail to override protected term.", "assertions": [ { - "@id": "_:b11748", + "@id": "_:b8891", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", "result": { - "@id": "_:b24505", + "@id": "_:b20863", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11746", + "@id": "_:b8893", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4485", + "@id": "_:b24330", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11751", + "@id": "_:b8895", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23788", + "@id": "_:b23853", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11745", + "@id": "_:b8894", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9749", + "@id": "_:b23634", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11743", + "@id": "_:b8899", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", + "mode": "earl:automatic", "result": { - "@id": "_:b15198", + "@id": "_:b19422", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b11747", + "@id": "_:b8897", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25598", + "@id": "_:b26593", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11740", + "@id": "_:b8892", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11741", + "@id": "_:b23939", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11744", + "@id": "_:b8898", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", "result": { - "@id": "_:b8147", + "@id": "_:b6223", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11749", + "@id": "_:b8896", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", + "mode": "earl:automatic", "result": { - "@id": "_:b23121", + "@id": "_:b26521", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b11750", + "@id": "_:b8890", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07", "result": { - "@id": "_:b26881", + "@id": "_:b13877", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di07-out.jsonld", + "title": "rdfDirection: i18n-datatype with compound literal with direction and no language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di07-in.nq", + "rdfs:comment": "Does not parse compound literal without proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17175", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b8701", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "i18n-datatype" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr12-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Scoped context fail to override protected term.", - "rdfs:comment": "Scoped context fail to override protected term.", "assertions": [ { - "@id": "_:b17183", + "@id": "_:b8709", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", "result": { - "@id": "_:b19229", + "@id": "_:b26139", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b17181", + "@id": "_:b8703", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23712", + "@id": "_:b20144", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17179", + "@id": "_:b8704", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24136", + "@id": "_:b14510", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17182", + "@id": "_:b8710", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24137", + "@id": "_:b26658", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17177", + "@id": "_:b8705", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", + "mode": "earl:automatic", "result": { - "@id": "_:b23359", + "@id": "_:b23125", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b17176", + "@id": "_:b8706", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21523", + "@id": "_:b17655", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17173", + "@id": "_:b8700", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17174", + "@id": "_:b3493", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17178", + "@id": "_:b8708", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", "result": { - "@id": "_:b24135", + "@id": "_:b21201", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17180", + "@id": "_:b8702", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", + "mode": "earl:automatic", "result": { - "@id": "_:b18545", + "@id": "_:b16234", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b17184", + "@id": "_:b8707", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08", "result": { - "@id": "_:b22971", + "@id": "_:b25940", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di08-out.jsonld", + "title": "rdfDirection: i18n-datatype with compound literal with direction and language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di08-in.nq", + "rdfs:comment": "Does not parse compound literal without proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13447", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b19534", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr13-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr13-out.jsonld", - "title": "Override unprotected term.", - "rdfs:comment": "Override unprotected term.", "assertions": [ { - "@id": "_:b13450", + "@id": "_:b19543", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", "result": { - "@id": "_:b23657", + "@id": "_:b21994", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13453", + "@id": "_:b19540", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11395", + "@id": "_:b20052", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13445", + "@id": "_:b19541", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13446", + "@id": "_:b21993", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13454", + "@id": "_:b19537", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26625", + "@id": "_:b21991", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13452", + "@id": "_:b19538", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", + "mode": "earl:automatic", "result": { - "@id": "_:b22410", + "@id": "_:b16520", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b13451", + "@id": "_:b19532", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26210", + "@id": "_:b19533", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13455", + "@id": "_:b19535", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26795", + "@id": "_:b21499", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13449", + "@id": "_:b19536", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", "result": { - "@id": "_:b21517", + "@id": "_:b21990", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13448", + "@id": "_:b19542", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", + "mode": "earl:automatic", "result": { - "@id": "_:b18056", + "@id": "_:b5592", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13456", + "@id": "_:b19539", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09", "result": { - "@id": "_:b26690", + "@id": "_:b21992", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di09-out.jsonld", + "title": "rdfDirection: compound-literal with i18n literal with direction and no language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di09-in.nq", + "rdfs:comment": "Does not parse i18n datatype without proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b997", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b6438", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr14-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr14-out.jsonld", - "title": "Clear protection with null context.", - "rdfs:comment": "Clear protection with null context.", "assertions": [ { - "@id": "_:b1000", + "@id": "_:b6445", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", "result": { - "@id": "_:b3003", + "@id": "_:b25195", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b998", + "@id": "_:b6439", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3001", + "@id": "_:b10171", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1001", + "@id": "_:b6442", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3004", + "@id": "_:b25267", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1004", + "@id": "_:b6447", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3007", + "@id": "_:b26753", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1006", + "@id": "_:b6440", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", + "mode": "earl:automatic", "result": { - "@id": "_:b3009", + "@id": "_:b17874", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b999", + "@id": "_:b6444", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3002", + "@id": "_:b26742", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b995", + "@id": "_:b6436", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b996", + "@id": "_:b6437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1005", + "@id": "_:b6446", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", "result": { - "@id": "_:b3008", + "@id": "_:b26807", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1002", + "@id": "_:b6443", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", + "mode": "earl:automatic", "result": { - "@id": "_:b3005", + "@id": "_:b21938", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1003", + "@id": "_:b6441", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10", "result": { - "@id": "_:b3006", + "@id": "_:b4868", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di10-out.jsonld", + "title": "rdfDirection: compound-literal with i18n literal with direction and language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di10-in.nq", + "rdfs:comment": "Does not parse i18n datatype without proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10904", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b4845", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr15-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr15-out.jsonld", - "title": "Clear protection with array with null context", - "rdfs:comment": "Clear protection with array with null context", "assertions": [ { - "@id": "_:b10907", + "@id": "_:b4851", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", "result": { - "@id": "_:b24616", + "@id": "_:b26332", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10909", + "@id": "_:b4843", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26653", + "@id": "_:b4844", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10908", + "@id": "_:b4846", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", "result": { - "@id": "_:b24630", + "@id": "_:b6925", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b10911", + "@id": "_:b4849", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", "result": { - "@id": "_:b11765", + "@id": "_:b23233", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": null }, { - "@id": "_:b10912", + "@id": "_:b4848", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", + "mode": "earl:automatic", "result": { - "@id": "_:b11968", + "@id": "_:b17328", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b10905", + "@id": "_:b4853", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17252", + "@id": "_:b5587", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10906", + "@id": "_:b4854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25423", + "@id": "_:b15517", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10910", + "@id": "_:b4850", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", "result": { - "@id": "_:b26733", + "@id": "_:b19093", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10902", + "@id": "_:b4847", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", + "mode": "earl:automatic", "result": { - "@id": "_:b10903", + "@id": "_:b18261", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10913", + "@id": "_:b4852", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11", "result": { - "@id": "_:b24763", + "@id": "_:b26524", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di11-out.jsonld", + "title": "rdfDirection: compound-literal with compound literal with direction and no language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di11-in.nq", + "rdfs:comment": "Parses compound literal with proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2254", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" + "@id": "_:b7469", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "https://w3c.github.io/json-ld-api/tests/vocab#normative": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection": "compound-literal" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr16-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr16-out.jsonld", - "title": "Override protected terms after null.", - "rdfs:comment": "Override protected terms after null.", "assertions": [ { - "@id": "_:b2261", + "@id": "_:b7471", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", "result": { - "@id": "_:b19968", + "@id": "_:b16259", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2258", + "@id": "_:b7475", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23426", + "@id": "_:b16262", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2257", + "@id": "_:b7473", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", "result": { - "@id": "_:b21045", + "@id": "_:b16261", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": null }, { - "@id": "_:b2263", + "@id": "_:b7476", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", "result": { - "@id": "_:b23011", + "@id": "_:b16263", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": null }, { - "@id": "_:b2256", + "@id": "_:b7477", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", + "mode": "earl:automatic", "result": { - "@id": "_:b19184", + "@id": "_:b9252", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b2260", + "@id": "_:b7472", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25257", + "@id": "_:b16260", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2262", + "@id": "_:b7478", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26800", + "@id": "_:b16264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2255", + "@id": "_:b7474", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", "result": { - "@id": "_:b15386", + "@id": "_:b16175", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2259", + "@id": "_:b7467", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", + "mode": "earl:automatic", "result": { - "@id": "_:b24389", + "@id": "_:b7468", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2252", + "@id": "_:b7470", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12", "result": { - "@id": "_:b2253", + "@id": "_:b16258", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/di12-out.jsonld", + "title": "rdfDirection: compound-literal with compound literal with direction and language", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/di12-in.nq", + "rdfs:comment": "Parses compound literal with proper option." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5933", + "@id": "_:b4002", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr17-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Fail to override protected terms with type.", - "rdfs:comment": "Fail to override protected terms with type.", "assertions": [ { - "@id": "_:b5938", + "@id": "_:b4007", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", "result": { - "@id": "_:b23784", + "@id": "_:b10978", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5931", + "@id": "_:b4000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5932", + "@id": "_:b4001", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5942", + "@id": "_:b4004", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19661", + "@id": "_:b10975", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5940", + "@id": "_:b4005", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25421", + "@id": "_:b10976", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5935", + "@id": "_:b4009", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", + "mode": "earl:automatic", "result": { - "@id": "_:b21043", + "@id": "_:b10980", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b5939", + "@id": "_:b4006", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24586", + "@id": "_:b10977", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5937", + "@id": "_:b4003", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22443", + "@id": "_:b10974", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5936", + "@id": "_:b4010", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", "result": { - "@id": "_:b21429", + "@id": "_:b10981", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5941", + "@id": "_:b4011", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", + "mode": "earl:automatic", "result": { - "@id": "_:b9231", + "@id": "_:b10982", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5934", + "@id": "_:b4008", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01", "result": { - "@id": "_:b11691", + "@id": "_:b10979", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js01-out.jsonld", + "title": "JSON literal (boolean true)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js01-in.nq", + "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean true)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5142", + "@id": "_:b15320", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr18-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Fail to override protected terms with type+null+ctx.", - "rdfs:comment": "Fail to override protected terms with type+null+ctx.", "assertions": [ { - "@id": "_:b5145", + "@id": "_:b15328", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", "result": { - "@id": "_:b13636", + "@id": "_:b18683", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5149", + "@id": "_:b15327", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13640", + "@id": "_:b23819", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5146", + "@id": "_:b15322", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13637", + "@id": "_:b5573", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5144", + "@id": "_:b15324", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13635", + "@id": "_:b8980", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5143", + "@id": "_:b15318", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", + "mode": "earl:automatic", "result": { - "@id": "_:b7809", + "@id": "_:b15319", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b5148", + "@id": "_:b15321", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13639", + "@id": "_:b18625", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5150", + "@id": "_:b15329", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13641", + "@id": "_:b19365", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5151", + "@id": "_:b15323", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", "result": { - "@id": "_:b13642", + "@id": "_:b22388", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5147", + "@id": "_:b15325", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", + "mode": "earl:automatic", "result": { - "@id": "_:b13638", + "@id": "_:b23817", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5140", + "@id": "_:b15326", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02", "result": { - "@id": "_:b5141", + "@id": "_:b23818", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js02-out.jsonld", + "title": "JSON literal (boolean false)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js02-in.nq", + "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean false)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13670", + "@id": "_:b17977", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr19-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr19-out.jsonld", - "title": "Mix of protected and unprotected terms.", - "rdfs:comment": "Mix of protected and unprotected terms.", "assertions": [ { - "@id": "_:b13678", + "@id": "_:b17982", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", "result": { - "@id": "_:b26230", + "@id": "_:b20130", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13676", + "@id": "_:b17981", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22751", + "@id": "_:b20129", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13679", + "@id": "_:b17980", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24924", + "@id": "_:b20128", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13672", + "@id": "_:b17984", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11560", + "@id": "_:b9931", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13675", + "@id": "_:b17978", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", + "mode": "earl:automatic", "result": { - "@id": "_:b23014", + "@id": "_:b20127", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b13674", + "@id": "_:b17983", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6256", + "@id": "_:b20131", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13673", + "@id": "_:b17986", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21763", + "@id": "_:b20132", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13677", + "@id": "_:b17985", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", "result": { - "@id": "_:b25148", + "@id": "_:b18141", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13671", + "@id": "_:b17975", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", + "mode": "earl:automatic", "result": { - "@id": "_:b16070", + "@id": "_:b17976", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13668", + "@id": "_:b17979", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03", "result": { - "@id": "_:b13669", + "@id": "_:b14281", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js03-out.jsonld", + "title": "JSON literal (double)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js03-in.nq", + "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (double)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5792", + "@id": "_:b50", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr20-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Fail with mix of protected and unprotected terms with type+null+ctx.", - "rdfs:comment": "Fail with mix of protected and unprotected terms with type+null+ctx.", "assertions": [ { - "@id": "_:b5795", + "@id": "_:b55", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", "result": { - "@id": "_:b18982", + "@id": "_:b65", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5796", + "@id": "_:b51", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18983", + "@id": "_:b61", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5802", + "@id": "_:b52", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18987", + "@id": "_:b62", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5793", + "@id": "_:b57", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12431", + "@id": "_:b67", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5798", + "@id": "_:b58", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", + "mode": "earl:automatic", "result": { - "@id": "_:b18984", + "@id": "_:b68", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b5794", + "@id": "_:b53", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18981", + "@id": "_:b63", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5797", + "@id": "_:b56", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2655", + "@id": "_:b66", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5801", + "@id": "_:b59", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", "result": { - "@id": "_:b18986", + "@id": "_:b69", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5800", + "@id": "_:b54", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", + "mode": "earl:automatic", "result": { - "@id": "_:b3812", + "@id": "_:b64", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b5799", + "@id": "_:b60", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04", "result": { - "@id": "_:b18985", + "@id": "_:b70", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js04-out.jsonld", + "title": "JSON literal (double-zero)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js04-in.nq", + "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (double-zero)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1697", + "@id": "_:b2438", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr21-in.jsonld", - "mf:result": "invalid context nullification", - "title": "Fail with mix of protected and unprotected terms with type+null.", - "rdfs:comment": "Fail with mix of protected and unprotected terms with type+null.", "assertions": [ { - "@id": "_:b1703", + "@id": "_:b2440", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", "result": { - "@id": "_:b25178", + "@id": "_:b4562", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1702", + "@id": "_:b2444", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23216", + "@id": "_:b24836", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1704", + "@id": "_:b2436", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22286", + "@id": "_:b2437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1707", + "@id": "_:b2446", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22433", + "@id": "_:b21239", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1698", + "@id": "_:b2443", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", + "mode": "earl:automatic", "result": { - "@id": "_:b5608", + "@id": "_:b24445", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b1701", + "@id": "_:b2439", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21988", + "@id": "_:b16424", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1705", + "@id": "_:b2441", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25405", + "@id": "_:b17841", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1699", + "@id": "_:b2442", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", "result": { - "@id": "_:b15397", + "@id": "_:b7844", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1706", + "@id": "_:b2447", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", + "mode": "earl:automatic", "result": { - "@id": "_:b22824", + "@id": "_:b5055", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b1700", + "@id": "_:b2445", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05", "result": { - "@id": "_:b16503", + "@id": "_:b26829", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js05-out.jsonld", + "title": "JSON literal (integer)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js05-in.nq", + "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (integer)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9869", + "@id": "_:b16577", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr22-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr22-out.jsonld", - "title": "Check legal overriding of type-scoped protected term from nested node.", - "rdfs:comment": "Check legal overriding of type-scoped protected term from nested node.", "assertions": [ { - "@id": "_:b9876", + "@id": "_:b18504", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", "result": { - "@id": "_:b24437", + "@id": "_:b23659", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9870", + "@id": "_:b18502", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21396", + "@id": "_:b23657", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9877", + "@id": "_:b18500", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21553", + "@id": "_:b17782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9875", + "@id": "_:b18505", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26814", + "@id": "_:b19847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9871", + "@id": "_:b18506", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", + "mode": "earl:automatic", "result": { - "@id": "_:b22437", + "@id": "_:b23660", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b9874", + "@id": "_:b18497", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24443", + "@id": "_:b18359", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9868", + "@id": "_:b18503", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7952", + "@id": "_:b23658", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9872", + "@id": "_:b18498", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", "result": { - "@id": "_:b22959", + "@id": "_:b19927", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9878", + "@id": "_:b18499", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", + "mode": "earl:automatic", "result": { - "@id": "_:b21558", + "@id": "_:b23656", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b9873", + "@id": "_:b18501", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06", "result": { - "@id": "_:b25795", + "@id": "_:b23327", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js06-out.jsonld", + "title": "JSON literal (object)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js06-in.nq", + "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (object)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15577", + "@id": "_:b2217", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr23-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr23-out.jsonld", - "title": "Allows redefinition of protected alias term with same definition.", - "rdfs:comment": "Allows redefinition of protected alias term with same definition.", "assertions": [ { - "@id": "_:b18677", + "@id": "_:b2221", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", "result": { - "@id": "_:b16204", + "@id": "_:b10560", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18675", + "@id": "_:b2226", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26648", + "@id": "_:b23303", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18668", + "@id": "_:b2222", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18669", + "@id": "_:b20599", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18671", + "@id": "_:b2224", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15688", + "@id": "_:b23301", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18678", + "@id": "_:b2227", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", + "mode": "earl:automatic", "result": { - "@id": "_:b26420", + "@id": "_:b23304", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b18674", + "@id": "_:b2220", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22284", + "@id": "_:b18067", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18670", + "@id": "_:b2219", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5459", + "@id": "_:b8991", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18673", + "@id": "_:b2218", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", "result": { - "@id": "_:b24517", + "@id": "_:b2916", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18672", + "@id": "_:b2225", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", + "mode": "earl:automatic", "result": { - "@id": "_:b18796", + "@id": "_:b23302", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18676", + "@id": "_:b2223", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07", "result": { - "@id": "_:b22562", + "@id": "_:b23300", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js07-out.jsonld", + "title": "JSON literal (array)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js07-in.nq", + "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (array)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10216", + "@id": "_:b19601", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr24-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr24-out.jsonld", - "title": "Allows redefinition of protected prefix term with same definition.", - "rdfs:comment": "Allows redefinition of protected prefix term with same definition.", "assertions": [ { - "@id": "_:b10220", + "@id": "_:b19605", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", "result": { - "@id": "_:b22212", + "@id": "_:b26317", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10218", + "@id": "_:b19599", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23707", + "@id": "_:b19600", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10219", + "@id": "_:b19604", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18579", + "@id": "_:b21313", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10214", + "@id": "_:b19609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10215", + "@id": "_:b24983", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10225", + "@id": "_:b19607", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", + "mode": "earl:automatic", "result": { - "@id": "_:b24335", + "@id": "_:b22810", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b10222", + "@id": "_:b19602", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18416", + "@id": "_:b21038", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10217", + "@id": "_:b19606", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19902", + "@id": "_:b26381", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10224", + "@id": "_:b19608", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", "result": { - "@id": "_:b24365", + "@id": "_:b26787", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10223", + "@id": "_:b19603", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", + "mode": "earl:automatic", "result": { - "@id": "_:b11986", + "@id": "_:b24758", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10221", + "@id": "_:b19610", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08", "result": { - "@id": "_:b24364", + "@id": "_:b19686", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid JSON literal", + "title": "Invalid JSON literal (bare-word)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js08-in.nq", + "rdfs:comment": "Processors must generate an error when deserializing an invalid JSON literal." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13081", + "@id": "_:b11918", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr25-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr25-out.jsonld", - "title": "Allows redefinition of terms with scoped contexts using same definitions.", - "rdfs:comment": "Allows redefinition of terms with scoped contexts using same definitions.", "assertions": [ { - "@id": "_:b13082", + "@id": "_:b11922", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", "result": { - "@id": "_:b20842", + "@id": "_:b25823", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13083", + "@id": "_:b11916", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21400", + "@id": "_:b11917", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13079", + "@id": "_:b11926", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13080", + "@id": "_:b18110", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13088", + "@id": "_:b11923", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26151", + "@id": "_:b22403", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13084", + "@id": "_:b11924", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", + "mode": "earl:automatic", "result": { - "@id": "_:b22036", + "@id": "_:b16729", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b13085", + "@id": "_:b11921", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16145", + "@id": "_:b23865", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13087", + "@id": "_:b11925", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25623", + "@id": "_:b26322", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13089", + "@id": "_:b11920", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", "result": { - "@id": "_:b22911", + "@id": "_:b22638", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13086", + "@id": "_:b11919", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", + "mode": "earl:automatic", "result": { - "@id": "_:b24128", + "@id": "_:b18796", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b13090", + "@id": "_:b11927", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09", "result": { - "@id": "_:b18401", + "@id": "_:b10881", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "invalid JSON literal", + "title": "Invalid JSON literal (invalid structure)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js09-in.nq", + "rdfs:comment": "Processors must generate an error when deserializing an invalid JSON literal." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7941", + "@id": "_:b19425", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr26-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Fails on redefinition of terms with scoped contexts using different definitions.", - "rdfs:comment": "Fails on redefinition of terms with scoped contexts using different definitions.", "assertions": [ { - "@id": "_:b7950", + "@id": "_:b19427", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", "result": { - "@id": "_:b21764", + "@id": "_:b24375", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7945", + "@id": "_:b19431", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25709", + "@id": "_:b25539", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7947", + "@id": "_:b19433", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24859", + "@id": "_:b19663", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7944", + "@id": "_:b19434", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24707", + "@id": "_:b19592", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7943", + "@id": "_:b19430", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", + "mode": "earl:automatic", "result": { - "@id": "_:b20768", + "@id": "_:b26106", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b7939", + "@id": "_:b19432", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b7940", + "@id": "_:b1314", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7942", + "@id": "_:b19428", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19396", + "@id": "_:b24816", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7949", + "@id": "_:b19426", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", "result": { - "@id": "_:b23503", + "@id": "_:b19439", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7946", + "@id": "_:b19429", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", + "mode": "earl:automatic", "result": { - "@id": "_:b25897", + "@id": "_:b25161", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b7948", + "@id": "_:b19423", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10", "result": { - "@id": "_:b21593", + "@id": "_:b19424", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js10-out.jsonld", + "title": "JSON literal (string)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js10-in.nq", + "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (string)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18257", + "@id": "_:b17437", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr27-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr27-out.jsonld", - "title": "Allows redefinition of protected alias term with same definition modulo protected flag.", - "rdfs:comment": "Allows redefinition of protected alias term with same definition modulo protected flag.", "assertions": [ { - "@id": "_:b18265", + "@id": "_:b17439", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", "result": { - "@id": "_:b17687", + "@id": "_:b25280", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18262", + "@id": "_:b17436", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18270", + "@id": "_:b9059", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18261", + "@id": "_:b17442", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18269", + "@id": "_:b25446", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18259", + "@id": "_:b17446", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14533", + "@id": "_:b23087", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18258", + "@id": "_:b17445", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", + "mode": "earl:automatic", "result": { - "@id": "_:b8628", + "@id": "_:b25449", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b18264", + "@id": "_:b17443", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18271", + "@id": "_:b25447", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18267", + "@id": "_:b17440", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18273", + "@id": "_:b25445", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18263", + "@id": "_:b17444", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", "result": { - "@id": "_:b6208", + "@id": "_:b25448", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18260", + "@id": "_:b17438", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", + "mode": "earl:automatic", "result": { - "@id": "_:b18268", + "@id": "_:b22964", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18266", + "@id": "_:b17441", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11", "result": { - "@id": "_:b18272", + "@id": "_:b21344", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/js11-out.jsonld", + "title": "JSON literal (null)", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/js11-in.nq", + "rdfs:comment": "Tests creating property with rdf:type rdf:JSON to a JSON literal (null)." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18286", + "@id": "_:b1779", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr28-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Fails if trying to redefine a protected null term.", - "rdfs:comment": "A protected term with a null IRI mapping cannot be redefined.", "assertions": [ { - "@id": "_:b18291", + "@id": "_:b1787", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", "result": { - "@id": "_:b25438", + "@id": "_:b20050", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18290", + "@id": "_:b1786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24997", + "@id": "_:b20049", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18289", + "@id": "_:b1777", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24163", + "@id": "_:b1778", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18292", + "@id": "_:b1783", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25524", + "@id": "_:b20046", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18287", + "@id": "_:b1788", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", + "mode": "earl:automatic", "result": { - "@id": "_:b21244", + "@id": "_:b20051", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b18288", + "@id": "_:b1782", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23377", + "@id": "_:b7866", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18294", + "@id": "_:b1785", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24869", + "@id": "_:b20048", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18293", + "@id": "_:b1784", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", "result": { - "@id": "_:b24051", + "@id": "_:b20047", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18284", + "@id": "_:b1780", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", + "mode": "earl:automatic", "result": { - "@id": "_:b18285", + "@id": "_:b1156", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b18295", + "@id": "_:b1781", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01", "result": { - "@id": "_:b25426", + "@id": "_:b20045", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/li01-out.jsonld", + "title": "@list containing empty @list", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/li01-in.nq", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10801", + "@id": "_:b14407", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr29-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr29-out.jsonld", - "title": "Does not expand a Compact IRI using a non-prefix term.", - "rdfs:comment": "Expansion of Compact IRIs considers if the term can be used as a prefix.", "assertions": [ { - "@id": "_:b10802", + "@id": "_:b14413", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", "result": { - "@id": "_:b13498", + "@id": "_:b25383", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10808", + "@id": "_:b14415", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25544", + "@id": "_:b25912", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10809", + "@id": "_:b14408", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25545", + "@id": "_:b6165", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10807", + "@id": "_:b14409", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13680", + "@id": "_:b19455", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10806", + "@id": "_:b14412", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", + "mode": "earl:automatic", "result": { - "@id": "_:b23160", + "@id": "_:b25910", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b10803", + "@id": "_:b14414", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b19326", + "@id": "_:b25911", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10810", + "@id": "_:b14416", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14365", + "@id": "_:b25913", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10804", + "@id": "_:b14410", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", "result": { - "@id": "_:b20408", + "@id": "_:b1016", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10805", + "@id": "_:b14405", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", + "mode": "earl:automatic", "result": { - "@id": "_:b25543", + "@id": "_:b14406", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b10799", + "@id": "_:b14411", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02", "result": { - "@id": "_:b10800", + "@id": "_:b23783", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld", + "title": "@list containing multiple lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq", + "rdfs:comment": "List of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", + "@id": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2339", + "@id": "_:b9164", "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr30-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr30-out.jsonld", - "title": "Keywords may be protected.", - "rdfs:comment": "Keywords may not be redefined other than to protect them.", "assertions": [ { - "@id": "_:b2344", + "@id": "_:b9166", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", "result": { - "@id": "_:b25325", + "@id": "_:b15865", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2338", + "@id": "_:b9162", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b1930", + "@id": "_:b9163", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2340", + "@id": "_:b9165", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b8645", + "@id": "_:b3409", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2346", + "@id": "_:b9169", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25403", + "@id": "_:b15868", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2347", + "@id": "_:b9167", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", + "mode": "earl:automatic", "result": { - "@id": "_:b25404", + "@id": "_:b15866", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", - "assertedBy": null + "subject": "https://github.com/pchampin/sophia_rs", + "assertedBy": "http://champin.net/#pa" }, { - "@id": "_:b2341", + "@id": "_:b9171", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18716", + "@id": "_:b15869", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2345", + "@id": "_:b9173", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25402", + "@id": "_:b15871", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2343", + "@id": "_:b9168", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", "result": { - "@id": "_:b2082", + "@id": "_:b15867", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2342", + "@id": "_:b9172", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", + "mode": "earl:automatic", "result": { - "@id": "_:b23215", + "@id": "_:b15870", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", - "assertedBy": null + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "assertedBy": "https://www.rubensworks.net/#me" }, { - "@id": "_:b2348", + "@id": "_:b9170", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03", "result": { - "@id": "_:b14497", + "@id": "_:b14003", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - }, + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld", + "title": "t0008 as interpreted for 1.1. ", + "testAction": "https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq", + "rdfs:comment": "List of lists" + } + ], + "title": "Transform RDF to JSON-LD", + "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", + "rdfs:comment": "These tests implement the requirements for the JSON-LD [Serialize RDF as JSON-LD Algorithm](https://www.w3.org/TR/json-ld11-api/#serialize-rdf-as-json-ld-algorithm)." + }, + { + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest", + "@type": [ + "Report", + "mf:Manifest" + ], + "entries": [ { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9242", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr31-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protected keyword aliases cannot be overridden.", - "rdfs:comment": "Keywords may not be redefined other than to protect them.", "assertions": [ { - "@id": "_:b9246", + "@id": "_:b20381", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "result": { - "@id": "_:b21243", + "@id": "_:b20382", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b9249", + "@id": "_:b20384", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21076", + "@id": "_:b23051", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9251", + "@id": "_:b20388", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15390", + "@id": "_:b26743", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9250", + "@id": "_:b20386", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13783", + "@id": "_:b18624", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9240", + "@id": "_:b20389", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "result": { - "@id": "_:b9241", + "@id": "_:b24838", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9245", + "@id": "_:b20383", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16202", + "@id": "_:b21102", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9247", + "@id": "_:b20391", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23278", + "@id": "_:b21406", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9244", + "@id": "_:b20385", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "result": { - "@id": "_:b19962", + "@id": "_:b23666", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9248", + "@id": "_:b20390", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "result": { - "@id": "_:b23279", + "@id": "_:b26709", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9243", + "@id": "_:b20387", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001", "result": { - "@id": "_:b10242", + "@id": "_:b26301", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0001-out.jsonld", + "title": "drop free-floating nodes", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0001-in.jsonld", + "rdfs:comment": "Flattening drops unreferenced nodes having only @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7077", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr32-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protected @type cannot be overridden.", - "rdfs:comment": "Keywords may not be redefined other than to protect them.", "assertions": [ { - "@id": "_:b7075", + "@id": "_:b11313", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "result": { - "@id": "_:b7076", + "@id": "_:b21257", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b7084", + "@id": "_:b11312", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22963", + "@id": "_:b18952", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7078", + "@id": "_:b11318", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12167", + "@id": "_:b23010", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7081", + "@id": "_:b11314", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20856", + "@id": "_:b14001", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7083", + "@id": "_:b11310", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "result": { - "@id": "_:b16864", + "@id": "_:b11311", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7080", + "@id": "_:b11316", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6384", + "@id": "_:b23008", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7079", + "@id": "_:b11320", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11090", + "@id": "_:b20462", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7085", + "@id": "_:b11315", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "result": { - "@id": "_:b25961", + "@id": "_:b23007", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7086", + "@id": "_:b11319", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "result": { - "@id": "_:b22474", + "@id": "_:b18838", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7082", + "@id": "_:b11317", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002", "result": { - "@id": "_:b25138", + "@id": "_:b23009", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0002-out.jsonld", + "title": "basic", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0002-in.jsonld", + "rdfs:comment": "Flattening terms with different types of values" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16218", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr33-in.jsonld", - "mf:result": "invalid term definition", - "title": "Fails if trying to declare a keyword alias as prefix.", - "rdfs:comment": "Keyword aliases can not be used as prefixes.", "assertions": [ { - "@id": "_:b16224", + "@id": "_:b13263", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "result": { - "@id": "_:b26520", + "@id": "_:b23791", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16223", + "@id": "_:b13258", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23853", + "@id": "_:b3022", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16226", + "@id": "_:b13259", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16277", + "@id": "_:b24944", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16220", + "@id": "_:b13256", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13766", + "@id": "_:b19894", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16222", + "@id": "_:b13260", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "result": { - "@id": "_:b9576", + "@id": "_:b17115", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16216", + "@id": "_:b13254", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16217", + "@id": "_:b5802", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16227", + "@id": "_:b13261", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19230", + "@id": "_:b26889", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16225", + "@id": "_:b13262", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "result": { - "@id": "_:b21514", + "@id": "_:b14002", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16219", + "@id": "_:b13255", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "result": { - "@id": "_:b19196", + "@id": "_:b18192", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16221", + "@id": "_:b13257", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003", "result": { - "@id": "_:b25874", + "@id": "_:b19096", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0003-out.jsonld", + "title": "drop null and unmapped properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0003-in.jsonld", + "rdfs:comment": "Verifies that null values and unmapped properties are removed from expanded output" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5422", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr34-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr34-out.jsonld", - "title": "Ignores a non-keyword term starting with '@'", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b5431", + "@id": "_:b7067", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "result": { - "@id": "_:b21756", + "@id": "_:b19070", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5420", + "@id": "_:b7068", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b5421", + "@id": "_:b24779", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5428", + "@id": "_:b7069", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21785", + "@id": "_:b23259", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5430", + "@id": "_:b7063", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21786", + "@id": "_:b22513", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5429", + "@id": "_:b7059", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "result": { - "@id": "_:b21397", + "@id": "_:b7060", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5427", + "@id": "_:b7062", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21784", + "@id": "_:b19417", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5424", + "@id": "_:b7066", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21519", + "@id": "_:b26847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5425", + "@id": "_:b7065", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "result": { - "@id": "_:b21782", + "@id": "_:b25261", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5423", + "@id": "_:b7061", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "result": { - "@id": "_:b7701", + "@id": "_:b15330", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5426", + "@id": "_:b7064", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004", "result": { - "@id": "_:b21783", + "@id": "_:b22983", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0004-out.jsonld", + "title": "optimize @set, keep empty arrays", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0004-in.jsonld", + "rdfs:comment": "Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11849", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr35-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr35-out.jsonld", - "title": "Ignores a non-keyword term starting with '@' (with @vocab)", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b11851", + "@id": "_:b14241", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "result": { - "@id": "_:b11913", + "@id": "_:b16173", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b11853", + "@id": "_:b14235", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24239", + "@id": "_:b22364", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11856", + "@id": "_:b14238", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25813", + "@id": "_:b22112", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11847", + "@id": "_:b14234", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11848", + "@id": "_:b22363", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11854", + "@id": "_:b14237", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "result": { - "@id": "_:b21095", + "@id": "_:b22366", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11857", + "@id": "_:b14239", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24884", + "@id": "_:b16629", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11850", + "@id": "_:b14233", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14995", + "@id": "_:b16048", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11858", + "@id": "_:b14231", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "result": { - "@id": "_:b25814", + "@id": "_:b14232", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11855", + "@id": "_:b14236", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "result": { - "@id": "_:b22257", + "@id": "_:b22365", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11852", + "@id": "_:b14240", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005", "result": { - "@id": "_:b11456", + "@id": "_:b22367", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0005-out.jsonld", + "title": "do not expand aliased @id/@type", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0005-in.jsonld", + "rdfs:comment": "If a keyword is aliased, it is not used when flattening" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3037", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr36-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr36-out.jsonld", - "title": "Ignores a term mapping to a value in the form of a keyword.", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b3046", + "@id": "_:b13075", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "result": { - "@id": "_:b20020", + "@id": "_:b15862", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3042", + "@id": "_:b13071", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24008", + "@id": "_:b13264", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3041", + "@id": "_:b13077", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22503", + "@id": "_:b15864", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3044", + "@id": "_:b13073", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24909", + "@id": "_:b15860", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3040", + "@id": "_:b13072", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "result": { - "@id": "_:b22573", + "@id": "_:b11640", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3045", + "@id": "_:b13068", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26415", + "@id": "_:b13069", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3038", + "@id": "_:b13078", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19676", + "@id": "_:b12763", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3039", + "@id": "_:b13070", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "result": { - "@id": "_:b20563", + "@id": "_:b15859", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3043", + "@id": "_:b13074", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "result": { - "@id": "_:b24929", + "@id": "_:b15861", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3035", + "@id": "_:b13076", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006", "result": { - "@id": "_:b3036", + "@id": "_:b15863", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0006-out.jsonld", + "title": "alias keywords", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0006-in.jsonld", + "rdfs:comment": "Aliased keywords expand in resulting document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10003", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr37-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr37-out.jsonld", - "title": "Ignores a term mapping to a value in the form of a keyword (with @vocab).", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b10005", + "@id": "_:b11876", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "result": { - "@id": "_:b21373", + "@id": "_:b15074", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10010", + "@id": "_:b11881", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26682", + "@id": "_:b25609", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10008", + "@id": "_:b11884", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26182", + "@id": "_:b26779", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10007", + "@id": "_:b11879", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23477", + "@id": "_:b22620", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10012", + "@id": "_:b11874", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "result": { - "@id": "_:b25100", + "@id": "_:b11875", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10011", + "@id": "_:b11883", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26770", + "@id": "_:b24453", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10013", + "@id": "_:b11880", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26289", + "@id": "_:b23930", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10009", + "@id": "_:b11882", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "result": { - "@id": "_:b26824", + "@id": "_:b18142", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10006", + "@id": "_:b11877", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "result": { - "@id": "_:b22756", + "@id": "_:b18864", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10004", + "@id": "_:b11878", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007", "result": { - "@id": "_:b14067", + "@id": "_:b11403", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0007-out.jsonld", + "title": "date type-coercion", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0007-in.jsonld", + "rdfs:comment": "Expand strings to expanded value with @type: xsd:dateTime" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b23096", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr38-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr38-out.jsonld", - "title": "Ignores a term mapping to a value in the form of a keyword (@reverse).", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b23105", + "@id": "_:b4741", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "result": { - "@id": "_:b26069", + "@id": "_:b16628", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b23102", + "@id": "_:b4744", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21343", + "@id": "_:b24188", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b23097", + "@id": "_:b4742", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24044", + "@id": "_:b18957", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23101", + "@id": "_:b4746", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1392", + "@id": "_:b25579", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b23103", + "@id": "_:b4748", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "result": { - "@id": "_:b17788", + "@id": "_:b26500", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b23104", + "@id": "_:b4740", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13046", + "@id": "_:b5612", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b23100", + "@id": "_:b4747", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20510", + "@id": "_:b20575", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b23098", + "@id": "_:b4743", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "result": { - "@id": "_:b22962", + "@id": "_:b20140", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b23099", + "@id": "_:b4745", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "result": { - "@id": "_:b19258", + "@id": "_:b26499", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b23095", + "@id": "_:b4738", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008", "result": { - "@id": "_:b18419", + "@id": "_:b4739", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0008-out.jsonld", + "title": "@value with @language", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0008-in.jsonld", + "rdfs:comment": "Keep expanded values with @language, drop non-conforming value objects containing just @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5653", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr39-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr39-out.jsonld", - "title": "Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab).", - "rdfs:comment": "Terms in the form of a keyword, which are not keywords, are ignored.", "assertions": [ { - "@id": "_:b5654", + "@id": "_:b21156", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "result": { - "@id": "_:b8532", + "@id": "_:b7205", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b5657", + "@id": "_:b21154", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15480", + "@id": "_:b20421", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5659", + "@id": "_:b21151", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12921", + "@id": "_:b14833", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5661", + "@id": "_:b21153", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17735", + "@id": "_:b22040", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5655", + "@id": "_:b21149", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "result": { - "@id": "_:b12771", + "@id": "_:b16351", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5656", + "@id": "_:b21147", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17732", + "@id": "_:b21148", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5658", + "@id": "_:b21150", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17733", + "@id": "_:b11096", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5663", + "@id": "_:b21157", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "result": { - "@id": "_:b17736", + "@id": "_:b26677", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5662", + "@id": "_:b21152", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "result": { - "@id": "_:b4726", + "@id": "_:b26136", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5660", + "@id": "_:b21155", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009", "result": { - "@id": "_:b17734", + "@id": "_:b26543", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0009-out.jsonld", + "title": "@graph with terms", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0009-in.jsonld", + "rdfs:comment": "Use of @graph to contain multiple nodes within array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18458", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/pr40-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/pr40-out.jsonld", - "title": "Protected terms and property-scoped contexts", - "rdfs:comment": "Check overriding of protected term from property-scoped context.", "assertions": [ { - "@id": "_:b18459", + "@id": "_:b9785", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "result": { - "@id": "_:b22441", + "@id": "_:b22933", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b18464", + "@id": "_:b9786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26374", + "@id": "_:b26021", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18465", + "@id": "_:b9782", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26180", + "@id": "_:b18309", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18460", + "@id": "_:b9779", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25345", + "@id": "_:b9780", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18463", + "@id": "_:b9788", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "result": { - "@id": "_:b25678", + "@id": "_:b21385", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18462", + "@id": "_:b9787", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26168", + "@id": "_:b25410", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18466", + "@id": "_:b9781", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17563", + "@id": "_:b10691", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18456", + "@id": "_:b9784", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "result": { - "@id": "_:b18457", + "@id": "_:b19041", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18461", + "@id": "_:b9783", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "result": { - "@id": "_:b22468", + "@id": "_:b20921", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18467", + "@id": "_:b9789", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010", "result": { - "@id": "_:b6371", + "@id": "_:b26022", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0010-out.jsonld", + "title": "native types", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0010-in.jsonld", + "rdfs:comment": "Flattening native scalar retains native scalar within expanded value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1934", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so01-in.jsonld", - "mf:result": "invalid context entry", - "title": "@import is invalid in 1.0.", - "rdfs:comment": "@import is invalid in 1.0.", "assertions": [ { - "@id": "_:b1941", + "@id": "_:b4660", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "result": { - "@id": "_:b25499", + "@id": "_:b20320", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b1938", + "@id": "_:b4654", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25006", + "@id": "_:b4655", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1936", + "@id": "_:b4658", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b15485", + "@id": "_:b16154", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1932", + "@id": "_:b4663", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1933", + "@id": "_:b23069", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1942", + "@id": "_:b4662", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "result": { - "@id": "_:b2237", + "@id": "_:b16268", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1939", + "@id": "_:b4664", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25498", + "@id": "_:b22784", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1935", + "@id": "_:b4657", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20818", + "@id": "_:b15534", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1940", + "@id": "_:b4661", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "result": { - "@id": "_:b7596", + "@id": "_:b22930", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1937", + "@id": "_:b4656", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "result": { - "@id": "_:b25090", + "@id": "_:b10576", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1943", + "@id": "_:b4659", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011", "result": { - "@id": "_:b21296", + "@id": "_:b19622", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0011-out.jsonld", + "title": "coerced @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0011-in.jsonld", + "rdfs:comment": "A value of a property with @type: @id coercion expands to a node reference" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10023", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so02-in.jsonld", - "mf:result": "invalid @import value", - "title": "@import must be a string", - "rdfs:comment": "@import must be a string.", "assertions": [ { - "@id": "_:b10027", + "@id": "_:b13385", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "result": { - "@id": "_:b10036", + "@id": "_:b25094", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b10028", + "@id": "_:b13390", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10037", + "@id": "_:b25185", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10025", + "@id": "_:b13383", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10035", + "@id": "_:b15437", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10024", + "@id": "_:b13389", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10034", + "@id": "_:b24782", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10032", + "@id": "_:b13387", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "result": { - "@id": "_:b10041", + "@id": "_:b25183", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10026", + "@id": "_:b13381", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3682", + "@id": "_:b13382", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10031", + "@id": "_:b13391", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10040", + "@id": "_:b22981", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10029", + "@id": "_:b13386", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "result": { - "@id": "_:b10038", + "@id": "_:b24580", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10030", + "@id": "_:b13384", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "result": { - "@id": "_:b10039", + "@id": "_:b20772", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10033", + "@id": "_:b13388", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012", "result": { - "@id": "_:b10042", + "@id": "_:b25184", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0012-out.jsonld", + "title": "@graph with embed", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0012-in.jsonld", + "rdfs:comment": "Flattening objects containing chained objects flattens all objects" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19057", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so03-in.jsonld", - "mf:result": "invalid context entry", - "title": "@import overflow", - "rdfs:comment": "Processors must detect source contexts that include @import.", "assertions": [ { - "@id": "_:b19058", + "@id": "_:b5138", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "result": { - "@id": "_:b19419", + "@id": "_:b23460", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19063", + "@id": "_:b5139", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24992", + "@id": "_:b23728", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19062", + "@id": "_:b5136", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24991", + "@id": "_:b9675", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19055", + "@id": "_:b5134", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19056", + "@id": "_:b5135", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19066", + "@id": "_:b5137", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "result": { - "@id": "_:b24995", + "@id": "_:b18923", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19059", + "@id": "_:b5141", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4261", + "@id": "_:b23730", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19064", + "@id": "_:b5142", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24993", + "@id": "_:b23261", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19061", + "@id": "_:b5143", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "result": { - "@id": "_:b24990", + "@id": "_:b20864", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19065", + "@id": "_:b5140", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "result": { - "@id": "_:b24994", + "@id": "_:b23729", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19060", + "@id": "_:b5144", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013", "result": { - "@id": "_:b19025", + "@id": "_:b16934", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0013-out.jsonld", + "title": "flatten already expanded", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0013-in.jsonld", + "rdfs:comment": "Flattening an expanded/flattened document maintains input document" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16909", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so05-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so05-out.jsonld", - "title": "@propagate: true on type-scoped context with @import", - "rdfs:comment": "type-scoped context with @propagate: true survive node-objects (with @import)", "assertions": [ { - "@id": "_:b16910", + "@id": "_:b21510", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "result": { - "@id": "_:b19855", + "@id": "_:b23133", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16911", + "@id": "_:b21514", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10660", + "@id": "_:b22428", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16913", + "@id": "_:b21515", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24977", + "@id": "_:b21626", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16917", + "@id": "_:b21516", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20962", + "@id": "_:b8639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16918", + "@id": "_:b21513", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "result": { - "@id": "_:b26893", + "@id": "_:b18190", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16912", + "@id": "_:b21508", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21895", + "@id": "_:b21509", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16916", + "@id": "_:b21518", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4560", + "@id": "_:b14603", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16914", + "@id": "_:b21511", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "result": { - "@id": "_:b22592", + "@id": "_:b23937", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16915", + "@id": "_:b21517", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "result": { - "@id": "_:b24880", + "@id": "_:b20452", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16908", + "@id": "_:b21512", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015", "result": { - "@id": "_:b4741", + "@id": "_:b14666", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0015-out.jsonld", + "title": "collapse set of sets, keep empty lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0015-in.jsonld", + "rdfs:comment": "An array of multiple @set nodes are collapsed into a single array" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2681", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so06-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so06-out.jsonld", - "title": "@propagate: false on property-scoped context with @import", - "rdfs:comment": "property-scoped context with @propagate: false do not survive node-objects (with @import)", "assertions": [ { - "@id": "_:b2685", + "@id": "_:b1268", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "result": { - "@id": "_:b21809", + "@id": "_:b22157", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b2683", + "@id": "_:b1264", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13841", + "@id": "_:b22154", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2688", + "@id": "_:b1263", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23827", + "@id": "_:b21568", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2690", + "@id": "_:b1266", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22022", + "@id": "_:b22156", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2691", + "@id": "_:b1262", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "result": { - "@id": "_:b20579", + "@id": "_:b19368", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2686", + "@id": "_:b1259", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20513", + "@id": "_:b1260", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2687", + "@id": "_:b1265", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23826", + "@id": "_:b22155", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2684", + "@id": "_:b1267", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "result": { - "@id": "_:b21075", + "@id": "_:b9670", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2682", + "@id": "_:b1261", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "result": { - "@id": "_:b4196", + "@id": "_:b9587", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2689", + "@id": "_:b1269", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016", "result": { - "@id": "_:b23828", + "@id": "_:b22158", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0016-out.jsonld", + "title": "context reset", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0016-in.jsonld", + "rdfs:comment": "Setting @context to null within an embedded object resets back to initial context state" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6714", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so07-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protect all terms in sourced context", - "rdfs:comment": "A protected context protects all term definitions.", "assertions": [ { - "@id": "_:b6717", + "@id": "_:b2026", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "result": { - "@id": "_:b23419", + "@id": "_:b2036", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6718", + "@id": "_:b2030", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23420", + "@id": "_:b2040", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6715", + "@id": "_:b2027", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20274", + "@id": "_:b2037", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6722", + "@id": "_:b2032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16400", + "@id": "_:b2042", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6720", + "@id": "_:b2024", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "result": { - "@id": "_:b23422", + "@id": "_:b2034", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6719", + "@id": "_:b2029", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23421", + "@id": "_:b2039", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6721", + "@id": "_:b2033", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23423", + "@id": "_:b2043", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6716", + "@id": "_:b2028", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "result": { - "@id": "_:b23418", + "@id": "_:b2038", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6723", + "@id": "_:b2031", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "result": { - "@id": "_:b23424", + "@id": "_:b2041", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6712", + "@id": "_:b2025", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017", "result": { - "@id": "_:b6713", + "@id": "_:b2035", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0017-out.jsonld", + "title": "@graph and @id aliased", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0017-in.jsonld", + "rdfs:comment": "Flattening with @graph and @id aliases" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20323", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so08-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so08-out.jsonld", - "title": "Override term defined in sourced context", - "rdfs:comment": "The containing context is merged into the source context.", "assertions": [ { - "@id": "_:b20328", + "@id": "_:b15717", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "result": { - "@id": "_:b24754", + "@id": "_:b25406", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b20331", + "@id": "_:b15718", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b13525", + "@id": "_:b6183", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20327", + "@id": "_:b15720", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24753", + "@id": "_:b26278", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20332", + "@id": "_:b15714", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24757", + "@id": "_:b19233", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20321", + "@id": "_:b15712", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "result": { - "@id": "_:b20322", + "@id": "_:b15713", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20324", + "@id": "_:b15716", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20410", + "@id": "_:b25236", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20330", + "@id": "_:b15722", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24756", + "@id": "_:b18568", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20329", + "@id": "_:b15715", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "result": { - "@id": "_:b24755", + "@id": "_:b12527", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20326", + "@id": "_:b15721", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "result": { - "@id": "_:b23357", + "@id": "_:b26279", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20325", + "@id": "_:b15719", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018", "result": { - "@id": "_:b24752", + "@id": "_:b26109", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0018-out.jsonld", + "title": "override default @language", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0018-in.jsonld", + "rdfs:comment": "override default @language in terms; only language-tag strings" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b20131", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so09-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so09-out.jsonld", - "title": "Override @vocab defined in sourced context", - "rdfs:comment": "The containing context is merged into the source context.", "assertions": [ { - "@id": "_:b20134", + "@id": "_:b4605", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "result": { - "@id": "_:b21349", + "@id": "_:b14685", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b20136", + "@id": "_:b4607", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26369", + "@id": "_:b14687", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b20140", + "@id": "_:b4606", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b18599", + "@id": "_:b14686", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20129", + "@id": "_:b4608", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20130", + "@id": "_:b14688", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b20135", + "@id": "_:b4603", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "result": { - "@id": "_:b14712", + "@id": "_:b14683", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b20139", + "@id": "_:b4604", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26699", + "@id": "_:b14684", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b20132", + "@id": "_:b4609", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b2608", + "@id": "_:b14689", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b20137", + "@id": "_:b4602", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "result": { - "@id": "_:b25334", + "@id": "_:b14682", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b20133", + "@id": "_:b4600", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "result": { - "@id": "_:b21260", + "@id": "_:b4601", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b20138", + "@id": "_:b4610", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019", "result": { - "@id": "_:b26698", + "@id": "_:b14690", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0019-out.jsonld", + "title": "remove @value = null", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0019-in.jsonld", + "rdfs:comment": "Flattening a value of null removes the value" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6868", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so10-in.jsonld", - "mf:result": "protected term redefinition", - "title": "Protect terms in sourced context", - "rdfs:comment": "The containing context is merged into the source context.", "assertions": [ { - "@id": "_:b6872", + "@id": "_:b11668", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "result": { - "@id": "_:b20920", + "@id": "_:b11669", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b6871", + "@id": "_:b11674", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17439", + "@id": "_:b25343", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6869", + "@id": "_:b11672", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9827", + "@id": "_:b21525", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6877", + "@id": "_:b11677", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22231", + "@id": "_:b19554", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6873", + "@id": "_:b11673", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "result": { - "@id": "_:b19926", + "@id": "_:b24046", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6874", + "@id": "_:b11670", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22230", + "@id": "_:b12622", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6876", + "@id": "_:b11678", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3966", + "@id": "_:b23821", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6875", + "@id": "_:b11671", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "result": { - "@id": "_:b19499", + "@id": "_:b16441", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6870", + "@id": "_:b11676", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "result": { - "@id": "_:b15389", + "@id": "_:b18457", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6866", + "@id": "_:b11675", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020", "result": { - "@id": "_:b6867", + "@id": "_:b26426", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0020-out.jsonld", + "title": "do not remove @graph if not at top-level", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0020-in.jsonld", + "rdfs:comment": "@graph used under a node is retained" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12201", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so11-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/so11-out.jsonld", - "title": "Override protected terms in sourced context", - "rdfs:comment": "The containing context is merged into the source context.", "assertions": [ { - "@id": "_:b12205", + "@id": "_:b10018", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "result": { - "@id": "_:b21957", + "@id": "_:b26213", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b12208", + "@id": "_:b10012", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21959", + "@id": "_:b13267", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12207", + "@id": "_:b10013", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17957", + "@id": "_:b16372", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12203", + "@id": "_:b10016", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17152", + "@id": "_:b6976", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12204", + "@id": "_:b10020", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "result": { - "@id": "_:b21956", + "@id": "_:b25137", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12199", + "@id": "_:b10015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b12200", + "@id": "_:b25194", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12210", + "@id": "_:b10014", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21961", + "@id": "_:b16663", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12209", + "@id": "_:b10017", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "result": { - "@id": "_:b21960", + "@id": "_:b22656", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12202", + "@id": "_:b10010", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "result": { - "@id": "_:b17738", + "@id": "_:b10011", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12206", + "@id": "_:b10019", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021", "result": { - "@id": "_:b21958", + "@id": "_:b26327", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0021-out.jsonld", + "title": "do not remove @graph at top-level if not only property", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0021-in.jsonld", + "rdfs:comment": "@graph used at the top level is retained if there are other properties" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3658", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so12-in.jsonld", - "mf:result": "invalid context entry", - "title": "@import may not be used in an imported context.", - "rdfs:comment": "@import only valid within a term definition.", "assertions": [ { - "@id": "_:b3662", + "@id": "_:b7522", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "result": { - "@id": "_:b22461", + "@id": "_:b5714", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b3664", + "@id": "_:b7527", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21110", + "@id": "_:b15770", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3661", + "@id": "_:b7529", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21689", + "@id": "_:b9503", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3667", + "@id": "_:b7528", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6328", + "@id": "_:b15771", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3659", + "@id": "_:b7524", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "result": { - "@id": "_:b10362", + "@id": "_:b15767", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3663", + "@id": "_:b7525", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22462", + "@id": "_:b15768", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3660", + "@id": "_:b7530", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17983", + "@id": "_:b15772", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3656", + "@id": "_:b7523", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "result": { - "@id": "_:b3657", + "@id": "_:b3135", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3666", + "@id": "_:b7526", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "result": { - "@id": "_:b20352", + "@id": "_:b15769", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3665", + "@id": "_:b7520", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022", "result": { - "@id": "_:b22214", + "@id": "_:b7521", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0022-out.jsonld", + "title": "flatten value with default language", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0022-in.jsonld", + "rdfs:comment": "Flattening with a default language applies that language to string values" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16732", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/so13-in.jsonld", - "mf:result": "invalid remote context", - "title": "@import can only reference a single context", - "rdfs:comment": "@import can only reference a single context.", "assertions": [ { - "@id": "_:b16739", + "@id": "_:b4421", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "result": { - "@id": "_:b24210", + "@id": "_:b24791", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b16736", + "@id": "_:b4420", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25036", + "@id": "_:b21607", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16737", + "@id": "_:b4416", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25037", + "@id": "_:b13933", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16733", + "@id": "_:b4423", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21683", + "@id": "_:b26802", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16738", + "@id": "_:b4422", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "result": { - "@id": "_:b25038", + "@id": "_:b26609", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16730", + "@id": "_:b4418", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16731", + "@id": "_:b22612", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16740", + "@id": "_:b4417", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22334", + "@id": "_:b21632", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16735", + "@id": "_:b4419", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "result": { - "@id": "_:b19456", + "@id": "_:b23569", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16734", + "@id": "_:b4413", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "result": { - "@id": "_:b24018", + "@id": "_:b4414", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16741", + "@id": "_:b4415", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023", "result": { - "@id": "_:b20475", + "@id": "_:b13149", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0023-out.jsonld", + "title": "Flattening list/set with coercion", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0023-in.jsonld", + "rdfs:comment": "Flattening lists and sets with properties having coercion coerces list/set values" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19365", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processingMode": "json-ld-1.0" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/tn01-in.jsonld", - "mf:result": "invalid type mapping", - "title": "@type: @none is illegal in 1.0.", - "rdfs:comment": "@type: @none is illegal in json-ld-1.0.", "assertions": [ { - "@id": "_:b19372", + "@id": "_:b6935", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "result": { - "@id": "_:b22242", + "@id": "_:b6238", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b19363", + "@id": "_:b6931", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19364", + "@id": "_:b20446", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19373", + "@id": "_:b6936", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20036", + "@id": "_:b23673", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19366", + "@id": "_:b6926", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22934", + "@id": "_:b6927", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19368", + "@id": "_:b6928", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "result": { - "@id": "_:b22492", + "@id": "_:b19896", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19371", + "@id": "_:b6929", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24751", + "@id": "_:b23572", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19374", + "@id": "_:b6930", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26268", + "@id": "_:b25458", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19369", + "@id": "_:b6933", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "result": { - "@id": "_:b26267", + "@id": "_:b26049", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19370", + "@id": "_:b6932", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "result": { - "@id": "_:b25576", + "@id": "_:b26832", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19367", + "@id": "_:b6934", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024", "result": { - "@id": "_:b24250", + "@id": "_:b17896", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0024-out.jsonld", + "title": "Multiple contexts", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0024-in.jsonld", + "rdfs:comment": "Tests that contexts in an array are merged" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13015", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/expand/tn02-in.jsonld", - "testResult": "https://w3c.github.io/json-ld-api/tests/expand/tn02-out.jsonld", - "title": "@type: @none expands strings as value objects", - "rdfs:comment": "@type: @none leaves inputs other than strings alone", "assertions": [ { - "@id": "_:b13020", + "@id": "_:b15301", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "assertedBy": "http://purl.org/NET/cpan-uri/dist/JSONLD/test-harness", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "result": { - "@id": "_:b23382", + "@id": "_:b12236", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02" + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "assertedBy": null }, { - "@id": "_:b13021", + "@id": "_:b15293", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23383", + "@id": "_:b17501", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13016", + "@id": "_:b15300", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/jsonld.js", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13565", + "@id": "_:b16772", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02" + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13022", + "@id": "_:b15302", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23384", + "@id": "_:b25250", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13024", + "@id": "_:b15295", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "result": { - "@id": "_:b23386", + "@id": "_:b21273", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13017", + "@id": "_:b15299", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b13903", + "@id": "_:b25146", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13019", + "@id": "_:b15297", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22029", + "@id": "_:b26142", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13018", + "@id": "_:b15298", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "result": { - "@id": "_:b20373", + "@id": "_:b24288", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13023", + "@id": "_:b15296", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "result": { - "@id": "_:b23385", + "@id": "_:b15541", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13013", + "@id": "_:b15294", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025", "result": { - "@id": "_:b13014", + "@id": "_:b19459", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - } - ], - "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", - "title": "Expansion", - "rdfs:comment": "These tests implement the requirements for the JSON-LD [Expansion Algorithm](https://www.w3.org/TR/json-ld11-api/#expansion-algorithm)." - }, - { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest", - "@type": [ - "mf:Manifest", - "Report" - ], - "entries": [ + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0025-out.jsonld", + "title": "Problematic IRI flattening tests", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0025-in.jsonld", + "rdfs:comment": "Flattening different kinds of terms and Compact IRIs" + }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16647", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e001-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld", - "title": "Expands embedded JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b16654", + "@id": "_:b16667", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "result": { - "@id": "_:b21814", + "@id": "_:b18898", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b16652", + "@id": "_:b16669", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22287", + "@id": "_:b23642", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16655", + "@id": "_:b16670", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", + "mode": "earl:automatic", "result": { - "@id": "_:b9864", + "@id": "_:b24856", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16649", + "@id": "_:b16674", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11060", + "@id": "_:b26081", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16645", + "@id": "_:b16675", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "result": { - "@id": "_:b16646", + "@id": "_:b26865", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16648", + "@id": "_:b16665", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6641", + "@id": "_:b16666", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16650", + "@id": "_:b16672", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11702", + "@id": "_:b9302", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16651", + "@id": "_:b16673", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "result": { - "@id": "_:b8655", + "@id": "_:b26497", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16653", + "@id": "_:b16671", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "result": { - "@id": "_:b24020", + "@id": "_:b25478", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16656", + "@id": "_:b16668", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027", "result": { - "@id": "_:b22360", + "@id": "_:b16158", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0027-out.jsonld", + "title": "Duplicate values in @list and @set", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0027-in.jsonld", + "rdfs:comment": "Duplicate values in @list and @set are not merged" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6551", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", - "https://w3c.github.io/json-ld-api/tests/vocab#contentType": { - "@value": "application/xhtml+xml", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - } - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e001-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld", - "title": "Expands embedded JSON-LD script element (xhtml)", - "rdfs:comment": "Tests embedded JSON-LD in XHTML", "assertions": [ { - "@id": "_:b10638", + "@id": "_:b6632", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "result": { - "@id": "_:b15478", + "@id": "_:b6633", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b10639", + "@id": "_:b6635", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15479", + "@id": "_:b2821", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10633", + "@id": "_:b6639", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", + "mode": "earl:automatic", "result": { - "@id": "_:b15475", + "@id": "_:b21177", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10631", + "@id": "_:b6642", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b12198", + "@id": "_:b9539", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10634", + "@id": "_:b6641", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "result": { - "@id": "_:b1992", + "@id": "_:b21179", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10636", + "@id": "_:b6638", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15476", + "@id": "_:b16135", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10629", + "@id": "_:b6637", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b10630", + "@id": "_:b21176", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10637", + "@id": "_:b6636", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "result": { - "@id": "_:b15477", + "@id": "_:b21175", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10632", + "@id": "_:b6640", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "result": { - "@id": "_:b14726", + "@id": "_:b21178", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10635", + "@id": "_:b6634", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028", "result": { - "@id": "_:b12813", + "@id": "_:b18951", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tex01", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0028-out.jsonld", + "title": "Use @vocab in properties and @type but not in @id", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0028-in.jsonld", + "rdfs:comment": "@vocab is used to compact properties and @type, but is not used for @id" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13113", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e002-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e002-out.jsonld", - "title": "Expands first embedded JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b13116", + "@id": "_:b17996", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "result": { - "@id": "_:b17433", + "@id": "_:b8993", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b13119", + "@id": "_:b17992", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17436", + "@id": "_:b24659", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13118", + "@id": "_:b17987", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", + "mode": "earl:automatic", "result": { - "@id": "_:b17435", + "@id": "_:b10842", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13111", + "@id": "_:b17993", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b13112", + "@id": "_:b22355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13120", + "@id": "_:b17994", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "result": { - "@id": "_:b17437", + "@id": "_:b18285", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13114", + "@id": "_:b17988", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17431", + "@id": "_:b1170", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13117", + "@id": "_:b17989", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17434", + "@id": "_:b23786", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13122", + "@id": "_:b17995", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "result": { - "@id": "_:b3295", + "@id": "_:b25969", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13115", + "@id": "_:b17991", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "result": { - "@id": "_:b17432", + "@id": "_:b20582", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13121", + "@id": "_:b17990", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030", "result": { - "@id": "_:b17438", + "@id": "_:b24731", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0030-out.jsonld", + "title": "Language maps", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0030-in.jsonld", + "rdfs:comment": "Language Maps expand values to include @language" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11489", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e003-in.html#second", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e003-out.jsonld", - "title": "Expands targeted JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier", "assertions": [ { - "@id": "_:b11496", + "@id": "_:b3813", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "result": { - "@id": "_:b26546", + "@id": "_:b19462", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b11492", + "@id": "_:b3820", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25115", + "@id": "_:b23584", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11490", + "@id": "_:b3819", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", + "mode": "earl:automatic", "result": { - "@id": "_:b16627", + "@id": "_:b23583", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11487", + "@id": "_:b3816", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11488", + "@id": "_:b23581", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11491", + "@id": "_:b3815", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "result": { - "@id": "_:b23854", + "@id": "_:b22103", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11495", + "@id": "_:b3814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26259", + "@id": "_:b16374", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11493", + "@id": "_:b3817", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25730", + "@id": "_:b23582", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11497", + "@id": "_:b3810", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "result": { - "@id": "_:b19500", + "@id": "_:b3811", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11494", + "@id": "_:b3812", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "result": { - "@id": "_:b19416", + "@id": "_:b11065", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11498", + "@id": "_:b3818", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031", "result": { - "@id": "_:b25233", + "@id": "_:b19491", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0031-out.jsonld", + "title": "type-coercion of native types", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0031-in.jsonld", + "rdfs:comment": "Flattening native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b19727", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e004-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e004-out.jsonld", - "title": "Expands all embedded JSON-LD script elements with extractAllScripts option", - "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements", "assertions": [ { - "@id": "_:b19735", + "@id": "_:b9685", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "result": { - "@id": "_:b23492", + "@id": "_:b17600", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b19732", + "@id": "_:b9684", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b19467", + "@id": "_:b23761", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b19733", + "@id": "_:b9681", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", + "mode": "earl:automatic", "result": { - "@id": "_:b23490", + "@id": "_:b15303", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19734", + "@id": "_:b9686", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23491", + "@id": "_:b24710", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b19731", + "@id": "_:b9687", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "result": { - "@id": "_:b8654", + "@id": "_:b25143", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b19730", + "@id": "_:b9680", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23489", + "@id": "_:b12305", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b19737", + "@id": "_:b9688", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23494", + "@id": "_:b25963", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b19729", + "@id": "_:b9683", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "result": { - "@id": "_:b23443", + "@id": "_:b22683", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b19736", + "@id": "_:b9678", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "result": { - "@id": "_:b23493", + "@id": "_:b9679", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b19728", + "@id": "_:b9682", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032", "result": { - "@id": "_:b19117", + "@id": "_:b8429", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0032-out.jsonld", + "title": "Null term and @vocab", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0032-in.jsonld", + "rdfs:comment": "Mapping a term to null decouples it from @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1359", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e005-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e005-out.jsonld", - "title": "Expands multiple embedded JSON-LD script elements where one is an array", - "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements with array", "assertions": [ { - "@id": "_:b1368", + "@id": "_:b10299", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "result": { - "@id": "_:b25613", + "@id": "_:b11701", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b1364", + "@id": "_:b10293", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11513", + "@id": "_:b21762", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1361", + "@id": "_:b10295", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", + "mode": "earl:automatic", "result": { - "@id": "_:b19656", + "@id": "_:b10051", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1357", + "@id": "_:b10301", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1358", + "@id": "_:b24486", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1363", + "@id": "_:b10296", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "result": { - "@id": "_:b22956", + "@id": "_:b19944", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1360", + "@id": "_:b10297", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16492", + "@id": "_:b25861", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1366", + "@id": "_:b10298", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26518", + "@id": "_:b22906", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1362", + "@id": "_:b10294", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "result": { - "@id": "_:b22201", + "@id": "_:b22988", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1365", + "@id": "_:b10292", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "result": { - "@id": "_:b26019", + "@id": "_:b19092", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1367", + "@id": "_:b10300", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033", "result": { - "@id": "_:b26667", + "@id": "_:b19595", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te005", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0033-out.jsonld", + "title": "Using @vocab with with type-coercion", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0033-in.jsonld", + "rdfs:comment": "Verifies that terms can be defined using @vocab" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b16324", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e006-in.html", - "mf:result": "loading document failed", - "title": "Expands as empty with no embedded JSON-LD script elements", - "rdfs:comment": "Tests embedded JSON-LD in HTML when none exist", "assertions": [ { - "@id": "_:b16325", + "@id": "_:b6233", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "result": { - "@id": "_:b20142", + "@id": "_:b19801", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b16329", + "@id": "_:b6227", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10244", + "@id": "_:b6228", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b16327", + "@id": "_:b6234", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", + "mode": "earl:automatic", "result": { - "@id": "_:b17284", + "@id": "_:b19802", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16332", + "@id": "_:b6232", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20014", + "@id": "_:b6554", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b16333", + "@id": "_:b6236", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "result": { - "@id": "_:b11070", + "@id": "_:b19804", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b16322", + "@id": "_:b6231", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16323", + "@id": "_:b19800", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b16330", + "@id": "_:b6237", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b14941", + "@id": "_:b19805", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b16331", + "@id": "_:b6230", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "result": { - "@id": "_:b25151", + "@id": "_:b19799", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b16326", + "@id": "_:b6235", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "result": { - "@id": "_:b21342", + "@id": "_:b19803", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b16328", + "@id": "_:b6229", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034", "result": { - "@id": "_:b20496", + "@id": "_:b19798", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te006", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0034-out.jsonld", + "title": "Multiple properties expanding to the same IRI", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0034-in.jsonld", + "rdfs:comment": "Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b14730", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e007-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e007-out.jsonld", - "title": "Expands as empty with no embedded JSON-LD script elements and extractAllScripts", - "rdfs:comment": "Tests embedded JSON-LD in HTML when none exist extracting all elements", "assertions": [ { - "@id": "_:b14734", + "@id": "_:b2127", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "result": { - "@id": "_:b11967", + "@id": "_:b17090", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b14737", + "@id": "_:b2122", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18347", + "@id": "_:b21139", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14738", + "@id": "_:b2119", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", + "mode": "earl:automatic", "result": { - "@id": "_:b18348", + "@id": "_:b2120", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14732", + "@id": "_:b2125", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3721", + "@id": "_:b25837", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14735", + "@id": "_:b2126", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "result": { - "@id": "_:b18345", + "@id": "_:b23027", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14739", + "@id": "_:b2128", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18349", + "@id": "_:b19364", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14736", + "@id": "_:b2124", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18346", + "@id": "_:b25836", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14728", + "@id": "_:b2123", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "result": { - "@id": "_:b14729", + "@id": "_:b21798", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14731", + "@id": "_:b2129", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "result": { - "@id": "_:b16799", + "@id": "_:b25838", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14733", + "@id": "_:b2121", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035", "result": { - "@id": "_:b18344", + "@id": "_:b24373", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te007", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0035-out.jsonld", + "title": "Language maps with @vocab, default language, and colliding property", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0035-in.jsonld", + "rdfs:comment": "Pathological tests of language maps" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3686", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e010-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e010-out.jsonld", - "title": "Expands embedded JSON-LD script element with HTML character references", - "rdfs:comment": "Tests embedded JSON-LD in HTML with character references", "assertions": [ { - "@id": "_:b3684", + "@id": "_:b16856", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "result": { - "@id": "_:b3685", + "@id": "_:b18494", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b3687", + "@id": "_:b16862", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6038", + "@id": "_:b17135", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3690", + "@id": "_:b16860", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", + "mode": "earl:automatic", "result": { - "@id": "_:b23080", + "@id": "_:b23543", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3694", + "@id": "_:b16858", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b23534", + "@id": "_:b20378", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3693", + "@id": "_:b16863", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "result": { - "@id": "_:b23533", + "@id": "_:b22144", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3689", + "@id": "_:b16864", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17800", + "@id": "_:b23545", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3692", + "@id": "_:b16859", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23532", + "@id": "_:b21495", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3691", + "@id": "_:b16857", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "result": { - "@id": "_:b23531", + "@id": "_:b19887", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3688", + "@id": "_:b16861", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "result": { - "@id": "_:b11912", + "@id": "_:b23544", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3695", + "@id": "_:b16854", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036", "result": { - "@id": "_:b20804", + "@id": "_:b16855", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te010", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0036-out.jsonld", + "title": "Flattening @index", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0036-in.jsonld", + "rdfs:comment": "Flattening index maps for terms defined with @container: @index" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3765", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e011-in.html#third", - "mf:result": "loading document failed", - "title": "Errors if no element found at target", - "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist", "assertions": [ { - "@id": "_:b3766", + "@id": "_:b7928", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "result": { - "@id": "_:b3776", + "@id": "_:b23951", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b3770", + "@id": "_:b7924", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b3780", + "@id": "_:b19071", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3772", + "@id": "_:b7929", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", + "mode": "earl:automatic", "result": { - "@id": "_:b3782", + "@id": "_:b22653", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3771", + "@id": "_:b7922", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b3781", + "@id": "_:b7923", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3768", + "@id": "_:b7926", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "result": { - "@id": "_:b3778", + "@id": "_:b24277", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3769", + "@id": "_:b7932", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b3779", + "@id": "_:b24423", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3767", + "@id": "_:b7931", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b3777", + "@id": "_:b26355", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3773", + "@id": "_:b7930", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "result": { - "@id": "_:b3783", + "@id": "_:b16915", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3775", + "@id": "_:b7925", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "result": { - "@id": "_:b3785", + "@id": "_:b14307", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3774", + "@id": "_:b7927", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037", "result": { - "@id": "_:b3784", + "@id": "_:b24949", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te011", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0037-out.jsonld", + "title": "Flattening reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0037-in.jsonld", + "rdfs:comment": "Flattening @reverse keeps @reverse" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b18583", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e012-in.html#first", - "mf:result": "loading document failed", - "title": "Errors if targeted element is not a script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML which isn't a script element", "assertions": [ { - "@id": "_:b18590", + "@id": "_:b13759", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "result": { - "@id": "_:b26501", + "@id": "_:b10918", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b18588", + "@id": "_:b13756", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26152", + "@id": "_:b6513", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b18585", + "@id": "_:b13755", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", + "mode": "earl:automatic", "result": { - "@id": "_:b23358", + "@id": "_:b13765", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18584", + "@id": "_:b13754", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20679", + "@id": "_:b13764", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b18587", + "@id": "_:b13761", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "result": { - "@id": "_:b25231", + "@id": "_:b13769", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b18591", + "@id": "_:b13757", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20892", + "@id": "_:b13766", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b18581", + "@id": "_:b13760", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b18582", + "@id": "_:b13768", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b18592", + "@id": "_:b13753", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "result": { - "@id": "_:b23046", + "@id": "_:b13763", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b18586", + "@id": "_:b13752", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "result": { - "@id": "_:b23968", + "@id": "_:b13762", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b18589", + "@id": "_:b13758", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039", "result": { - "@id": "_:b21554", + "@id": "_:b13767", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te012", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0039-out.jsonld", + "title": "Using terms in a reverse-maps", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0039-in.jsonld", + "rdfs:comment": "Terms within @reverse are expanded" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b6061", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e013-in.html#first", - "mf:result": "loading document failed", - "title": "Errors if targeted element does not have type application/ld+json", - "rdfs:comment": "Tests embedded JSON-LD in HTML with wrong type", "assertions": [ { - "@id": "_:b6066", + "@id": "_:b6272", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "result": { - "@id": "_:b25374", + "@id": "_:b6282", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b6063", + "@id": "_:b6267", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b2497", + "@id": "_:b6277", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6065", + "@id": "_:b6265", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", + "mode": "earl:automatic", "result": { - "@id": "_:b25373", + "@id": "_:b6275", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6059", + "@id": "_:b6269", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6060", + "@id": "_:b6279", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6064", + "@id": "_:b6268", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "result": { - "@id": "_:b23895", + "@id": "_:b6278", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6067", + "@id": "_:b6270", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25375", + "@id": "_:b6280", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6068", + "@id": "_:b6271", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25376", + "@id": "_:b6281", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6062", + "@id": "_:b6274", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "result": { - "@id": "_:b12322", + "@id": "_:b6284", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6070", + "@id": "_:b6266", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "result": { - "@id": "_:b19327", + "@id": "_:b6276", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6069", + "@id": "_:b6273", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040", "result": { - "@id": "_:b6636", + "@id": "_:b6283", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te013", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0040-out.jsonld", + "title": "language and index expansion on non-objects", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0040-in.jsonld", + "rdfs:comment": "Only invoke language and index map expansion if the value is a JSON object" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2190", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e014-in.html", - "mf:result": "invalid script element", - "title": "Errors if uncommented script text contains comment", - "rdfs:comment": "Tests embedded JSON-LD in HTML with comments leftover", "assertions": [ { - "@id": "_:b2196", + "@id": "_:b3436", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "result": { - "@id": "_:b25497", + "@id": "_:b19633", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b2191", + "@id": "_:b3433", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b8109", + "@id": "_:b16017", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2197", + "@id": "_:b3428", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", + "mode": "earl:automatic", "result": { - "@id": "_:b15719", + "@id": "_:b7670", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2188", + "@id": "_:b3430", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b2189", + "@id": "_:b23467", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2195", + "@id": "_:b3435", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "result": { - "@id": "_:b13366", + "@id": "_:b25899", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2194", + "@id": "_:b3434", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16950", + "@id": "_:b25898", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2199", + "@id": "_:b3431", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b7426", + "@id": "_:b24746", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2192", + "@id": "_:b3432", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "result": { - "@id": "_:b17815", + "@id": "_:b24166", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2193", + "@id": "_:b3426", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "result": { - "@id": "_:b21729", + "@id": "_:b3427", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2198", + "@id": "_:b3429", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041", "result": { - "@id": "_:b3749", + "@id": "_:b11164", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te014", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0041-out.jsonld", + "title": "Free-floating sets and lists", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0041-in.jsonld", + "rdfs:comment": "Free-floating values in sets are removed, free-floating lists are removed completely" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b22339", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e015-in.html", - "mf:result": "invalid script element", - "title": "Errors if end comment missing", - "rdfs:comment": "Tests embedded JSON-LD in HTML with unballanced comments", "assertions": [ { - "@id": "_:b22349", + "@id": "_:b5407", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "result": { - "@id": "_:b21828", + "@id": "_:b24289", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b22344", + "@id": "_:b5404", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14665", + "@id": "_:b25744", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b22341", + "@id": "_:b5400", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", + "mode": "earl:automatic", "result": { - "@id": "_:b21564", + "@id": "_:b12207", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22346", + "@id": "_:b5398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1308", + "@id": "_:b5399", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b22347", + "@id": "_:b5402", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "result": { - "@id": "_:b22353", + "@id": "_:b21442", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b22342", + "@id": "_:b5405", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17266", + "@id": "_:b26595", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b22343", + "@id": "_:b5408", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22351", + "@id": "_:b22661", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b22340", + "@id": "_:b5401", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "result": { - "@id": "_:b22350", + "@id": "_:b16153", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b22345", + "@id": "_:b5403", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "result": { - "@id": "_:b22352", + "@id": "_:b23793", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b22348", + "@id": "_:b5406", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042", "result": { - "@id": "_:b22354", + "@id": "_:b9692", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te015", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0042-out.jsonld", + "title": "List objects not equivalent", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0042-in.jsonld", + "rdfs:comment": "Lists objects are implicit unlabeled blank nodes and thus never equivalent" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5552", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e016-in.html", - "mf:result": "invalid script element", - "title": "Errors if start comment missing", - "rdfs:comment": "Tests embedded JSON-LD in HTML with unballanced comments", "assertions": [ { - "@id": "_:b6324", + "@id": "_:b11474", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "result": { - "@id": "_:b10534", + "@id": "_:b23985", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b6321", + "@id": "_:b11471", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17308", + "@id": "_:b11472", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6318", + "@id": "_:b11477", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", + "mode": "earl:automatic", "result": { - "@id": "_:b20053", + "@id": "_:b25182", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6322", + "@id": "_:b11476", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24799", + "@id": "_:b24842", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6325", + "@id": "_:b11481", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "result": { - "@id": "_:b26309", + "@id": "_:b1751", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6323", + "@id": "_:b11475", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26308", + "@id": "_:b21943", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6320", + "@id": "_:b11478", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19360", + "@id": "_:b23961", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6315", + "@id": "_:b11473", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "result": { - "@id": "_:b6316", + "@id": "_:b21778", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6319", + "@id": "_:b11479", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "result": { - "@id": "_:b16937", + "@id": "_:b20919", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6317", + "@id": "_:b11480", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043", "result": { - "@id": "_:b15410", + "@id": "_:b21438", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te016", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0043-out.jsonld", + "title": "Sample test manifest extract", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0043-in.jsonld", + "rdfs:comment": "Flatten a test manifest" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13328", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b7392", + "https://w3c.github.io/json-ld-api/tests/vocab#compactArrays": { + "@value": "false", + "@type": "http://www.w3.org/2001/XMLSchema#boolean" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e017-in.html", - "mf:result": "invalid script element", - "title": "Errors if uncommented script is not valid JSON", - "rdfs:comment": "Tests embedded JSON-LD in HTML which is invalid JSON", "assertions": [ { - "@id": "_:b13331", + "@id": "_:b11387", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "result": { - "@id": "_:b21630", + "@id": "_:b17812", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b13333", + "@id": "_:b11380", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21632", + "@id": "_:b10456", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13330", + "@id": "_:b11386", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", + "mode": "earl:automatic", "result": { - "@id": "_:b21629", + "@id": "_:b17811", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13336", + "@id": "_:b11388", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21635", + "@id": "_:b17813", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13337", + "@id": "_:b11378", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "result": { - "@id": "_:b21636", + "@id": "_:b11379", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13329", + "@id": "_:b11385", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21628", + "@id": "_:b17810", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13335", + "@id": "_:b11383", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21634", + "@id": "_:b17808", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13326", + "@id": "_:b11384", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "result": { - "@id": "_:b13327", + "@id": "_:b17809", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13332", + "@id": "_:b11381", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "result": { - "@id": "_:b21631", + "@id": "_:b7594", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13334", + "@id": "_:b11382", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044", "result": { - "@id": "_:b21633", + "@id": "_:b17807", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te017", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0044-out.jsonld", + "https://w3c.github.io/json-ld-api/tests/vocab#context": { + "@id": "https://w3c.github.io/json-ld-api/tests/flatten/0044-context.jsonld" + }, + "title": "compactArrays option", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0044-in.jsonld", + "rdfs:comment": "Setting compactArrays to false causes single element arrays to be retained" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1033", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e018-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e018-out.jsonld", - "title": "Expands embedded JSON-LD script element relative to document base", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b1031", + "@id": "_:b11616", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "result": { - "@id": "_:b1032", + "@id": "_:b15883", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b1039", + "@id": "_:b11617", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21379", + "@id": "_:b15884", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1041", + "@id": "_:b11619", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", + "mode": "earl:automatic", "result": { - "@id": "_:b21381", + "@id": "_:b15886", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1036", + "@id": "_:b11622", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1443", + "@id": "_:b15888", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1042", + "@id": "_:b11620", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "result": { - "@id": "_:b21382", + "@id": "_:b1069", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1035", + "@id": "_:b11621", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16598", + "@id": "_:b15887", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1038", + "@id": "_:b11623", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17744", + "@id": "_:b15889", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1037", + "@id": "_:b11613", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "result": { - "@id": "_:b20455", + "@id": "_:b11614", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1034", + "@id": "_:b11618", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "result": { - "@id": "_:b9865", + "@id": "_:b15885", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1040", + "@id": "_:b11615", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045", "result": { - "@id": "_:b21380", + "@id": "_:b15882", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te018", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0045-out.jsonld", + "title": "Blank nodes with reverse properties", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0045-in.jsonld", + "rdfs:comment": "Proper (re-)labeling of blank nodes if used with reverse properties." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9016", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://a.example.com/doc" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e019-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e019-out.jsonld", - "title": "Expands embedded JSON-LD script element relative to base option", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b9023", + "@id": "_:b19169", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "result": { - "@id": "_:b22152", + "@id": "_:b26153", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b9024", + "@id": "_:b19171", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25492", + "@id": "_:b22693", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9017", + "@id": "_:b19168", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", + "mode": "earl:automatic", "result": { - "@id": "_:b15165", + "@id": "_:b10729", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9018", + "@id": "_:b19165", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22465", + "@id": "_:b21067", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9020", + "@id": "_:b19173", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "result": { - "@id": "_:b24921", + "@id": "_:b26469", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9022", + "@id": "_:b19166", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25326", + "@id": "_:b17651", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9025", + "@id": "_:b19167", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b1043", + "@id": "_:b25757", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9021", + "@id": "_:b19170", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "result": { - "@id": "_:b25491", + "@id": "_:b25806", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9014", + "@id": "_:b19172", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "result": { - "@id": "_:b9015", + "@id": "_:b24276", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9019", + "@id": "_:b19163", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046", "result": { - "@id": "_:b1535", + "@id": "_:b19164", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te019", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0046-out.jsonld", + "title": "Empty string as identifier", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0046-in.jsonld", + "rdfs:comment": "Usage of empty strings in identifiers needs special care when constructing the node map." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11197", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", + "@id": "_:b13109", "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://a.example.com/doc" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "http://example.org/" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e020-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e020-out.jsonld", - "title": "Expands embedded JSON-LD script element relative to HTML base", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b11199", + "@id": "_:b13116", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "result": { - "@id": "_:b11209", + "@id": "_:b24657", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b11200", + "@id": "_:b13111", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11210", + "@id": "_:b22373", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11201", + "@id": "_:b13107", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", + "mode": "earl:automatic", "result": { - "@id": "_:b11211", + "@id": "_:b13108", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11207", + "@id": "_:b13118", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7428", + "@id": "_:b24658", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11206", + "@id": "_:b13117", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "result": { - "@id": "_:b11216", + "@id": "_:b21706", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11204", + "@id": "_:b13115", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11214", + "@id": "_:b24656", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11202", + "@id": "_:b13114", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11212", + "@id": "_:b24655", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11205", + "@id": "_:b13113", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "result": { - "@id": "_:b11215", + "@id": "_:b18927", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11198", + "@id": "_:b13110", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "result": { - "@id": "_:b11208", + "@id": "_:b20151", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11203", + "@id": "_:b13112", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047", "result": { - "@id": "_:b11213", + "@id": "_:b24654", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te020", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0047-out.jsonld", + "title": "Flatten using relative fragment identifier properly joins to base", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0047-in.jsonld", + "rdfs:comment": "Compacting a relative round-trips" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1738", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://a.example.com/doc" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e021-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e021-out.jsonld", - "title": "Expands embedded JSON-LD script element relative to relative HTML base", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b1745", + "@id": "_:b6402", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "result": { - "@id": "_:b17285", + "@id": "_:b24757", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b1746", + "@id": "_:b6400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23158", + "@id": "_:b22792", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1743", + "@id": "_:b6404", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", + "mode": "earl:automatic", "result": { - "@id": "_:b22375", + "@id": "_:b25841", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1736", + "@id": "_:b6398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1737", + "@id": "_:b6399", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1742", + "@id": "_:b6406", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "result": { - "@id": "_:b14474", + "@id": "_:b16641", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1741", + "@id": "_:b6401", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20072", + "@id": "_:b23824", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1739", + "@id": "_:b6408", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13078", + "@id": "_:b15582", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1744", + "@id": "_:b6407", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "result": { - "@id": "_:b8392", + "@id": "_:b24212", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1740", + "@id": "_:b6403", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "result": { - "@id": "_:b15151", + "@id": "_:b25491", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1747", + "@id": "_:b6405", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048", "result": { - "@id": "_:b22472", + "@id": "_:b25842", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te021", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0048-out.jsonld", + "title": "@list with embedded object", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0048-in.jsonld", + "rdfs:comment": "Node definitions contained within lists are flattend to top level." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion", - "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest" + "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11157", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/e022-in.html#second", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/e022-out.jsonld", - "title": "Expands targeted JSON-LD script element with fragment and HTML base", - "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier", "assertions": [ { - "@id": "_:b14848", + "@id": "_:b13928", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "result": { - "@id": "_:b26849", + "@id": "_:b25859", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b14846", + "@id": "_:b13922", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24547", + "@id": "_:b23423", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14850", + "@id": "_:b13925", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", + "mode": "earl:automatic", "result": { - "@id": "_:b20867", + "@id": "_:b12460", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14849", + "@id": "_:b13929", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26710", + "@id": "_:b25860", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14844", + "@id": "_:b13920", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "result": { - "@id": "_:b23550", + "@id": "_:b13921", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14843", + "@id": "_:b13926", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18376", + "@id": "_:b25858", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14842", + "@id": "_:b13927", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22082", + "@id": "_:b17057", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14841", + "@id": "_:b13924", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "result": { - "@id": "_:b8706", + "@id": "_:b25425", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14847", + "@id": "_:b13930", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "result": { - "@id": "_:b17963", + "@id": "_:b23670", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14845", + "@id": "_:b13923", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049", "result": { - "@id": "_:b2931", + "@id": "_:b24530", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#te022", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/0049-out.jsonld", + "title": "context with JavaScript Object property names", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/0049-in.jsonld", + "rdfs:comment": "Flatten with context including JavaScript Object property names" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "TestCriterion" + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1680", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/c001-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/c001-out.jsonld", - "title": "Compacts embedded JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/html/c001-context.jsonld" + "@id": "_:b1249", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b6340", + "@id": "_:b1251", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "result": { - "@id": "_:b24224", + "@id": "_:b21709", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b6344", + "@id": "_:b1250", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24696", + "@id": "_:b10914", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b6341", + "@id": "_:b1254", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", + "mode": "earl:automatic", "result": { - "@id": "_:b20937", + "@id": "_:b18331", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6336", + "@id": "_:b1257", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11372", + "@id": "_:b23615", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b6337", + "@id": "_:b1252", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "result": { - "@id": "_:b13581", + "@id": "_:b9501", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b6338", + "@id": "_:b1253", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15794", + "@id": "_:b24480", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b6343", + "@id": "_:b1258", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b24695", + "@id": "_:b23340", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b6342", + "@id": "_:b1256", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "result": { - "@id": "_:b15859", + "@id": "_:b11101", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b6334", + "@id": "_:b1247", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "result": { - "@id": "_:b6335", + "@id": "_:b1248", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b6339", + "@id": "_:b1255", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001", "result": { - "@id": "_:b16744", + "@id": "_:b25384", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "mf:result": "conflicting indexes", + "title": "Conflicting indexes", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/e001-in.jsonld", + "rdfs:comment": "Verifies that an exception is raised in Flattening when conflicting indexes are found" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10618", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/c002-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/c002-out.jsonld", - "title": "Compacts first embedded JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/html/c002-context.jsonld" + "@id": "_:b10938", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b10625", + "@id": "_:b10936", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "result": { - "@id": "_:b21759", + "@id": "_:b10937", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b10621", + "@id": "_:b10942", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22451", + "@id": "_:b23032", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10627", + "@id": "_:b10944", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", + "mode": "earl:automatic", "result": { - "@id": "_:b13364", + "@id": "_:b23033", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10626", + "@id": "_:b10943", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25965", + "@id": "_:b5558", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10620", + "@id": "_:b10946", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "result": { - "@id": "_:b22253", + "@id": "_:b14605", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10619", + "@id": "_:b10939", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b15009", + "@id": "_:b16205", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10624", + "@id": "_:b10945", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22680", + "@id": "_:b23034", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10622", + "@id": "_:b10940", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "result": { - "@id": "_:b26545", + "@id": "_:b21800", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10623", + "@id": "_:b10947", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "result": { - "@id": "_:b26720", + "@id": "_:b19645", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10616", + "@id": "_:b10941", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01", "result": { - "@id": "_:b10617", + "@id": "_:b22967", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in01-out.jsonld", + "title": "Basic Included array", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in01-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10516", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/c003-in.html#second", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/c003-out.jsonld", - "title": "Compacts targeted JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/html/c003-context.jsonld" + "@id": "_:b12384", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b10521", + "@id": "_:b12388", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "result": { - "@id": "_:b25778", + "@id": "_:b24317", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b10514", + "@id": "_:b12389", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b10515", + "@id": "_:b13747", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10522", + "@id": "_:b12387", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", + "mode": "earl:automatic", "result": { - "@id": "_:b26536", + "@id": "_:b22804", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10520", + "@id": "_:b12391", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25507", + "@id": "_:b24318", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10524", + "@id": "_:b12390", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "result": { - "@id": "_:b25997", + "@id": "_:b18212", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10523", + "@id": "_:b12382", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26231", + "@id": "_:b12383", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10518", + "@id": "_:b12386", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8902", + "@id": "_:b9084", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10525", + "@id": "_:b12385", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "result": { - "@id": "_:b24024", + "@id": "_:b20816", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10517", + "@id": "_:b12392", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "result": { - "@id": "_:b23760", + "@id": "_:b24319", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10519", + "@id": "_:b12393", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02", "result": { - "@id": "_:b13279", + "@id": "_:b20807", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in02-out.jsonld", + "title": "Basic Included object", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in02-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#CompactTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9500", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/c004-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/c004-out.jsonld", - "title": "Compacts all embedded JSON-LD script elements with extractAllScripts option", - "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/html/c004-context.jsonld" + "@id": "_:b10681", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b9498", + "@id": "_:b10690", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "result": { - "@id": "_:b9499", + "@id": "_:b11181", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b9501", + "@id": "_:b10688", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b15432", + "@id": "_:b26639", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9507", + "@id": "_:b10680", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", + "mode": "earl:automatic", "result": { - "@id": "_:b15227", + "@id": "_:b7595", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9504", + "@id": "_:b10685", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b24879", + "@id": "_:b24951", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9509", + "@id": "_:b10682", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "result": { - "@id": "_:b25956", + "@id": "_:b14907", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9503", + "@id": "_:b10684", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22206", + "@id": "_:b23000", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9508", + "@id": "_:b10689", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21378", + "@id": "_:b8248", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9505", + "@id": "_:b10686", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "result": { - "@id": "_:b26094", + "@id": "_:b21942", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9502", + "@id": "_:b10683", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "result": { - "@id": "_:b20771", + "@id": "_:b22076", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9506", + "@id": "_:b10687", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03", "result": { - "@id": "_:b26426", + "@id": "_:b26638", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tc004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in03-out.jsonld", + "title": "Multiple properties mapping to @included are folded together", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in03-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1235", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/f001-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/f001-out.jsonld", - "title": "Flattens embedded JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/html/f001-context.jsonld" + "@id": "_:b3848", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b1241", + "@id": "_:b15387", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "result": { - "@id": "_:b4028", + "@id": "_:b16681", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b1238", + "@id": "_:b15386", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b4025", + "@id": "_:b25512", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1243", + "@id": "_:b15388", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", + "mode": "earl:automatic", "result": { - "@id": "_:b4030", + "@id": "_:b26932", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1240", + "@id": "_:b15381", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b4027", + "@id": "_:b15382", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1233", + "@id": "_:b15391", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "result": { - "@id": "_:b1234", + "@id": "_:b26708", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1239", + "@id": "_:b15384", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b4026", + "@id": "_:b22372", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1244", + "@id": "_:b15383", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4031", + "@id": "_:b18878", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1236", + "@id": "_:b15385", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "result": { - "@id": "_:b4023", + "@id": "_:b23424", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1237", + "@id": "_:b15389", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "result": { - "@id": "_:b4024", + "@id": "_:b16779", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1242", + "@id": "_:b15390", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04", "result": { - "@id": "_:b4029", + "@id": "_:b25535", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf001", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] - }, + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in04-out.jsonld", + "title": "Included containing @included", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in04-in.jsonld", + "rdfs:comment": "Tests included blocks." + }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b17932", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/f002-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/f002-out.jsonld", - "title": "Flattens first embedded JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/html/f002-context.jsonld" + "@id": "_:b14788", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b17935", + "@id": "_:b14796", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "result": { - "@id": "_:b23466", + "@id": "_:b24906", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b17933", + "@id": "_:b14789", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21149", + "@id": "_:b19332", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b17936", + "@id": "_:b14794", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", + "mode": "earl:automatic", "result": { - "@id": "_:b26235", + "@id": "_:b18663", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17930", + "@id": "_:b14792", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b17931", + "@id": "_:b25602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b17939", + "@id": "_:b14790", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "result": { - "@id": "_:b26306", + "@id": "_:b23397", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b17937", + "@id": "_:b14791", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24647", + "@id": "_:b25601", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b17941", + "@id": "_:b14786", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b20796", + "@id": "_:b14787", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b17938", + "@id": "_:b14793", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "result": { - "@id": "_:b20052", + "@id": "_:b25603", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b17940", + "@id": "_:b14797", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "result": { - "@id": "_:b26307", + "@id": "_:b11322", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b17934", + "@id": "_:b14795", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05", "result": { - "@id": "_:b22721", + "@id": "_:b16137", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf002", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in05-out.jsonld", + "title": "Property value with @included", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in05-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12229", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/f003-in.html#second", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/f003-out.jsonld", - "title": "Flattens targeted JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/html/f003-context.jsonld" + "@id": "_:b11452", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b12231", + "@id": "_:b11458", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "result": { - "@id": "_:b20806", + "@id": "_:b24920", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b12235", + "@id": "_:b11456", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26514", + "@id": "_:b26075", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12238", + "@id": "_:b11460", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", + "mode": "earl:automatic", "result": { - "@id": "_:b25752", + "@id": "_:b20447", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12234", + "@id": "_:b11461", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21904", + "@id": "_:b26155", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12230", + "@id": "_:b11457", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "result": { - "@id": "_:b17830", + "@id": "_:b24706", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12236", + "@id": "_:b11453", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26740", + "@id": "_:b18928", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12232", + "@id": "_:b11454", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21372", + "@id": "_:b3644", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12237", + "@id": "_:b11450", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "result": { - "@id": "_:b26441", + "@id": "_:b11451", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12227", + "@id": "_:b11455", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "result": { - "@id": "_:b12228", + "@id": "_:b16594", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12233", + "@id": "_:b11459", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06", "result": { - "@id": "_:b24196", + "@id": "_:b22116", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf003", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/in06-out.jsonld", + "title": "json.api example", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/in06-in.jsonld", + "rdfs:comment": "Tests included blocks." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5611", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/f004-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/f004-out.jsonld", - "title": "Flattens all script elements by default", - "rdfs:comment": "Tests embedded JSON-LD in HTML multiple script elements", - "https://w3c.github.io/json-ld-api/tests/vocab#context": { - "@id": "https://w3c.github.io/json-ld-api/tests/html/f004-context.jsonld" + "@id": "_:b2999", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, "assertions": [ { - "@id": "_:b5620", + "@id": "_:b3003", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "result": { - "@id": "_:b18691", + "@id": "_:b21785", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b5619", + "@id": "_:b3002", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23030", + "@id": "_:b21784", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5614", + "@id": "_:b3005", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", + "mode": "earl:automatic", "result": { - "@id": "_:b19964", + "@id": "_:b21786", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5618", + "@id": "_:b3008", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26106", + "@id": "_:b21787", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5615", + "@id": "_:b3006", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "result": { - "@id": "_:b19654", + "@id": "_:b3998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5616", + "@id": "_:b3000", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b24309", + "@id": "_:b5630", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5609", + "@id": "_:b3007", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b5610", + "@id": "_:b4561", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5612", + "@id": "_:b3004", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "result": { - "@id": "_:b11969", + "@id": "_:b20741", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5617", + "@id": "_:b3001", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "result": { - "@id": "_:b15856", + "@id": "_:b12234", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5613", + "@id": "_:b2997", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/rdf-parse/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01", "result": { - "@id": "_:b16348", + "@id": "_:b2998", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tf004", + "subject": "https://www.npmjs.com/package/rdf-parse/", "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/li01-out.jsonld", + "title": "@list containing an deep list", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/li01-in.jsonld", + "rdfs:comment": "Lists of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11042", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b20686", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r001-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r001-out.nq", - "title": "Transforms embedded JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b13865", + "@id": "_:b20691", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "result": { - "@id": "_:b14506", + "@id": "_:b26849", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b13860", + "@id": "_:b20694", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21970", + "@id": "_:b25550", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b13863", + "@id": "_:b20688", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", + "mode": "earl:automatic", "result": { - "@id": "_:b21972", + "@id": "_:b24455", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13859", + "@id": "_:b20690", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b21969", + "@id": "_:b23107", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b13862", + "@id": "_:b20695", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "result": { - "@id": "_:b13814", + "@id": "_:b26503", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b13857", + "@id": "_:b20684", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b14696", + "@id": "_:b20685", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b13864", + "@id": "_:b20692", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21973", + "@id": "_:b20200", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b13861", + "@id": "_:b20689", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "result": { - "@id": "_:b21971", + "@id": "_:b18338", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b13855", + "@id": "_:b20693", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "result": { - "@id": "_:b13856", + "@id": "_:b20155", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b13858", + "@id": "_:b20687", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02", "result": { - "@id": "_:b21968", + "@id": "_:b15374", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr001" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/li02-out.jsonld", + "title": "@list containing empty @list", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/li02-in.jsonld", + "rdfs:comment": "Lists of lists" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", + "@id": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", + "https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest", "TestCase", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b12107", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { - "@value": "false", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b7395", + "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r002-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r002-out.nq", - "title": "Transforms first embedded JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b12108", + "@id": "_:b7404", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "result": { - "@id": "_:b17451", + "@id": "_:b18405", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b12112", + "@id": "_:b7400", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17454", + "@id": "_:b18403", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12110", + "@id": "_:b7401", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", + "mode": "earl:automatic", "result": { - "@id": "_:b17452", + "@id": "_:b1412", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12109", + "@id": "_:b7403", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b1258", + "@id": "_:b8822", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12116", + "@id": "_:b7397", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "result": { - "@id": "_:b17456", + "@id": "_:b12457", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12114", + "@id": "_:b7393", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6638", + "@id": "_:b7394", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12111", + "@id": "_:b7398", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17453", + "@id": "_:b18401", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12115", + "@id": "_:b7399", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "result": { - "@id": "_:b14503", + "@id": "_:b18402", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12113", + "@id": "_:b7396", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "result": { - "@id": "_:b17455", + "@id": "_:b14995", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12105", + "@id": "_:b7402", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03", "result": { - "@id": "_:b12106", + "@id": "_:b18404", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr002" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] - }, + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/flatten/li03-out.jsonld", + "title": "@list containing mixed list values", + "testAction": "https://w3c.github.io/json-ld-api/tests/flatten/li03-in.jsonld", + "rdfs:comment": "Lists of lists" + } + ], + "title": "Flattening", + "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", + "rdfs:comment": "These tests implement the requirements for the JSON-LD [Flattening Algorithm](https://www.w3.org/TR/json-ld11-api/#flattening-algorithm)." + }, + { + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest", + "@type": [ + "Report", + "mf:Manifest" + ], + "entries": [ { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2170", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r003-in.html#second", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r003-out.nq", - "title": "Transforms targeted JSON-LD script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier", "assertions": [ { - "@id": "_:b2179", + "@id": "_:b7807", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "result": { - "@id": "_:b24111", + "@id": "_:b7808", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b2177", + "@id": "_:b7816", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b24110", + "@id": "_:b22701", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2174", + "@id": "_:b7815", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", + "mode": "earl:automatic", "result": { - "@id": "_:b17970", + "@id": "_:b25683", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2171", + "@id": "_:b7812", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b7363", + "@id": "_:b26484", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2178", + "@id": "_:b7811", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "result": { - "@id": "_:b18131", + "@id": "_:b16975", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2173", + "@id": "_:b7817", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b16319", + "@id": "_:b23781", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2175", + "@id": "_:b7810", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b23659", + "@id": "_:b20608", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2168", + "@id": "_:b7809", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "result": { - "@id": "_:b2169", + "@id": "_:b25296", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2176", + "@id": "_:b7814", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "result": { - "@id": "_:b24109", + "@id": "_:b22178", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2172", + "@id": "_:b7813", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001", "result": { - "@id": "_:b15040", + "@id": "_:b26821", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr003" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld", + "title": "load JSON-LD document", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld", + "rdfs:comment": "Document loader loads a JSON-LD document." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b13227", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r004-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r004-out.nq", - "title": "Expands all embedded JSON-LD script elements with extractAllScripts option", - "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements", "assertions": [ { - "@id": "_:b14137", + "@id": "_:b9816", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "result": { - "@id": "_:b3851", + "@id": "_:b25571", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b14135", + "@id": "_:b9814", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b14926", + "@id": "_:b26114", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b14136", + "@id": "_:b9809", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", + "mode": "earl:automatic", "result": { - "@id": "_:b24456", + "@id": "_:b19819", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14143", + "@id": "_:b9813", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14692", + "@id": "_:b20518", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b14138", + "@id": "_:b9810", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "result": { - "@id": "_:b3786", + "@id": "_:b22506", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b14142", + "@id": "_:b9806", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b27007", + "@id": "_:b9807", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b14141", + "@id": "_:b9808", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25651", + "@id": "_:b19227", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b14133", + "@id": "_:b9815", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "result": { - "@id": "_:b14134", + "@id": "_:b16176", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b14140", + "@id": "_:b9811", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "result": { - "@id": "_:b22538", + "@id": "_:b23240", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b14139", + "@id": "_:b9812", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002", "result": { - "@id": "_:b25349", + "@id": "_:b25136", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr004" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0002-out.jsonld", + "title": "load JSON document", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0002-in.json", + "rdfs:comment": "Document loader loads a JSON document." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8051", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b7334", + "https://w3c.github.io/json-ld-api/tests/vocab#contentType": "application/jldTest+json" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r005-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r005-out.nq", - "title": "Expands multiple embedded JSON-LD script elements where one is an array", - "rdfs:comment": "Tests embedded JSON-LD in HTML extracting all elements with array", "assertions": [ { - "@id": "_:b8049", + "@id": "_:b7343", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "result": { - "@id": "_:b8050", + "@id": "_:b15609", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b8052", + "@id": "_:b7337", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b18687", + "@id": "_:b15603", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8057", + "@id": "_:b7340", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", + "mode": "earl:automatic", "result": { - "@id": "_:b22613", + "@id": "_:b15606", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8054", + "@id": "_:b7336", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22611", + "@id": "_:b15602", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8059", + "@id": "_:b7338", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "result": { - "@id": "_:b22614", + "@id": "_:b15604", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8055", + "@id": "_:b7335", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b22612", + "@id": "_:b15601", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8056", + "@id": "_:b7332", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22421", + "@id": "_:b7333", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8053", + "@id": "_:b7341", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "result": { - "@id": "_:b22610", + "@id": "_:b15607", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8060", + "@id": "_:b7342", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "result": { - "@id": "_:b22615", + "@id": "_:b15608", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8058", + "@id": "_:b7339", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003", "result": { - "@id": "_:b19138", + "@id": "_:b15605", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr005" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0003-out.jsonld", + "title": "load JSON document with extension-type", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0003-in.jldt", + "rdfs:comment": "Document loader loads a JSON document having an extension mime-subtype." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b439", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b16469", + "https://w3c.github.io/json-ld-api/tests/vocab#contentType": "application/jldTest" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r006-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r006-out.nq", - "title": "Expands as empty with no embedded JSON-LD script elements", - "rdfs:comment": "Tests embedded JSON-LD in HTML when none exist", "assertions": [ { - "@id": "_:b12015", + "@id": "_:b19909", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "result": { - "@id": "_:b17108", + "@id": "_:b26665", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b12014", + "@id": "_:b19906", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b26974", + "@id": "_:b25069", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b12011", + "@id": "_:b19901", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", + "mode": "earl:automatic", "result": { - "@id": "_:b25919", + "@id": "_:b19902", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12016", + "@id": "_:b19904", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b25845", + "@id": "_:b19872", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b12008", + "@id": "_:b19911", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "result": { - "@id": "_:b4346", + "@id": "_:b20394", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b12012", + "@id": "_:b19905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b18162", + "@id": "_:b23707", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b12009", + "@id": "_:b19907", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b21407", + "@id": "_:b17846", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b12010", + "@id": "_:b19910", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "result": { - "@id": "_:b23016", + "@id": "_:b26572", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b12006", + "@id": "_:b19903", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "result": { - "@id": "_:b12007", + "@id": "_:b8413", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b12013", + "@id": "_:b19908", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004", "result": { - "@id": "_:b25204", + "@id": "_:b26164", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr006" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "mf:result": "loading document failed", + "title": "loading an unknown type raises loading document failed", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0004-in.jldte", + "rdfs:comment": "Loading a document with a non-JSON mime type raises loading document failed" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b5124", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts": { - "@value": "true", - "@type": "http://www.w3.org/2001/XMLSchema#boolean" + "@id": "_:b7900", + "https://w3c.github.io/json-ld-api/tests/vocab#httpStatus": { + "@value": "301", + "@type": "http://www.w3.org/2001/XMLSchema#integer" }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "https://w3c.github.io/json-ld-api/tests/vocab#redirectTo": { + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r007-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r007-out.nq", - "title": "Expands as empty with no embedded JSON-LD script elements and extractAllScripts", - "rdfs:comment": "Tests embedded JSON-LD in HTML when none exist extracting all elements", "assertions": [ { - "@id": "_:b5128", + "@id": "_:b7902", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "result": { - "@id": "_:b19786", + "@id": "_:b7912", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b5132", + "@id": "_:b7904", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b23656", + "@id": "_:b7914", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b5126", + "@id": "_:b7907", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", + "mode": "earl:automatic", "result": { - "@id": "_:b14655", + "@id": "_:b7917", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5131", + "@id": "_:b7905", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b16263", + "@id": "_:b7915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b5129", + "@id": "_:b7910", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "result": { - "@id": "_:b3696", + "@id": "_:b7919", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b5130", + "@id": "_:b7909", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b26176", + "@id": "_:b2509", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b5125", + "@id": "_:b7901", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13126", + "@id": "_:b7911", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b5122", + "@id": "_:b7908", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "result": { - "@id": "_:b5123", + "@id": "_:b7918", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b5127", + "@id": "_:b7903", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "result": { - "@id": "_:b19200", + "@id": "_:b7913", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b5133", + "@id": "_:b7906", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005", "result": { - "@id": "_:b5499", + "@id": "_:b7916", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr007" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld", + "title": "Load JSON-LD through 301 redirect", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0005-in.jsonld", + "rdfs:comment": "Loading a document with a redirect should use the redirected URL as document base" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b9728", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b10422", + "https://w3c.github.io/json-ld-api/tests/vocab#httpStatus": { + "@value": "303", + "@type": "http://www.w3.org/2001/XMLSchema#integer" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#redirectTo": { + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r010-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r010-out.nq", - "title": "Expands embedded JSON-LD script element with HTML character references", - "rdfs:comment": "Tests embedded JSON-LD in HTML with character references", "assertions": [ { - "@id": "_:b9736", + "@id": "_:b17927", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "result": { - "@id": "_:b21926", + "@id": "_:b20396", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b9731", + "@id": "_:b17923", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b21922", + "@id": "_:b20432", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b9734", + "@id": "_:b17924", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", + "mode": "earl:automatic", "result": { - "@id": "_:b21924", + "@id": "_:b6539", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9726", + "@id": "_:b17929", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b9727", + "@id": "_:b25915", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b9735", + "@id": "_:b17925", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "result": { - "@id": "_:b21925", + "@id": "_:b24278", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b9737", + "@id": "_:b17928", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b21927", + "@id": "_:b1860", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b9732", + "@id": "_:b17922", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13499", + "@id": "_:b17282", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b9729", + "@id": "_:b17931", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "result": { - "@id": "_:b12308", + "@id": "_:b25934", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b9733", + "@id": "_:b17926", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "result": { - "@id": "_:b21923", + "@id": "_:b24796", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b9730", + "@id": "_:b17930", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006", "result": { - "@id": "_:b17309", + "@id": "_:b14440", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr010" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld", + "title": "Load JSON-LD through 303 redirect", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0006-in.jsonld", + "rdfs:comment": "Loading a document with a redirect should use the redirected URL as document base" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", + "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7155", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b16068", + "https://w3c.github.io/json-ld-api/tests/vocab#httpStatus": { + "@value": "307", + "@type": "http://www.w3.org/2001/XMLSchema#integer" + }, + "https://w3c.github.io/json-ld-api/tests/vocab#redirectTo": { + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld" + } }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r011-in.html#third", - "mf:result": "loading document failed", - "title": "Errors if no element found at target", - "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist", "assertions": [ { - "@id": "_:b7158", + "@id": "_:b16075", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "result": { - "@id": "_:b24697", + "@id": "_:b25552", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b7161", + "@id": "_:b16074", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25694", + "@id": "_:b7202", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7159", + "@id": "_:b16072", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", + "mode": "earl:automatic", "result": { - "@id": "_:b19722", + "@id": "_:b10717", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7156", + "@id": "_:b16066", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b14804", + "@id": "_:b16067", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7164", + "@id": "_:b16073", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "result": { - "@id": "_:b25696", + "@id": "_:b16725", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7162", + "@id": "_:b16070", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25695", + "@id": "_:b22153", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7163", + "@id": "_:b16077", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b15877", + "@id": "_:b19828", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7157", + "@id": "_:b16069", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "result": { - "@id": "_:b17033", + "@id": "_:b19787", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7165", + "@id": "_:b16076", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "result": { - "@id": "_:b24806", + "@id": "_:b19742", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7160", + "@id": "_:b16071", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007", "result": { - "@id": "_:b25693", + "@id": "_:b25480", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr011" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld", + "title": "Load JSON-LD through 307 redirect", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0007-in.jsonld", + "rdfs:comment": "Loading a document with a redirect should use the redirected URL as document base" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], - "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10994", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" - }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r012-in.html#first", - "mf:result": "loading document failed", - "title": "Errors if targeted element is not a script element", - "rdfs:comment": "Tests embedded JSON-LD in HTML which isn't a script element", "assertions": [ { - "@id": "_:b11000", + "@id": "_:b3833", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "result": { - "@id": "_:b11010", + "@id": "_:b25639", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b11001", + "@id": "_:b3830", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11011", + "@id": "_:b23119", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10998", + "@id": "_:b3828", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", + "mode": "earl:automatic", "result": { - "@id": "_:b11008", + "@id": "_:b14475", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11002", + "@id": "_:b3825", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11012", + "@id": "_:b3826", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11003", + "@id": "_:b3829", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "result": { - "@id": "_:b11013", + "@id": "_:b20849", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10999", + "@id": "_:b3832", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b11009", + "@id": "_:b17833", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11004", + "@id": "_:b3834", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11014", + "@id": "_:b19984", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10997", + "@id": "_:b3831", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "result": { - "@id": "_:b11007", + "@id": "_:b23837", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10996", + "@id": "_:b3827", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "result": { - "@id": "_:b11006", + "@id": "_:b7351", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10995", + "@id": "_:b3835", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008", "result": { - "@id": "_:b11005", + "@id": "_:b25640", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr012" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "mf:result": "loading document failed", + "title": "Non-existant file (404)", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/missing-in.jsonld", + "rdfs:comment": "Loading a non-existant file raises loading document failed error" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b8957", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b15333", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "<0009-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r013-in.html#first", - "mf:result": "loading document failed", - "title": "Errors if targeted element does not have type application/ld+json", - "rdfs:comment": "Tests embedded JSON-LD in HTML with wrong type", "assertions": [ { - "@id": "_:b8965", + "@id": "_:b15342", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "result": { - "@id": "_:b21551", + "@id": "_:b20201", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b8959", + "@id": "_:b15340", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22554", + "@id": "_:b26091", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8958", + "@id": "_:b15338", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", + "mode": "earl:automatic", "result": { - "@id": "_:b14471", + "@id": "_:b25654", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8962", + "@id": "_:b15334", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b19469", + "@id": "_:b16596", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8966", + "@id": "_:b15341", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "result": { - "@id": "_:b25512", + "@id": "_:b26092", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8955", + "@id": "_:b15337", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b8956", + "@id": "_:b24058", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8964", + "@id": "_:b15335", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b22936", + "@id": "_:b19945", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8961", + "@id": "_:b15339", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "result": { - "@id": "_:b25710", + "@id": "_:b21275", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8963", + "@id": "_:b15331", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "result": { - "@id": "_:b25711", + "@id": "_:b15332", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8960", + "@id": "_:b15336", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009", "result": { - "@id": "_:b22787", + "@id": "_:b21766", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr013" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0009-out.jsonld", + "title": "load JSON-LD document with link", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0009-in.jsonld", + "rdfs:comment": "If a context is specified in a link header, it is not used for JSON-LD." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3983", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b15063", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "<0010-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r014-in.html", - "mf:result": "invalid script element", - "title": "Errors if uncommented script text contains comment", - "rdfs:comment": "Tests embedded JSON-LD in HTML with comments leftover", "assertions": [ { - "@id": "_:b3981", + "@id": "_:b15072", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "result": { - "@id": "_:b3982", + "@id": "_:b26704", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b3988", + "@id": "_:b15061", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17686", + "@id": "_:b15062", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3987", + "@id": "_:b15065", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", + "mode": "earl:automatic", "result": { - "@id": "_:b22778", + "@id": "_:b25197", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3991", + "@id": "_:b15066", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26145", + "@id": "_:b16677", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3984", + "@id": "_:b15064", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "result": { - "@id": "_:b6259", + "@id": "_:b22893", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3990", + "@id": "_:b15067", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25828", + "@id": "_:b26488", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3989", + "@id": "_:b15071", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b25984", + "@id": "_:b26009", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3992", + "@id": "_:b15068", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "result": { - "@id": "_:b26958", + "@id": "_:b14636", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3985", + "@id": "_:b15070", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "result": { - "@id": "_:b15791", + "@id": "_:b20359", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3986", + "@id": "_:b15069", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010", "result": { - "@id": "_:b19557", + "@id": "_:b22084", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr014" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0010-out.jsonld", + "title": "load JSON document with link", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0010-in.json", + "rdfs:comment": "If a context is specified in a link header, it is used for JSON." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b1574", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b13366", + "https://w3c.github.io/json-ld-api/tests/vocab#contentType": "application/jldTest+json", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "<0011-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r015-in.html", - "mf:result": "invalid script element", - "title": "Errors if end comment missing", - "rdfs:comment": "Tests embedded JSON-LD in HTML with unballanced comments", "assertions": [ { - "@id": "_:b1579", + "@id": "_:b13367", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "result": { - "@id": "_:b22194", + "@id": "_:b16837", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b1576", + "@id": "_:b13372", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22192", + "@id": "_:b20826", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b1572", + "@id": "_:b13370", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", + "mode": "earl:automatic", "result": { - "@id": "_:b1573", + "@id": "_:b21702", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1580", + "@id": "_:b13374", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b22195", + "@id": "_:b4461", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b1583", + "@id": "_:b13369", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "result": { - "@id": "_:b10784", + "@id": "_:b20138", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b1577", + "@id": "_:b13375", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b17597", + "@id": "_:b942", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b1582", + "@id": "_:b13368", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b4292", + "@id": "_:b19057", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b1575", + "@id": "_:b13364", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "result": { - "@id": "_:b14255", + "@id": "_:b13365", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b1581", + "@id": "_:b13371", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "result": { - "@id": "_:b12197", + "@id": "_:b24583", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b1578", + "@id": "_:b13373", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011", "result": { - "@id": "_:b22193", + "@id": "_:b26980", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr015" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0011-out.jsonld", + "title": "load JSON document with extension-type with link", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0011-in.jldt", + "rdfs:comment": "If a context is specified in a link header, it is used for a JSON extension type." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", - "TestCriterion" + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "TestCriterion", + "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b10230", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b5010", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": [ + "<0012-context1.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"", + "<0012-context2.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" + ] }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r016-in.html", - "mf:result": "invalid script element", - "title": "Errors if start comment missing", - "rdfs:comment": "Tests embedded JSON-LD in HTML with unballanced comments", "assertions": [ { - "@id": "_:b10228", + "@id": "_:b5008", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "result": { - "@id": "_:b10229", + "@id": "_:b5009", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b10234", + "@id": "_:b5016", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b22763", + "@id": "_:b26530", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b10232", + "@id": "_:b5012", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", + "mode": "earl:automatic", "result": { - "@id": "_:b18538", + "@id": "_:b21202", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10237", + "@id": "_:b5019", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11321", + "@id": "_:b941", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b10238", + "@id": "_:b5011", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "result": { - "@id": "_:b18566", + "@id": "_:b17798", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b10231", + "@id": "_:b5015", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b10211", + "@id": "_:b17177", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b10239", + "@id": "_:b5014", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b19074", + "@id": "_:b26350", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b10233", + "@id": "_:b5017", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "result": { - "@id": "_:b22762", + "@id": "_:b27012", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b10235", + "@id": "_:b5013", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "result": { - "@id": "_:b22764", + "@id": "_:b26085", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b10236", + "@id": "_:b5018", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012", "result": { - "@id": "_:b22488", + "@id": "_:b26353", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr016" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "mf:result": "multiple context link headers", + "title": "Multiple context link headers", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0012-in.json", + "rdfs:comment": "Loading a file when multiple link headers are returned is an error" }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", - "https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest", "TestCase", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", + "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b7064", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b7030", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "<0013-context.html>; rel=\"http://www.w3.org/ns/json-ld#context\"" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r017-in.html", - "mf:result": "invalid script element", - "title": "Errors if uncommented script is not valid JSON", - "rdfs:comment": "Tests embedded JSON-LD in HTML which is invalid JSON", "assertions": [ { - "@id": "_:b7062", + "@id": "_:b7034", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "result": { - "@id": "_:b7063", + "@id": "_:b17731", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b7070", + "@id": "_:b7031", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b25292", + "@id": "_:b13301", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b7068", + "@id": "_:b7036", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "result": { - "@id": "_:b24980", + "@id": "_:b17733", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", + "subject": "https://github.com/digitalbazaar/jsonld.js", "assertedBy": null }, { - "@id": "_:b7065", + "@id": "_:b7032", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b10770", + "@id": "_:b13905", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b7072", + "@id": "_:b7028", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "result": { - "@id": "_:b3398", + "@id": "_:b7029", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b7069", + "@id": "_:b7035", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b25481", + "@id": "_:b17732", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b7073", + "@id": "_:b7039", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b17904", + "@id": "_:b17735", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b7071", + "@id": "_:b7033", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "result": { - "@id": "_:b26138", + "@id": "_:b17730", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b7066", + "@id": "_:b7037", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "result": { - "@id": "_:b16745", + "@id": "_:b17734", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b7067", + "@id": "_:b7038", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013", "result": { - "@id": "_:b24072", + "@id": "_:b14904", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr017" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/0013-out.jsonld", + "title": "load JSON document with link to HTML document", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/0013-in.json", + "rdfs:comment": "If a context is specified in a link header, it is used for JSON, extracting from HTML." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b15302", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b16844", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/ld+json\"" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r018-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r018-out.nq", - "title": "Expands embedded JSON-LD script element relative to document base", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b15309", + "@id": "_:b16848", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "result": { - "@id": "_:b17867", + "@id": "_:b25551", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b15305", + "@id": "_:b16845", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b20978", + "@id": "_:b20435", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b15307", + "@id": "_:b16849", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", + "mode": "earl:automatic", "result": { - "@id": "_:b20980", + "@id": "_:b25543", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15308", + "@id": "_:b16842", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b20981", + "@id": "_:b16843", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b15311", + "@id": "_:b16850", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "result": { - "@id": "_:b15516", + "@id": "_:b20612", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b15306", + "@id": "_:b16847", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20979", + "@id": "_:b19776", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b15301", + "@id": "_:b16852", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b11067", + "@id": "_:b21765", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b15303", + "@id": "_:b16846", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "result": { - "@id": "_:b20820", + "@id": "_:b23933", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b15304", + "@id": "_:b16853", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "result": { - "@id": "_:b18241", + "@id": "_:b15585", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b15310", + "@id": "_:b16851", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01", "result": { - "@id": "_:b20982", + "@id": "_:b23251", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr018" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la01-out.jsonld", + "title": "Redirects if type is text/html", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la01-in.html", + "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b2717", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://a.example.com/doc" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b12853", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/ld+json\"" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r019-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r019-out.nq", - "title": "Expands embedded JSON-LD script element relative to base option", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b2723", + "@id": "_:b12860", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "result": { - "@id": "_:b26840", + "@id": "_:b26335", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b2718", + "@id": "_:b12858", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b11069", + "@id": "_:b26974", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b2719", + "@id": "_:b12855", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", + "mode": "earl:automatic", "result": { - "@id": "_:b20311", + "@id": "_:b23256", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2721", + "@id": "_:b12861", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b26385", + "@id": "_:b26444", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b2724", + "@id": "_:b12862", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "result": { - "@id": "_:b26931", + "@id": "_:b23272", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b2720", + "@id": "_:b12857", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b23427", + "@id": "_:b24339", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b2725", + "@id": "_:b12854", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b26521", + "@id": "_:b20203", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b2722", + "@id": "_:b12852", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "result": { - "@id": "_:b11071", + "@id": "_:b12557", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b2726", + "@id": "_:b12859", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "result": { - "@id": "_:b26579", + "@id": "_:b26975", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b2715", + "@id": "_:b12856", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02", "result": { - "@id": "_:b2716", + "@id": "_:b22440", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr019" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la02-out.jsonld", + "title": "Does not redirect if type is application/ld+json", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la02-in.jsonld", + "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b11837", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://a.example.com/doc" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b11950", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/json\"" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r020-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r020-out.nq", - "title": "Expands embedded JSON-LD script element relative to HTML base", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b11846", + "@id": "_:b11958", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "result": { - "@id": "_:b20547", + "@id": "_:b25717", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b11838", + "@id": "_:b11952", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b12361", + "@id": "_:b18848", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b11844", + "@id": "_:b11954", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", + "mode": "earl:automatic", "result": { - "@id": "_:b20545", + "@id": "_:b23048", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11835", + "@id": "_:b11957", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b11836", + "@id": "_:b25902", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b11841", + "@id": "_:b11956", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "result": { - "@id": "_:b7629", + "@id": "_:b18869", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b11842", + "@id": "_:b11953", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b20543", + "@id": "_:b25277", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b11840", + "@id": "_:b11959", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b13431", + "@id": "_:b26126", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b11839", + "@id": "_:b11951", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "result": { - "@id": "_:b18863", + "@id": "_:b20490", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b11845", + "@id": "_:b11955", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "result": { - "@id": "_:b20546", + "@id": "_:b26125", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b11843", + "@id": "_:b11948", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03", "result": { - "@id": "_:b20544", + "@id": "_:b11949", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr020" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la03-out.jsonld", + "title": "Does not redirect if link type is not application/ld+json", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la03-in.json", + "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b184", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#base": { - "@id": "http://a.example.com/doc" - }, - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b11830", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/ld+json\"" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r021-in.html", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r021-out.nq", - "title": "Expands embedded JSON-LD script element relative to relative HTML base", - "rdfs:comment": "Tests embedded JSON-LD in HTML", "assertions": [ { - "@id": "_:b8833", + "@id": "_:b11832", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "result": { - "@id": "_:b17378", + "@id": "_:b20641", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b8826", + "@id": "_:b11835", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b17374", + "@id": "_:b16359", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b8825", + "@id": "_:b11833", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", + "mode": "earl:automatic", "result": { - "@id": "_:b17373", + "@id": "_:b22069", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8832", + "@id": "_:b11839", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6971", + "@id": "_:b3061", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b8831", + "@id": "_:b11837", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "result": { - "@id": "_:b17377", + "@id": "_:b22071", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b8827", + "@id": "_:b11831", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b1055", + "@id": "_:b12100", "@type": "TestResult", - "outcome": "earl:failed" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b8823", + "@id": "_:b11828", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b8824", + "@id": "_:b11829", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b8830", + "@id": "_:b11838", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "result": { - "@id": "_:b17376", + "@id": "_:b20522", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b8828", + "@id": "_:b11834", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "result": { - "@id": "_:b14159", + "@id": "_:b11025", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b8829", + "@id": "_:b11836", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04", "result": { - "@id": "_:b17375", + "@id": "_:b22070", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr021" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] + ], + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la04-out.jsonld", + "title": "Does not redirect if type is application/json", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la04-in.json", + "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate." }, { - "@id": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", + "@id": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "@type": [ - "https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest", "TestCase", + "https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest", "https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest", - "https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest", "TestCriterion" ], "https://w3c.github.io/json-ld-api/tests/vocab#option": { - "@id": "_:b3700", - "https://w3c.github.io/json-ld-api/tests/vocab#specVersion": "json-ld-1.1", - "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction" + "@id": "_:b1848", + "https://w3c.github.io/json-ld-api/tests/vocab#processorFeature": "HTML Script Extraction", + "https://w3c.github.io/json-ld-api/tests/vocab#httpLink": "; rel=\"alternate\"; type=\"application/ld+json\"" }, - "testAction": "https://w3c.github.io/json-ld-api/tests/html/r022-in.html#second", - "testResult": "https://w3c.github.io/json-ld-api/tests/html/r022-out.nq", - "title": "Expands targeted JSON-LD script element with fragment and HTML base", - "rdfs:comment": "Tests embedded JSON-LD in HTML with fragment identifier", "assertions": [ { - "@id": "_:b3698", + "@id": "_:b1852", "@type": "Assertion", - "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "result": { - "@id": "_:b3699", + "@id": "_:b21357", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", + "subject": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", "assertedBy": null }, { - "@id": "_:b3705", + "@id": "_:b1846", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "mode": "earl:automatic", - "subject": "https://framagit.org/tyreunom/guile-jsonld", - "assertedBy": "https://lepiller.eu/#me", "result": { - "@id": "_:b6179", + "@id": "_:b1847", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022" + "subject": "https://framagit.org/tyreunom/guile-jsonld", + "assertedBy": "https://lepiller.eu/#me" }, { - "@id": "_:b3707", + "@id": "_:b1853", "@type": "Assertion", - "subject": "https://github.com/digitalbazaar/jsonld.js", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", + "mode": "earl:automatic", "result": { - "@id": "_:b6180", + "@id": "_:b25265", "@type": "TestResult", - "outcome": "earl:untested" + "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", - "assertedBy": null + "subject": "https://github.com/digitalbazaar/jsonld.js", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3709", + "@id": "_:b1849", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "mode": "earl:automatic", - "subject": "https://github.com/digitalbazaar/pyld", - "assertedBy": "https://github.com/dlongley", "result": { - "@id": "_:b6182", + "@id": "_:b15409", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022" + "subject": "https://github.com/digitalbazaar/pyld", + "assertedBy": "https://github.com/dlongley" }, { - "@id": "_:b3701", + "@id": "_:b1857", "@type": "Assertion", - "subject": "https://github.com/pchampin/sophia_rs", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "result": { - "@id": "_:b6175", + "@id": "_:b25776", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", + "subject": "https://github.com/pchampin/sophia_rs", "assertedBy": null }, { - "@id": "_:b3708", + "@id": "_:b1850", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "mode": "earl:automatic", - "subject": "https://github.com/piprate/json-gold", - "assertedBy": "https://github.com/kazarena", "result": { - "@id": "_:b6181", + "@id": "_:b21919", "@type": "TestResult", "outcome": "earl:failed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022" + "subject": "https://github.com/piprate/json-gold", + "assertedBy": "https://github.com/kazarena" }, { - "@id": "_:b3704", + "@id": "_:b1856", "@type": "Assertion", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "mode": "earl:automatic", - "subject": "https://rubygems.org/gems/json-ld", - "assertedBy": "http://greggkellogg.net/foaf#me", "result": { - "@id": "_:b6178", + "@id": "_:b19564", "@type": "TestResult", "outcome": "earl:passed" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022" + "subject": "https://rubygems.org/gems/json-ld", + "assertedBy": "http://greggkellogg.net/foaf#me" }, { - "@id": "_:b3703", + "@id": "_:b1855", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "result": { - "@id": "_:b6177", + "@id": "_:b26564", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-parser/", "assertedBy": null }, { - "@id": "_:b3702", + "@id": "_:b1854", "@type": "Assertion", - "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "result": { - "@id": "_:b6176", + "@id": "_:b23595", "@type": "TestResult", "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022", + "subject": "https://www.npmjs.com/package/jsonld-streaming-serializer/", "assertedBy": null }, { - "@id": "_:b3706", + "@id": "_:b1851", "@type": "Assertion", - "mode": "earl:automatic", - "subject": "https://www.npmjs.com/package/rdf-parse/", - "assertedBy": "https://www.rubensworks.net/#me", + "test": "https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05", "result": { - "@id": "_:b5432", + "@id": "_:b21609", "@type": "TestResult", - "outcome": "earl:passed" + "outcome": "earl:untested" }, - "test": "https://w3c.github.io/json-ld-api/tests/html-manifest#tr022" + "subject": "https://www.npmjs.com/package/rdf-parse/", + "assertedBy": null } - ] - } - ], - "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", - "title": "HTML", - "rdfs:comment": "These tests implement the requirements for the JSON-LD [HTML Content Algorithms](https://www.w3.org/TR/json-ld11-api/#html-content-algorithms)." - } - ], - "name": "JSON-LD 1.1 Processing Algorithms and API and Framing", - "generatedBy": { - "@id": "http://rubygems.org/gems/earl-report", - "@type": [ - "doap:Project", - "Software" - ], - "license": "http://unlicense.org", - "doapDesc": "EarlReport generates HTML+RDFa rollups of multiple EARL reports", - "name": "earl-report", - "developer": [ - "http://greggkellogg.net/foaf#me" - ], - "language": "Ruby", - "shortdesc": "Earl Report summary generator", - "release": { - "@id": "https://github.com/gkellogg/earl-report/tree/0.5.1", - "@type": "doap:Version", - "name": "earl-report-0.5.1", - "doap:created": { - "@value": "2020-04-11", - "@type": "http://www.w3.org/2001/XMLSchema#date" - }, - "revision": "0.5.1" - }, - "homepage": "https://github.com/gkellogg/earl-report" - }, - "bibRef": "[[json-ld-api]]", - "testSubjects": [ - { - "@id": "http://purl.org/NET/cpan-uri/dist/JSONLD/project", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doap:description": "Perl module JSONLD", - "name": "JSONLD", - "developer": [ - { - "@id": "http://kasei.us/about/#greg", - "@type": "foaf:Person", - "foaf:name": "Gregory Todd Williams", - "foaf:homepage": "http://kasei.us/" - } - ], - "language": "Perl", - "release": { - "@id": "http://purl.org/NET/cpan-uri/dist/JSONLD/v_0-004", - "revision": "0.004" - }, - "homepage": "http://metacpan.org/dist/JSONLD/" - }, - { - "@id": "https://framagit.org/tyreunom/guile-jsonld", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doapDesc": "Guile implementation of the JsonLD API defined by the W3C.", - "name": "guile-jsonld", - "developer": [ - { - "@id": "https://lepiller.eu/#me", - "@type": [ - "Assertor", - "foaf:Person" ], - "foaf:name": "Julien Lepiller", - "foaf:homepage": "https://lepiller.eu" - } - ], - "language": "GNU Guile", - "release": { - "@id": "_:b525", - "revision": "1.0.0" - }, - "homepage": "https://framagit.org/tyreunom/guile-jsonld/" - }, - { - "@id": "https://github.com/digitalbazaar/jsonld.js", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doap:description": "A JSON-LD processor for JavaScript", - "name": "jsonld.js", - "developer": [ - { - "@id": "https://github.com/dlongley", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Dave Longley", - "foaf:homepage": { - "@id": "https://github.com/dlongley", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Dave Longley", - "foaf:homepage": "https://github.com/dlongley" - } - } - ], - "language": "JavaScript", - "release": { - "@id": "_:b973", - "revision": "3.1.0" - }, - "homepage": "https://github.com/digitalbazaar/jsonld.js" - }, - { - "@id": "https://github.com/digitalbazaar/pyld", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doap:description": "A JSON-LD processor for Python", - "name": "PyLD", - "developer": [ - { - "@id": "https://github.com/dlongley", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Dave Longley", - "foaf:homepage": { - "@id": "https://github.com/dlongley", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Dave Longley", - "foaf:homepage": "https://github.com/dlongley" - } - } - ], - "language": "Python", - "release": { - "@id": "_:b1144", - "revision": "2.0.1" - }, - "homepage": "https://github.com/digitalbazaar/pyld" - }, - { - "@id": "https://github.com/pchampin/sophia_rs", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doapDesc": "A Rust toolkit for RDF and Linked Data.", - "name": "Sophia", - "developer": [ - { - "@id": "http://champin.net/#pa", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Pierre-Antoine Champin" - } - ], - "language": "Rust", - "release": { - "@id": "_:b948", - "revision": "0.4.0" - }, - "homepage": "https://github.com/pchampin/sophia_rs" - }, - { - "@id": "https://github.com/piprate/json-gold", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doap:description": "A JSON-LD processor for Go", - "name": "JSON-goLD", - "developer": [ - { - "@id": "https://github.com/kazarena", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Stan Nazarenko", - "foaf:homepage": { - "@id": "https://github.com/kazarena", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Stan Nazarenko", - "foaf:homepage": "https://github.com/kazarena" - } - } - ], - "language": "Go", - "release": { - "@id": "https://github.com/piprate/json-gold/tree/v0.3.0", - "revision": "v0.3.0" - }, - "homepage": "https://github.com/piprate/json-gold" - }, - { - "@id": "https://rubygems.org/gems/json-ld", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doapDesc": "RDF.rb extension for parsing/serializing JSON-LD data.", - "name": "JSON::LD", - "developer": [ - { - "@id": "https://greggkellogg.net/foaf#me", - "@type": "foaf:Person", - "foaf:name": "Gregg Kellogg" - } - ], - "language": "Ruby", - "release": { - "@id": "_:b911", - "revision": "3.1.3" - }, - "homepage": "https://github.com/ruby-rdf/json-ld/" - }, - { - "@id": "https://www.npmjs.com/package/jsonld-streaming-parser/", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doapDesc": "Streaming JSON-LD parser", - "name": "jsonld-streaming-parser", - "developer": [ - { - "@id": "https://www.rubensworks.net/#me", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Ruben Taelman ", - "foaf:homepage": "https://www.rubensworks.net/" - } - ], - "language": "JavaScript", - "release": { - "@id": "_:b1009", - "revision": "2.0.0" - }, - "homepage": "https://github.com/rubensworks/jsonld-streaming-parser.js#readme" - }, - { - "@id": "https://www.npmjs.com/package/jsonld-streaming-serializer/", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doapDesc": "Streaming JSON-LD serializer", - "name": "jsonld-streaming-serializer", - "developer": [ - { - "@id": "https://www.rubensworks.net/#me", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Ruben Taelman ", - "foaf:homepage": "https://www.rubensworks.net/" - } - ], - "language": "JavaScript", - "release": { - "@id": "_:b924", - "revision": "1.1.0" - }, - "homepage": "https://github.com/rubensworks/jsonld-streaming-serializer.js#readme" - }, - { - "@id": "https://www.npmjs.com/package/rdf-parse/", - "@type": [ - "doap:Project", - "TestSubject", - "Software" - ], - "doapDesc": "Parses RDF from any serialization", - "name": "rdf-parse", - "developer": [ - { - "@id": "https://www.rubensworks.net/#me", - "@type": [ - "Assertor", - "foaf:Person" - ], - "foaf:name": "Ruben Taelman ", - "foaf:homepage": "https://www.rubensworks.net/" + "testResult": "https://w3c.github.io/json-ld-api/tests/remote-doc/la05-out.jsonld", + "title": "Base is that of the alternate URL", + "testAction": "https://w3c.github.io/json-ld-api/tests/remote-doc/la05-in.html", + "rdfs:comment": "Load an alternate link if type is not ld+json and rel=alternate." } ], - "language": "JavaScript", - "release": { - "@id": "_:b936", - "revision": "1.3.0" - }, - "homepage": "https://github.com/rubensworks/rdf-parse.js#readme" + "title": "Remote document", + "https://w3c.github.io/json-ld-api/tests/vocab#baseIri": "https://w3c.github.io/json-ld-api/tests/", + "rdfs:comment": "These tests implement the requirements for JSON-LD [Remote Document and Context Retrieval](https://www.w3.org/TR/json-ld11-api/#remote-document-and-context-retrieval)." } - ], - "assertions": [ - "rdf-parse.ttl", - "jsonld-js-earl.ttl", - "guile-jsonld-earl.ttl", - "pyld-earl.ttl", - "perl-jsonld-earl.ttl", - "rust-sophia-earl.ttl", - "jsonld-streaming-serializer-earl.ttl", - "jsonld-gold-earl.ttl", - "jsonld-streaming-parser-earl.ttl", - "ruby-json-ld-earl.ttl" ] } \ No newline at end of file diff --git a/reports/index.html b/reports/index.html index aa4f01a7..976f8168 100644 --- a/reports/index.html +++ b/reports/index.html @@ -4,15 +4,15 @@ - - - - - + + + + + JSON-LD 1.1 Processor Conformance @@ -98,8 +98,8 @@ <h2 class='subtitle'> EARL results from the JSON-LD 1.1 Test Suite </h2> <h2 id='w3c-document-28-october-2015'> -<time class='dt-published' datetime='2020-04-15' property='dc:issued'> -15 April 2020 +<time class='dt-published' datetime='2020-04-27' property='dc:issued'> +27 April 2020 </time> </h2> <dl> @@ -8129,10 +8129,10 @@ <h2> PASS </td> </tr> -<tr class='normative'> +<tr class='non-normative'> <td> <a href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122'>Test t0122: Ignore some IRIs when that start with @ when expanding.</a> -(new in JSON-LD 1.1) +(new in JSON-LD 1.1, non-normative) </td> <td class='PASS'> PASS @@ -19708,6 +19708,9 @@ <h2> <td class='PASS'> PASS </td> +<td class='FAIL'> +FAIL +</td> <td class='PASS'> PASS </td> @@ -19717,9 +19720,6 @@ <h2> <td class='PASS'> PASS </td> -<td class='UNTESTED'> -UNTESTED -</td> <td class='PASS'> PASS </td> @@ -19735,8 +19735,8 @@ <h2> <td class='PASS'> PASS </td> -<td class='FAIL'> -FAIL +<td class='PASS'> +PASS </td> <td class='PASS'> PASS @@ -19744,8 +19744,8 @@ <h2> <td class='PASS'> PASS </td> -<td class='UNTESTED'> -UNTESTED +<td class='PASS'> +PASS </td> <td class='PASS'> PASS @@ -24292,6 +24292,9 @@ <h2> <td class='PASS'> PASS </td> +<td class='FAIL'> +FAIL +</td> <td class='PASS'> PASS </td> @@ -24301,9 +24304,6 @@ <h2> <td class='PASS'> PASS </td> -<td class='UNTESTED'> -UNTESTED -</td> <td class='PASS'> PASS </td> @@ -24319,8 +24319,8 @@ <h2> <td class='PASS'> PASS </td> -<td class='FAIL'> -FAIL +<td class='PASS'> +PASS </td> <td class='PASS'> PASS @@ -24328,8 +24328,8 @@ <h2> <td class='PASS'> PASS </td> -<td class='UNTESTED'> -UNTESTED +<td class='PASS'> +PASS </td> <td class='PASS'> PASS @@ -30294,8 +30294,8 @@ <h2> <td class='passed-most'> 99.5% </td> -<td class='passed-some'> -94.6% +<td class='passed-most'> +95.5% </td> <td class='passed-all'> 100.0% @@ -32239,7 +32239,7 @@ <h2> Transform JSON-LD to RDF </td> <td class='passed-most'> -418/442 (94.6%) +422/442 (95.5%) </td> </tr> <tr> @@ -32520,38 +32520,38 @@ <h2> </p> <ul> <li> -<a class='source' href='rdf-parse.ttl'>rdf-parse.ttl</a> +<a class='source' href='guile-jsonld-earl.ttl'>guile-jsonld-earl.ttl</a> </li> <li> -<a class='source' href='jsonld-js-earl.ttl'>jsonld-js-earl.ttl</a> +<a class='source' href='rust-sophia-earl.ttl'>rust-sophia-earl.ttl</a> </li> <li> -<a class='source' href='guile-jsonld-earl.ttl'>guile-jsonld-earl.ttl</a> +<a class='source' href='jsonld-gold-earl.ttl'>jsonld-gold-earl.ttl</a> </li> <li> <a class='source' href='pyld-earl.ttl'>pyld-earl.ttl</a> </li> <li> -<a class='source' href='perl-jsonld-earl.ttl'>perl-jsonld-earl.ttl</a> +<a class='source' href='jsonld-streaming-parser-earl.ttl'>jsonld-streaming-parser-earl.ttl</a> </li> <li> -<a class='source' href='rust-sophia-earl.ttl'>rust-sophia-earl.ttl</a> +<a class='source' href='perl-jsonld-earl.ttl'>perl-jsonld-earl.ttl</a> </li> <li> <a class='source' href='jsonld-streaming-serializer-earl.ttl'>jsonld-streaming-serializer-earl.ttl</a> </li> <li> -<a class='source' href='jsonld-gold-earl.ttl'>jsonld-gold-earl.ttl</a> +<a class='source' href='rdf-parse.ttl'>rdf-parse.ttl</a> </li> <li> -<a class='source' href='jsonld-streaming-parser-earl.ttl'>jsonld-streaming-parser-earl.ttl</a> +<a class='source' href='jsonld-js-earl.ttl'>jsonld-js-earl.ttl</a> </li> <li> <a class='source' href='ruby-json-ld-earl.ttl'>ruby-json-ld-earl.ttl</a> </li> </ul> </section> -<section class='appendix' id='report-generation-software' property='earl:generatedBy' resource='http://rubygems.org/gems/earl-report' typeof='doap:Project Software'> +<section class='appendix' id='report-generation-software' property='earl:generatedBy' resource='http://rubygems.org/gems/earl-report' typeof='Software doap:Project'> <h2> <span class='secno'>C.</span> Report Generation Software diff --git a/reports/manifests.nt b/reports/manifests.nt index bc26c199..db196d2a 100644 --- a/reports/manifests.nt +++ b/reports/manifests.nt @@ -1,13023 +1,13024 @@ -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language map term selection with complications" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0026-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0026-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0026-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Test appropriate property use given language maps with @vocab, a default language, and a competing term" . -_:g70292350115260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350179940 . -_:g70292350115260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "prefer @vocab over compacted IRIs" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0023-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0023-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0023-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "@vocab takes precedence over prefixes - even if the result is longer" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "basic" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compaction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Compaction Algorithm](https://www.w3.org/TR/json-ld11-api/#compaction-algorithm)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70146878641220 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0008-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias keywords" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Aliases for keywords are used in compacted document" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0013-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0013-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@value with @language" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Values with @language remain in expanded form by default" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0031-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0031-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0031-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @reverse" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact traverses through @reverse" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0032-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0032-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0032-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact keys in reverse-maps" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact traverses through @reverse" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878754320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874329140 . +_:g70146878754320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0002-context.jsonld> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "basic" . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic term and value compaction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type and prefix compaction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0005-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact uses prefixes in @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "best match compaction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878708220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878754320 . +_:g70146878708220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> . +_:g70146871000940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871010420 . +_:g70146871000940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> . +_:g70146735596760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0015-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0015-context.jsonld> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0015-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "best match compaction" . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "Property with values of different types use most appropriate term when compacting" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "array to aliased @graph" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0014-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0014-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Aliasing @graph uses alias in compacted document" . -_:g70292349978120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622237120 . -_:g70292349978120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "add context" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0007-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "External context is added to the compacted document" . -_:g70292354980120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355012960 . -_:g70292354980120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> . -_:g70292350322360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350356040 . -_:g70292350322360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop free-floating nodes" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0006-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "keep expanded object format if @type doesn't match" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Values not matching a coerced @type remain in expanded form" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0001-context.jsonld> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop free-floating nodes" . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Unreferenced nodes not containing properties are dropped" . -_:g70292349665520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618138960 . -_:g70292349665520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @reverse" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0031-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0031-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0031-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact traverses through @reverse" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "native types" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0012-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0012-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Native values are unmodified during compaction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI round-tripping with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0063-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0063-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0063-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/2000/01/rdf-schema#comment> "Term with @type: @vocab will use compact IRIs" . -_:g70292354733120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354891920 . -_:g70292354733120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350245660 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a simple graph with a [@graph, @id, @set] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0086-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0086-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0086-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a simple graph using a @graph container with @id and @set" . -_:g70292350044080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355025720 . -_:g70292350044080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> . -_:g70292350179940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350245380 . -_:g70292350179940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "array to @graph" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871110820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878886440 . +_:g70146871110820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> . +_:g70146736229340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871110820 . +_:g70146736229340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> . +_:g70146878674320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878708220 . +_:g70146878674320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> . +_:g70146871094680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736229340 . +_:g70146871094680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> . +_:g70146879180720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736194780 . +_:g70146879180720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0025-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0025-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0025-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple values with different languages use language maps if property has @container: @language" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0061-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0061-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0061-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @vocab/@id with values matching either" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/2000/01/rdf-schema#comment> "Separate IRIs for the same property to use term with more specific @type (@id vs. @vocab)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878641220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878674320 . +_:g70146878641220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0005-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type and prefix compaction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact uses prefixes in @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0010-context.jsonld> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0010-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "array to @graph" . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "An array of objects is serialized with @graph" . -_:g70292350033560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350044080 . -_:g70292350033560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop null and unmapped properties" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0003-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Properties mapped to null or which are never mapped are dropped" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Alias keywords and use @vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0028-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0028-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0028-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> "Combination of keyword aliases and @vocab" . -_:g70292350390000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292617693580 . -_:g70292350390000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keep duplicate values in @list and @set" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878886440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878918040 . +_:g70146878886440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> . +_:g70146871049840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736226800 . +_:g70146871049840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> . +_:g70146870835880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870931980 . +_:g70146870835880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> . +_:g70146736333620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736366200 . +_:g70146736333620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0047-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0047-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0047-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round-trip relative URLs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative URLs remain relative after compaction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871045980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871076880 . +_:g70146871045980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0019-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0019-context.jsonld> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0019-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keep duplicate values in @list and @set" . <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "Duplicate values in @list or @set are retained in compacted document" . -_:g70292350148120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350239920 . -_:g70292350148120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "optimize @set, keep empty arrays" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0004-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Containers mapped to @set keep empty arrays" . -_:g70292618186540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618236000 . -_:g70292618186540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact reverse properties using index containers" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0036-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0036-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0036-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact using both reverse properties and index containers" . -_:g70292350356260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350386180 . -_:g70292350356260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compaction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70292350033560 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Compaction Algorithm](https://www.w3.org/TR/json-ld11-api/#compaction-algorithm)." . -_:g70292350432380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355145660 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.1, 1.0, 1.1]" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/p004-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/p004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . -_:g70292358027900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358041660 . -_:g70292358027900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355733420 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Two scoped context may include a shared context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e128-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e128-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context" . -_:g70292350290480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @vocab/@id with values matching either" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0061-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0061-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0061-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> <http://www.w3.org/2000/01/rdf-schema#comment> "Separate IRIs for the same property to use term with more specific @type (@id vs. @vocab)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350291680 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "processingMode json-ld-1.0 conflicts with @version: 1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "processing mode conflict" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep05-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/2000/01/rdf-schema#comment> "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features." . -_:g70292618156780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354977720 . -_:g70292618156780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350994820 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with mismatching term direction" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di07-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351098840 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI uses term with definition including @prefix: true" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p006-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanded term definition may set prefix explicitly in 1.1" . -_:g70292350190420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350262200 . -_:g70292350190420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> . -_:g70292351157640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622674460 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "orders @type terms when applying scoped contexts" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292350258320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350262200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350307700 . -_:g70292350262200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> . -_:g70292350441320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351830380 . -_:g70292350441320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> . -_:g70292623148040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623202620 . -_:g70292623148040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative IRIs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0029-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0029-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/2000/01/rdf-schema#comment> "@base is used to compact @id; test with different relative IRIs" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Literal with language tag" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0004-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a plain literal is created with a language tag." . -_:g70292352031720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352044780 . -_:g70292352031720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351144180 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c001-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . -_:g70292623541740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355894660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351830420 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail with mix of protected and unprotected terms with type+null." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr21-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail with mix of protected and unprotected terms with type+null." . -_:g70292622524640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622562080 . -_:g70292622524640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> . -_:g70292351721240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350211880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350360340 . -_:g70292350211880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> . -_:g70292350355820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354160220 . -_:g70292350355820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> . -_:g70292622952200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623021480 . -_:g70292622952200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> . -_:g70292622629440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622728100 . -_:g70292622629440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353423560 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index expands to property value, instead of @index (node)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi08-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622838260 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate must be boolean valued" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @propagate value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c030-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/2000/01/rdf-schema#comment> "@propagate must be boolean valued" . -_:g70292353242760 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292353093300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353145540 . -_:g70292353093300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> . -_:g70292352898780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351943500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352076380 . -_:g70292351943500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> . -_:g70292618325040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round tripping @list with scalar" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0051-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0051-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0051-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/2000/01/rdf-schema#comment> "Native values survive round-tripping with @list" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357746300 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language mapwith overriding term direction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di05-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -_:g70292622870420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622990880 . -_:g70292622870420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> . -_:g70292357582660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357582660 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . -_:g70292357582660 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292350866360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350995420 . -_:g70292350866360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> . -_:g70292352468760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352539500 . -_:g70292352468760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> . -_:g70292625495360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625526820 . -_:g70292625495360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> . -_:g70292351190020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623050520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623087320 . -_:g70292623050520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352292380 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches a deep node pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0035-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0035-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0035-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "Node patterns that don't match all levels, don't match top level." . -_:g70292355177060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355177060 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "GeneralizedRdf" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357848300 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@vocab as blank node identifier" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e075-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e075-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/2000/01/rdf-schema#comment> "Use @vocab to map all properties to blank node identifiers" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Cyclic IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "cyclic IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a cyclic IRI mapping is found" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple contexts" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0024-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0024-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that contexts in an array are merged" . -_:g70292349867640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622907960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622952200 . -_:g70292622907960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> . -_:g70292622722520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622793000 . -_:g70292622722520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352045960 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value mix" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c021-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c021-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value mix" . -_:g70292355470700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357749420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357809920 . -_:g70292357749420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> . -_:g70292624313900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624380600 . -_:g70292624313900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> . -_:g70292624279420 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . -_:g70292622917700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623267540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351665760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350390840 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand list values with @direction" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/2000/01/rdf-schema#comment> "List values where the term has @direction are used in expansion." . -_:g70292622560160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618252700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350431440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625542700 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr39-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr39-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292361740400 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type map with alias of @none" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874329140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736333620 . +_:g70146874329140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0012-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0012-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "native types" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Native values are unmodified during compaction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871148020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736194780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146869958920 . +_:g70146736194780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0091-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0091-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0091-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with @graph container to output without @graph container with compactArrays unset" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output with compactArrays unset" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874775660 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871286600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871299620 . +_:g70146871286600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> . +_:g70146874398720 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in03-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties mapping to @included are folded together" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879644200 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879210500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879257020 . +_:g70146879210500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> . +_:g70146880073840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880103900 . +_:g70146880073840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> . +_:g70146879383560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879417480 . +_:g70146879383560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> . +_:g70146736521500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736572180 . +_:g70146736521500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> . +_:g70146874579660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874613560 . +_:g70146874579660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> . +_:g70146871853080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871890160 . +_:g70146871853080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> . +_:g70146874970860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874622940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874656860 . +_:g70146874622940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/f003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/f003-in.html#second> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/f003-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattens targeted JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871319960 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect all terms in context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context protects all term definitions." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879744780 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0055-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0055-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0055-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round tripping @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting IRI value of property with @type: @vocab can use term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r015-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if end comment missing" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with unballanced comments" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875857780 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146878643280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878702440 . +_:g70146878643280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> . +_:g70146880039600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880072420 . +_:g70146880039600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0039-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0039-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0039-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph is array" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/2000/01/rdf-schema#comment> "Value of @graph is always an array" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871694400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871794540 . +_:g70146871694400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> . +_:g70146875235440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879812120 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e006-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands as empty with no embedded JSON-LD script elements" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML when none exist" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880565080 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880348900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880401660 . +_:g70146880348900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr39-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr39-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875722120 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879062940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879085680 . +_:g70146879062940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/en01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/en01-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nest term not defined" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874707880 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146874480420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874590900 . +_:g70146874480420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> . +_:g70146880401500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871248760 . +_:g70146880401500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/p002-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/p002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.0, 1.1, 1.0]" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872447600 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880765120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880778740 . +_:g70146880765120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> . +_:g70146737473680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872858900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872891760 . +_:g70146872858900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop null and unmapped properties" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that null values and unmapped properties are removed from expanded output" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0025-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0025-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@requireAll with missing values and @default" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Match if @requireAll is true and frame contains a non-keyword key not present in node, where the value is a JSON object containing only the key @default with any value." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0025-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872002460 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880956500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880991160 . +_:g70146880956500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0060-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0060-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed: @once only embeds first value with node reference" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that within a matched node and @embed: @first, by only the first reference will be embedded." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0060-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880906560 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879993020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880023660 . +_:g70146879993020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0013-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0013-in.json> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document with link to HTML document" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "If a context is specified in a link header, it is used for JSON, extracting from HTML." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880437900 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875398220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875427720 . +_:g70146875398220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "processing mode conflict" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/ep02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "processingMode json-ld-1.0 conflicts with @version: 1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/2000/01/rdf-schema#comment> "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737527400 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879979300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874858860 . +_:g70146879979300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @index value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er31-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @index value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @index value value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146881413900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0078-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0078-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple reverse properties" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of multiple reverse properties" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r014-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if uncommented script text contains comment" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with comments leftover" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875807120 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146881122660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881154240 . +_:g70146881122660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> . +_:g70146879765800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879913820 . +_:g70146879765800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> . +_:g70146876754980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876786940 . +_:g70146876754980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> . +_:g70146880452980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880519540 . +_:g70146880452980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> . +_:g70146874918800 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146874918800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c035-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c035-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term scoping with embedded contexts." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms should make use of @vocab relative to the scope in which the term was defined." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880075500 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737249740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871564460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi11-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index adds property to graph object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879432580 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875068860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m012-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type map with alias of @none" . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624265060 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple context link headers" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "multiple context link headers" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0012-in.json> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a file when multiple link headers are returned is an error" . -_:g70292625294540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625328680 . -_:g70292625294540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351190020 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c016-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped vocab" . -_:g70292352917280 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351157640 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@direction is incompatible with @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects can have either @type but not @language or @direction." . -_:g70292624738580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624836140 . -_:g70292624738580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> . -_:g70292351426200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355470700 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some terms with @, allow others." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e119-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e119-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword." . -_:g70292352212600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352308280 . -_:g70292352212600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> . -_:g70292622524580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622579220 . -_:g70292622524580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> . -_:g70292356161080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356170700 . -_:g70292356161080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> . -_:g70292352540340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352553720 . -_:g70292352540340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> . -_:g70292355158820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355208140 . -_:g70292355158820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand reverse property whose values are unlabeled blank nodes" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e064-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e064-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0064" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Input has multiple @contexts, output has one" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0071-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0071-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0071-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding input with multiple @contexts and compacting with just one doesn't output undefined properties" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expansion of keyword aliases in term definitions" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e051-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e051-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0051" . -_:g70292622279460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622378320 . -_:g70292622279460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> . -_:g70292622524680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622754020 . -_:g70292622524680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> . -_:g70292624135140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624200580 . -_:g70292624135140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> . -_:g70292350977160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351081380 . -_:g70292350977160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> . -_:g70292352194100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352194100 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "remove @value = null" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0019-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding a value of null removes the value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623212660 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand @graph container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0079-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0079-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736882740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m015-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id index map with aliased @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id with @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880332620 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0054-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0054-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand term with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding values of properties of @type: @vocab does not expand term values" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876148340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876179420 . +_:g70146876148340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0011-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0011-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed true/false" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "@embed within a frame controls the object embed flag when processing that frame (true and false values) in json-ld-1.0 mode." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0011-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146873085320 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874575700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0040-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0040-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches match none @type in value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0040-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875950160 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880727100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880765120 . +_:g70146880727100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> . +_:g70146879569860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879628040 . +_:g70146879569860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> . +_:g70146881223260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876590260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876639720 . +_:g70146876590260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js04-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (double-zero)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (double-zero)." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880305960 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871840060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146872594720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881188580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737018280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878707400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871058900 . +_:g70146878707400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te019> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e062-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e062-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs with with @base" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0062" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736840060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736920180 . +_:g70146736840060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> . +_:g70146737341880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737376200 . +_:g70146737341880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0014-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@set of @value objects with keyword aliases" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding aliased @set and @value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874901260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874940720 . +_:g70146874901260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> . +_:g70146880906560 <https://w3c.github.io/json-ld-api/tests/vocab#ordered> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880906560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881269740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881319420 . +_:g70146881269740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> . +_:g70146875199180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875229700 . +_:g70146875199180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> . +_:g70146876429720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875382660 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875382660 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875382660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878889400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874396000 . +_:g70146878889400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/rt01-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/rt01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Representing numbers >= 1e21" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/2000/01/rdf-schema#comment> "numbers with no fractions but that are >= 1e21 are represented as xsd:double" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877201240 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872693900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872725380 . +_:g70146872693900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a value object value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871561100 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879303400 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879303400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e042-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e042-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding reverse properties" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0042" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871958160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0013-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0013-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with multiple values of rdf:first" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not convert list nodes to @list if nodes contain more than one value for rdf:first." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875722120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Retains @id in object already having an @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872070200 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expansion" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70292351308860 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Expansion Algorithm](https://www.w3.org/TR/json-ld11-api/#expansion-algorithm)." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350995540 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not compact @type with @container: @set to an array using an alias of @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0106-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0106-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0106-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensures that a single @type value is not represented as an array in 1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352159000 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of terms with scoped contexts using same definitions." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr25-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr25-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of terms with scoped contexts using same definitions." . -_:g70292350141940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350190420 . -_:g70292350141940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> . -_:g70292352204920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352242700 . -_:g70292352204920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact reverse-map to reverse property" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0033-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0033-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0033-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "A reverse map is replaced with a matching property defined with @reverse" . -_:g70292350438240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349881780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349913900 . -_:g70292349881780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351524180 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes property value, instead of property (multiple values)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi02-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias keywords" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0008-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Aliases for keywords are used in compacted document" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Index maps with language mappings" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0044-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0044-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure index maps use language mapping" . -_:g70292622836240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622891240 . -_:g70292622836240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350290480 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Index map round-tripping" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0038a-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0038-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0038-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex round-tripping use case from Drupal" . -_:g70292352402820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622315880 . -_:g70292352402820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> . -_:g70292349967640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353178680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353204340 . -_:g70292353178680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> . -_:g70292354993520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349817920 . -_:g70292354993520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> . -_:g70292351320600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Two graphs having same subject but different values" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0006-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that properties and list elements aren't confused between graphs." . -_:g70292357809920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623495220 . -_:g70292357809920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> . -_:g70292623003740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623084760 . -_:g70292623003740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292361745660 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index appends to property value, instead of @index (value)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi07-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292622842500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351589740 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped base" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c015-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c015-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped base" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph at top-level if not only property" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0021-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0021-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used at the top level is retained if there are other properties" . -_:g70292623364640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623397760 . -_:g70292623364640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351721020 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested nested containers" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -_:g70292357782620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623479180 . -_:g70292357782620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> . -_:g70292625458000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625495920 . -_:g70292625458000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> . -_:g70292622957740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355812040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0031-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0031-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests conversion of reverse properties." . -_:g70292358168920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624687300 . -_:g70292358168920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> . -_:g70292352932340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352945720 . -_:g70292352932340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355745420 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear active context of protected terms from a term." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr06-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/2000/01/rdf-schema#comment> "The Active context may be set to null from a scoped context of a term." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand absolute IRI with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e053-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e053-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0053" . -_:g70292623935080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623989480 . -_:g70292623935080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> . -_:g70292357562920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350259700 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "embed matched frames with reversed property" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0029-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0029-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0029-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/2000/01/rdf-schema#comment> "If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame." . -_:g70292350213440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350310580 . -_:g70292350213440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> . -_:g70292357632280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357632280 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292354680220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618222740 . -_:g70292354680220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> . -_:g70292355500600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355535060 . -_:g70292355500600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> . -_:g70292358075240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358106460 . -_:g70292358075240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> . -_:g70292355220680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355276200 . -_:g70292355220680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph at top-level if not only property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e021-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e021-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0021" . -_:g70292357699060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355089620 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.1, 1.0]" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/p003-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/p003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . -_:g70292623413340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357568640 . -_:g70292623413340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> . -_:g70292219410400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219410400 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625266880 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected keyword aliases cannot be overridden." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr31-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355367320 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Verifies that relative IRIs as properties with relative @vocab in 1.0 generate an error" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e116-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs in 1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e011-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0011" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622987420 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing @list" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350634840 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transforms first embedded JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r002-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r002-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352289520 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with string canonicalization" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js09-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with string canonicalization." . -_:g70292355271180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355309380 . -_:g70292355271180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349962020 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with @vocab: ''" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0092-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0092-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . -_:g70292622329900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622329900 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292622806880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622836240 . -_:g70292622806880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> . -_:g70292625687320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625687320 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with embed" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0012-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph to contain multiple nodes within array" . -_:g70292623378720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623426420 . -_:g70292623378720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> . -_:g70292351950760 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292351950760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357644860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357716120 . -_:g70292357644860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350148380 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context with single array values" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/s001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/s001-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/s001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/2000/01/rdf-schema#comment> "@context values may be in an array" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with multiple values of rdf:rest" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0014-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0014-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not convert list nodes to @list if nodes contain more than one value for rdf:rest." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352077380 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A nest of arrays" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -_:g70292350190500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @vocab in properties and @type but not in @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e028-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e028-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0028" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Single value reverse properties" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0068-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0068-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0068-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/2000/01/rdf-schema#comment> "Single values of reverse properties are compacted as values of ordinary properties" . -_:g70292357988800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358027900 . -_:g70292357988800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI as term with type mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e069-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e069-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0069" . -_:g70292356121420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356176820 . -_:g70292356121420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624934460 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check legal overriding of type-scoped protected term from nested node." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr22-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr22-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/2000/01/rdf-schema#comment> "Check legal overriding of type-scoped protected term from nested node." . -_:g70292352604960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352618280 . -_:g70292352604960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> . -_:g70292350434720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351864640 . -_:g70292350434720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> . -_:g70292350702660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact keys in @reverse using @vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0037-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0037-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0037-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact keys in @reverse using @vocab" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352636740 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if targeted element does not have type application/ld+json" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e013-in.html#first> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with wrong type" . -_:g70292618343140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357880300 . -_:g70292618343140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List objects not equivalent" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0042-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0042-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists objects are implicit unlabeled blank nodes and thus never equivalent" . -_:g70292352127040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219280240 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal without expanding contents" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js14-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js14-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal does not expand terms inside json." . -_:g70292356042700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356092040 . -_:g70292356042700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357630640 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine terms looking like compact IRIs" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e071-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e071-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0071" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350848000 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Retains @id in object already having an @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . -_:g70292350538800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623743120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358155160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624657040 . -_:g70292358155160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> . -_:g70292351913180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352096260 . -_:g70292351913180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> . -_:g70292080749980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292080782480 . -_:g70292080749980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356027280 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "does not allow a keyword other than @nest for the value of @nest" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using reverse properties inside a @reverse-container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0043-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0043-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding a reverse property within a @reverse undoes both reversals" . -_:g70292622591740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623707880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623772000 . -_:g70292623707880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> . -_:g70292618301640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624524560 . -_:g70292618301640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> . -_:g70292622444060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622499600 . -_:g70292622444060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> . -_:g70292350043260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350485460 . -_:g70292350043260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language and index expansion on non-objects" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0040-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0040-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/2000/01/rdf-schema#comment> "Only invoke language and index map expansion if the value is a JSON object" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352194100 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if no element found at target" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r011-in.html#third> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist" . -_:g70292622806580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623463880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623498500 . -_:g70292623463880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351245180 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @context affects nested nodes" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c004-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351732600 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0111-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0111-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351076780 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @graph container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0109-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0109-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0109-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple objects in a simple graph with a graph container need to use @included" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349764300 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with term direction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di04-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -_:g70292350239780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350339640 . -_:g70292350239780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349833800 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a @graph container having @index" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0079-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0079-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0079-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that having both @graph and @index allows @graph container compaction" . -_:g70292354946580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349688940 . -_:g70292354946580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> . -_:g70292622694900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "override default @language" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0018-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "override default @language in terms; only language-tag strings" . -_:g70292351766120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355337920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355369400 . -_:g70292355337920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351616280 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing multiple lists" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/li04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li04-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/li04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of Lists" . -_:g70292352027480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352027480 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292351489680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352435660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622329980 . -_:g70292352435660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352257400 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with @none" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . -_:g70292350623380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350632540 . -_:g70292350623380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Problematic IRI expansion tests" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0025-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0025-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding different kinds of terms and Compact IRIs" . -_:g70292349999980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350162660 . -_:g70292349999980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> . -_:g70292349770540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624804300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624804300 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624804300 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357742640 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override @vocab defined in sourced context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so09-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse properties require @type: @id to use string values" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0050-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0050-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0050-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/2000/01/rdf-schema#comment> "Node references in reverse properties are not compacted to strings without explicit type-coercion" . -_:g70292622530660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622575980 . -_:g70292622530660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618270120 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a @graph container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0077-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0077-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0077-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a @graph container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351670260 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to @nest for all properties with @nest" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n002-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -_:g70292350733160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350768160 . -_:g70292350733160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> . -_:g70292350338680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349962760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term scoping with embedded contexts." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c035-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c035-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms should make use of @vocab relative to the scope in which the term was defined." . -_:g70292351130640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351272740 . -_:g70292351130640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> . -_:g70292350768160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350934440 . -_:g70292350768160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> . -_:g70292349979540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351960180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352029440 . -_:g70292351960180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> . -_:g70292349601000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355466200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355500600 . -_:g70292355466200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple Objects for a Single Property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0012-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that Multiple Objects are for a Single Property using array syntax." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context reset" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0016-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting @context to null within an embedded object resets back to initial context state" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355503520 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index does not output property for @none" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi10-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624742640 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@set of @value objects with keyword aliases" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0014-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening aliased @set and @value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625085540 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails on redefinition of terms with scoped contexts using different definitions." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr26-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/2000/01/rdf-schema#comment> "Fails on redefinition of terms with scoped contexts using different definitions." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622644480 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292622462280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622629640 . -_:g70292622462280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> . -_:g70292352652520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618312340 . -_:g70292352652520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> . -_:g70292353062240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353093300 . -_:g70292353062240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622395120 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds expanded @id to object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m005-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand term with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e054-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e054-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0054" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350812660 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid JSON literal (bare-word)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid JSON literal" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js08-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors must generate an error when deserializing an invalid JSON literal." . -_:g70292357946640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357946640 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292623132100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350879180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351829500 . -_:g70292350879180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351639080 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a boolen value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219312900 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal aleady in expanded form" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js15-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js15-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal in expanded form." . -_:g70292624753740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624824180 . -_:g70292624753740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> . -_:g70292351917280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351946740 . -_:g70292351917280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219475500 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with aliased @value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js20-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js20-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with aliased @value." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property map" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property map" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er25-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a invalid reverse property map is found" . -_:g70292623186700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623282780 . -_:g70292623186700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> . -_:g70292624236000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352244400 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with array canonicalization" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js08-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with array canonicalization." . -_:g70292351273280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357989500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358110340 . -_:g70292357989500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> . -_:g70292355714440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "native types" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening native scalar retains native scalar within expanded value" . -_:g70292219312900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219312900 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_BACKSPACE" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with BACKSPACE from N-Triples" . -_:g70292355583160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622363220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625752560 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with string canonicalization" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js09-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with string canonicalization." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349868560 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Set a term to not be protected" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/2000/01/rdf-schema#comment> "A term with @protected: false is not protected." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355044500 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph (mixed graph and object)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e104-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e104-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/2000/01/rdf-schema#comment> "Don't double-expand an already expanded graph" . -_:g70292350539780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352456000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353188820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test type coercion to anyURI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0019-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests coercion of object to anyURI when specified." . -_:g70292361740400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622660880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622265580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622383760 . -_:g70292622265580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> . -_:g70292622265540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351813680 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context with multiple property scoped terms" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c019-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with multiple property scoped terms" . -_:g70292623639540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623708380 . -_:g70292623639540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> . -_:g70292625621840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625659420 . -_:g70292625621840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354113040 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0087-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0087-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292350032040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350109400 . -_:g70292350032040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> . -_:g70292355581520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355637140 . -_:g70292355581520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219158580 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with unicode canonicalization" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js11-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with unicode canonicalization." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352386680 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with alias of @none" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . -_:g70292351552200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351585340 . -_:g70292351552200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> . -_:g70292350966900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context not first property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e073-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e073-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/2000/01/rdf-schema#comment> "Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition" . -_:g70292624903600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624770220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624835460 . -_:g70292624770220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> . -_:g70292351584660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351681360 . -_:g70292351584660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definitions with prefix separate from prefix definitions" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e050-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e050-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0050" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623509380 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "base option overrides document location" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e076-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e076-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of the base option overrides the document location" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350538800 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index, @set] container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0097-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0097-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index and @set" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357661340 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context with @import" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects (with @import)" . -_:g70292625753360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219130520 . -_:g70292625753360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reset the default language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e041-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e041-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0041" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355959020 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a numeric value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -_:g70292617608000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350158260 . -_:g70292617608000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> . -_:g70292618151540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Definition for the empty term" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er52-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains a definition for the empty term" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625022260 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected prefix term with same definition." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr24-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr24-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected prefix term with same definition." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622721360 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches wildcard @type in value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0038-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0038-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0038-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -_:g70292356061780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292356137000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350770840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350780000 . -_:g70292350770840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> . -_:g70292352360180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349783960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349816180 . -_:g70292349783960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> . -_:g70292624184500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624217840 . -_:g70292624184500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350522520 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@prefix must be a boolean" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @prefix value" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep08-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/2000/01/rdf-schema#comment> "@prefix must be a boolean in a term definition in 1.1" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350375980 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transforms embedded JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r001-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r001-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -_:g70292622892240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351259380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623217900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349913900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349945700 . -_:g70292349913900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid default language" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid default language" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @language" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language and index expansion on non-objects" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0040-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0040-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/2000/01/rdf-schema#comment> "Only invoke language and index map expansion if the value is a JSON object" . -_:g70292622606800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622662700 . -_:g70292622606800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @index value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @index value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er31-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @index value value is found" . -_:g70292623606860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@value with @language" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0013-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0013-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Values with @language remain in expanded form by default" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "optimize @set, keep empty arrays" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained" . -_:g70292351325560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351388520 . -_:g70292351325560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "recursive named graphs" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0016-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0016-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting a document with multiple embedded uses of @graph" . -_:g70292351341480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351375180 . -_:g70292351341480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> . -_:g70292352141680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352178900 . -_:g70292352141680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> . -_:g70292617693580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353450420 . -_:g70292617693580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> . -_:g70292350714180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350914100 . -_:g70292350714180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> . -_:g70292355943440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355993200 . -_:g70292355943440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> . -_:g70292351522880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351795500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292617608940 . -_:g70292351795500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> . -_:g70292353450420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353424000 . -_:g70292353450420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351785720 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail with mix of protected and unprotected terms with type+null+ctx." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr20-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail with mix of protected and unprotected terms with type+null+ctx." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351388620 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @type-scoped @context does NOT affect nested nodes" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c009-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349967640 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a [@graph, @index] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0081-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0081-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0081-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a @graph container with @index" . -_:g70292352255260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352292520 . -_:g70292352255260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property (contains @id)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er14-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid reverse property is found" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350539780 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands input using @nest" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623444100 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id, @set] container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0086-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0086-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id and @set" . -_:g70292357602600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357665260 . -_:g70292357602600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> . -_:g70292355436240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622347660 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Property value with @included" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292351670260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623350700 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on embedded context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c028-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c028-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/2000/01/rdf-schema#comment> "embedded context with @propagate: false do not survive node-objects" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352452280 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with value canonicalization" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js12-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with value canonicalization." . -_:g70292355880720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618170280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349882260 . -_:g70292618170280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> . -_:g70292625037820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625087660 . -_:g70292625037820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> . -_:g70292355733420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622639900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622810540 . -_:g70292622639900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> . -_:g70292349933580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350081400 . -_:g70292349933580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624119120 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id, @set] container" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e086-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e086-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id and @set" . -_:g70292349913500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622229700 . -_:g70292349913500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355914840 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a string value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/2000/01/rdf-schema#comment> "container: @nest" . -_:g70292623167040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357602600 . -_:g70292623167040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> . -_:g70292625557180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625595080 . -_:g70292625557180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351649980 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0110-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0110-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618215760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "relative @base overrides base option and document location" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0090-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0090-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of a relative @base overrides base option and document location" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350258320 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@index map with @none value using alias of @none" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m010-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @index" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property value (through coercion)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er36-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355975200 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/in01-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/in01-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/in01-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357585640 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import must be a string" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @import value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/2000/01/rdf-schema#comment> "@import must be a string." . -_:g70292357629780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622416960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623087320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623346080 . -_:g70292623087320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use terms with @type: @vocab but not with @type: @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e056-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e056-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0056" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Colliding keywords" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "colliding keywords" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er26-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when colliding keywords are found" . -_:g70292351631740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351631740 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350702660 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed @always/@never" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0030-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0030-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0030-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/2000/01/rdf-schema#comment> "@embed within a frame controls the object embed flag when processing that frame (@always and @never values)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352716680 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import must be a string" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @import value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/2000/01/rdf-schema#comment> "@import must be a string." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351665760 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped types resolved against previous context" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c018-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c018-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped types resolved against previous context" . -_:g70292357977280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219442960 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with aliased @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js19-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js19-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with aliased @type." . -_:g70292349934720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623066080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623135820 . -_:g70292623066080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> . -_:g70292623429940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351245520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352376420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352407480 . -_:g70292352376420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> . -_:g70292622722640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . -_:g70292622722640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> . -_:g70292352157920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352286820 . -_:g70292352157920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> . -_:g70292625020240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623907420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357842860 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with mismatching term direction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di07-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "prefix://suffix not a compact IRI" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0067-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0067-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/2000/01/rdf-schema#comment> "prefix:suffix values are not interpreted as compact IRIs if suffix begins with two slashes" . -_:g70292351307880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351488020 . -_:g70292351307880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> . -_:g70292352831260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622788240 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context nullification" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c014-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context nullification" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350686940 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mapping @container: [@list, @set] is invalid" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/es02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/2000/01/rdf-schema#comment> "Testing legal combinations of @set with other container values" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "bnode values of reverse properties" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0064-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0064-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand reverse property whose values are unlabeled blank nodes" . -_:g70292350453840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351386960 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292353948680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349715240 . -_:g70292353948680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625605920 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Representing numbers >= 1e21" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/rt01-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/rt01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <http://www.w3.org/2000/01/rdf-schema#comment> "numbers with no fractions but that are >= 1e21 are represented as xsd:double" . -_:g70292351386940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355664400 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A scoped context may include itself recursively (direct)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e126-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e126-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly" . -_:g70292350534920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350683140 . -_:g70292350534920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> . -_:g70292352191160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352405900 . -_:g70292352191160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292080765680 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid graph name IRIs are rejected" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf07-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . -_:g70292624611620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624638080 . -_:g70292624611620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351927860 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Verifies that relative IRIs as properties with relative @vocab in 1.0 generate an error" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0116-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative property IRIs with relative @vocab in 1.0" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625020240 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@requireAll only matches if @type and other properties are present" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/ra01-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/ra01-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/ra01-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/2000/01/rdf-schema#comment> "If @requireAll is true, then all listed properties, including @type, must be present to match." . -_:g70292351468180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351769540 . -_:g70292351468180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352456000 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prepends @type in object already having an @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m004-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219571860 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "explicitly excludes unframed properties (@explicit: true)" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0026-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0026-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0026-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "If property is not in frame, and explicit is true, processors must not add any values for property to output." . -_:g70292351126600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351211320 . -_:g70292351126600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219377900 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (string)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js17-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js17-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (string)." . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352027480 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element with HTML character references" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r010-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r010-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with character references" . -_:g70292354091140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349804300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623070480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "collapse set of sets, keep empty lists" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e015-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0015" . -_:g70292623068000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623099740 . -_:g70292623068000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> . -_:g70292351354920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292354092160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349650920 . -_:g70292354092160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> . -_:g70292351031220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative propererty IRIs with @vocab: ''" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0107-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0107-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0107-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex use cases for relative IRI compaction or properties" . -_:g70292350703460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350737160 . -_:g70292350703460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error dereferencing a remote context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading remote context failed" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context dereference results in an error" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351211500 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property and value with different terms mapping to the same expanded property" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c003-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . -_:g70292350634260 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350634260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624692780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350094000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350141940 . -_:g70292350094000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> . -_:g70292623169860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (12)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0132-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0132-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "keep expanded object format if @type doesn't match" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0006-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Values not matching a coerced @type remain in expanded form" . -_:g70292350402820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350502240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350534000 . -_:g70292350502240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> . -_:g70292351540980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350976940 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Included containing @included" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in04-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292624200580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624265860 . -_:g70292624200580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> . -_:g70292355205300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349799880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349999980 . -_:g70292349799880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350667200 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI will not use an expanded term definition in 1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p001-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms with an expanded term definition are not used for creating compact IRIs" . -_:g70292353848880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354599760 . -_:g70292353848880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> . -_:g70292351605160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351718360 . -_:g70292351605160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset with a default and two named graphs" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0115-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0115-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/2000/01/rdf-schema#comment> "Dataset with a default and two named graphs (IRI and BNode)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351176500 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (double-zero)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js04-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (double-zero)." . -_:g70292623395280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623447680 . -_:g70292623395280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> . -_:g70292350288980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350488160 . -_:g70292350288980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop null and unmapped properties" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that null values and unmapped properties are removed from expanded output" . -_:g70292625672940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625705560 . -_:g70292625672940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> . -_:g70292350835500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350963360 . -_:g70292350835500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> . -_:g70292351310260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351339720 . -_:g70292351310260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624366340 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e001-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -_:g70292623067920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623196380 . -_:g70292623067920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> . -_:g70292624359940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624412780 . -_:g70292624359940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> . -_:g70292618152520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624380600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624428780 . -_:g70292624380600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> . -_:g70292355519140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355550600 . -_:g70292355519140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> . -_:g70292350390840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357893620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357906920 . -_:g70292357893620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349867640 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (boolean false)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js02-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean false)." . -_:g70292352472100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355357820 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Verifies that relative IRIs as properties with @vocab: '' in 1.0 generate an error" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e115-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs in 1.0" . -_:g70292350354760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352059240 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (integer)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (integer)." . -_:g70292622705420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622705420 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292356012300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622873400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622873400 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352747640 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import overflow" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors must detect source contexts that include @import." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355925940 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Framing blank node unnamed graphs" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g010-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g010-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g010-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623084380 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (with @vocab)." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr37-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr37-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -_:g70292357891880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623939900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623952980 . -_:g70292623939900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351341880 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands multiple embedded JSON-LD script elements where one is an array" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r005-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r005-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements with array" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625509960 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List of lists (from array)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "list of lists" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er32-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a list of lists is found" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618309120 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "use native types flag set to true" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0018-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0018-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "Literals with datatype xsd:boolean, xsd:integer, and xsd:double are serialized using native scalar values" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623132100 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches match none @type in value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0040-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0040-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0040-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -_:g70292356106360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349735940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618222220 . -_:g70292349735940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352212920 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version may be specified after first context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/p001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/p001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622562800 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing an deep list" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/li01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/li01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of lists" . -_:g70292350885360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624900780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624938680 . -_:g70292624900780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622739880 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map with alias @none" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m014-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . -_:g70292355777900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352960080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622546100 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (string)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js17-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js17-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (string)." . -_:g70292622499600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622530660 . -_:g70292622499600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> . -_:g70292351830420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623202620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623232080 . -_:g70292623202620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> . -_:g70292350176700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350241260 . -_:g70292350176700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> . -_:g70292355109480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355158820 . -_:g70292355109480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622330140 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.1, 1.0]" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/p003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/p003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . -_:g70292623924660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350900860 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "remove @value = null" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e019-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0019" . -_:g70292622629640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622793840 . -_:g70292622629640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> . -_:g70292355683360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624905240 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid remote context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid remote context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a remote context is not an object containing @context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple reverse properties" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0078-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0078-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of multiple reverse properties" . -_:g70292358206380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624738580 . -_:g70292358206380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357862820 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "use rdf:type flag set to false" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0019-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0019-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting useRdfType to true causes an rdf:type predicate to be treated like a normal property, not @type" . -_:g70292350698200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618342520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357930560 . -_:g70292618342520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative IRIs" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e029-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e029-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0029" . -_:g70292623776360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623803420 . -_:g70292623776360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> . -_:g70292219396020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219428580 . -_:g70292219396020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> . -_:g70292623250300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623295480 . -_:g70292623250300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> . -_:g70292350262940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350377380 . -_:g70292350262940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> . -_:g70292622939700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623086580 . -_:g70292622939700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> . -_:g70292624851120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355060380 . -_:g70292624851120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> . -_:g70292353076500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353111020 . -_:g70292353076500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> . -_:g70292351308860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351337980 . -_:g70292351308860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> . -_:g70292350867340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624201200 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0010-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . -_:g70292623871700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623938120 . -_:g70292623871700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Definition for the empty term" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er52-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains a definition for the empty term" . -_:g70292351211320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351271240 . -_:g70292351211320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357714160 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches some @type in value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0043-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0043-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0043-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_2_dquotes" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with 2 dquotes \"\"\"a\"\"b\"\"\" from N-Triples" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624808400 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacts targeted JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/c003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/c003-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/c003-in.html#second> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . -_:g70292357630640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context reordering" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0032-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0032-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that generated triples do not depend on order of @context." . -_:g70292622429240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622530620 . -_:g70292622429240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> . -_:g70292624430440 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356043660 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear protection with array with null context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr15-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr15-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/2000/01/rdf-schema#comment> "Clear protection with array with null context" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622329900 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if targeted element does not have type application/ld+json" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r013-in.html#first> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with wrong type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @reverse value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @reverse value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er33-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @reverse value is found" . -_:g70292623263880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350718200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350813380 . -_:g70292350718200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @id value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @id value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er27-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @id value is found" . -_:g70292350588580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350751580 . -_:g70292350588580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Empty IRI expands to resource location" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0016-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding an empty IRI uses the test file location." . -_:g70292350914720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350948420 . -_:g70292350914720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact language-tagged and indexed strings to index-map" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0064-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0064-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0064-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/2000/01/rdf-schema#comment> "Given values with both @index and @language and term index-map term, use index map" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative IRIs" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0066-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0066-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0066-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex use cases for relative IRI compaction" . -_:g70292352127680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292352146540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351780060 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes using @none if no property value exists" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi05-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . -_:g70292350851660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219345460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219345460 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351769480 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nests using alias of @nest" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n003-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -_:g70292351639080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350894480 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @id] container (multiple ids and objects)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0103-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0103-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0103-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -_:g70292351337460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351490180 . -_:g70292351337460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> . -_:g70292622903760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623003740 . -_:g70292622903760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> . -_:g70292350489280 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350489280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351225700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351255940 . -_:g70292351225700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> . -_:g70292622888340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622925440 . -_:g70292622888340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> . -_:g70292624366340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624366340 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292624790200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624803960 . -_:g70292624790200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> . -_:g70292352061060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352091200 . -_:g70292352061060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> . -_:g70292351474260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351667880 . -_:g70292351474260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> . -_:g70292350162660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350288980 . -_:g70292350162660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform RDF to JSON-LD" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70292624513340 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Serialize RDF as JSON-LD Algorithm](https://www.w3.org/TR/json-ld11-api/#serialize-rdf-as-json-ld-algorithm)." . -_:g70292350685820 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350685820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292354422660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354946580 . -_:g70292354422660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> . -_:g70292350452240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353499240 . -_:g70292350452240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> . -_:g70292623035920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623135940 . -_:g70292623035920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> . -_:g70292350748100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350846420 . -_:g70292350748100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Plain literal with CURIE from default context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0002-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests generation of a triple using a CURIE defined in the default context." . -_:g70292358106820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358153220 . -_:g70292358106820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te021> . -_:g70292355696840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355745920 . -_:g70292355696840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622705420 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate is invalid in 1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c029-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/2000/01/rdf-schema#comment> "@propagate is invalid in 1.0" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624425280 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands first embedded JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e002-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350432380 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a value object value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -_:g70292624525480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624612460 . -_:g70292624525480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language-tagged value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language-tagged value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er39-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language-tagged value is found" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624168620 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacting values of @preserve" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0051-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0051-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0051-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/2000/01/rdf-schema#comment> "When compacting the value of a property using @preserve, use the term definition for term to properly compact the value of @preserve." . -_:g70292624351080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624476880 . -_:g70292624351080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> . -_:g70292357930560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357989500 . -_:g70292357930560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> . -_:g70292351666000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351719660 . -_:g70292351666000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358059500 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: null with i18n literal with direction and no language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di01-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse i18n datatype without proper option." . -_:g70292351737780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351913180 . -_:g70292351737780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative IRI expands relative resource location" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0017-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding a relative IRI uses the test file location." . -_:g70292350967460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351098400 . -_:g70292350967460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> . -_:g70292350996240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351025800 . -_:g70292350996240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> . -_:g70292352602080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352653500 . -_:g70292352602080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te013> . -_:g70292352602000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352652520 . -_:g70292352602000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625148260 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails if trying to redefine a protected null term." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr28-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected term with a null IRI mapping cannot be redefined." . -_:g70292623491420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623491420 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351340180 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Property value with @included" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292352407480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352438040 . -_:g70292352407480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> . -_:g70292353292140 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292353031220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353062240 . -_:g70292353031220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> . -_:g70292353093020 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frag ID expands relative resource location" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0018-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding a fragment uses the test file location." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353271800 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (boolean true)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js01-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (boolean true)." . -_:g70292624035980 <https://w3c.github.io/json-ld-api/tests/vocab#httpStatus> "301"^^<http://www.w3.org/2001/XMLSchema#integer> . -_:g70292624035980 <https://w3c.github.io/json-ld-api/tests/vocab#redirectTo> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object (unexpected keyword)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er37-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object is found" . -_:g70292351716700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . -_:g70292351716700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219605740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing @list" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li01-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists." . -_:g70292623236160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623381820 . -_:g70292623236160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> . -_:g70292349862780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349862780 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292622465340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622494360 . -_:g70292622465340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> . -_:g70292349184000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354684620 . -_:g70292349184000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> . -_:g70292351536080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351604460 . -_:g70292351536080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> . -_:g70292355140960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350867500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219489160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349917780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349917780 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . -_:g70292350634840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350634840 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292350634840 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292352534000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353997180 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c007-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292352075660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352144660 . -_:g70292352075660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> . -_:g70292623366400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623443760 . -_:g70292623366400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> . -_:g70292625720000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625720000 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292352323220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350148300 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattens all script elements by default" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/f004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/f004-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/f004-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML multiple script elements" . -_:g70292622333120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357632900 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map with @none" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m013-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355618840 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (4)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compact IRI as @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0124-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e124-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0124-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e124-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that @vocab defined as a compact IRI expands properly" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355123720 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container (indexes with multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e107-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e107-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . -_:g70292357781960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357831060 . -_:g70292357781960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357579920 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches some @value in value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0042-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0042-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0042-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening list/set with coercion" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0023-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0023-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening lists and sets with properties having coercion coerces list/set values" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353108740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none is illegal in 1.0." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/tn01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none is illegal in json-ld-1.0." . -_:g70292356089040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356123180 . -_:g70292356089040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test type coercion to typed literal" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0020-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests coercion of object to a typed literal when specified." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid base IRI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid base IRI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @base" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351698340 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing mixed list values" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li10-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292351374320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351467760 . -_:g70292351374320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> . -_:g70292351785040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352458560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622383920 . -_:g70292352458560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355812040 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid keyword in term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/ec01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid term definition is found" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350849160 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transforms targeted JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r003-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r003-in.html#second> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623311840 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0082-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0082-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . -_:g70292351555240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350440240 . -_:g70292351555240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354882620 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index appends to property value, instead of @index (node)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi09-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356123540 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes in an array (prune bnodes)" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/p020-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/2000/01/rdf-schema#comment> "Empty frame matches all nodes at top-level, and repeats where embedded." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351031220 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Property value with @included" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in05-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292350750400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350983060 . -_:g70292350750400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> . -_:g70292353176640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353208160 . -_:g70292353176640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> . -_:g70292355549100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (11)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0131-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0131-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -_:g70292351456000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624673680 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with i18n literal with direction and language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di06-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Parses i18n datatype with proper option." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not expand aliased @id/@type" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "If a keyword is aliased, it is not used when flattening" . -_:g70292622728100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622827100 . -_:g70292622728100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> . -_:g70292618222220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354993520 . -_:g70292618222220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355089240 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph (mixed graph and object)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e106-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e106-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292351111160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351140820 . -_:g70292351111160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> . -_:g70292618218820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623426420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354487280 . -_:g70292623426420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> . -_:g70292350721440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350748300 . -_:g70292350721440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> . -_:g70292351471380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351521220 . -_:g70292351471380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps with @vocab, default language, and colliding property" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0035-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0035-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological tests of language maps" . -_:g70292349720440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618168200 . -_:g70292349720440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> . -_:g70292625119500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context reset" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e016-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0016" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623215200 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an array" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292623084300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623117420 . -_:g70292623084300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354385160 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + graph container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c025-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c025-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c025-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + graph container" . -_:g70292622758400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623183660 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + property-scoped + values evaluates against previous context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c024-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c024-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + property-scoped + values evaluates against previous context" . -_:g70292350946440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292617691360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350799800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350851340 . -_:g70292350799800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> . -_:g70292354977720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349833060 . -_:g70292354977720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> . -_:g70292351307800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351341480 . -_:g70292351307800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property value (in @reverse)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er34-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" . -_:g70292623481340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351632420 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped contexts are properly reverted" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c017-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c017-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped contexts are property reverted" . -_:g70292351994920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354127860 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compactArrays option" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0070-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0070-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0070-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting compactArrays to false causes single element arrays to be retained" . -_:g70292357797840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (0)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0120-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0120-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -_:g70292351685260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_dquote" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with dquote \"x\"y\" from N-Triples" . -_:g70292624425280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624425280 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292353304060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292080748320 . -_:g70292353304060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> . -_:g70292355550600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355581520 . -_:g70292355550600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Replace deeply-nested embed" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0015-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0015-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0015-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "Torture test." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355652900 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect all terms in context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context protects all term definitions." . -_:g70292352637260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357875640 . -_:g70292352637260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353046500 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in02-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292351931180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351944260 . -_:g70292351931180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> . -_:g70292080829420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292080829420 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292350475740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355485080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355485080 <https://w3c.github.io/json-ld-api/tests/vocab#omitGraph> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292351209320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351632040 . -_:g70292351209320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350638040 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an empty array" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li06-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292623476040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623544020 . -_:g70292623476040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> . -_:g70292624480380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624480380 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292624725680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624725680 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624725680 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219540640 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (null) aleady in expanded form." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js22-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js22-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (null)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623481820 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id index map with aliased @none" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m016-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id with @none" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355863080 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple protected and unprotected terms." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr10-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/2000/01/rdf-schema#comment> "Simple protected and unprotected terms." . -_:g70292355236740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355271180 . -_:g70292355236740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623035800 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if uncommented script is not valid JSON" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r017-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML which is invalid JSON" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er29-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object value is found" . -_:g70292624055040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355647480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355696840 . -_:g70292355647480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> . -_:g70292352144760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352176340 . -_:g70292352144760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id not first property" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0074-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0074-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/2000/01/rdf-schema#comment> "Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition" . -_:g70292351243000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351555240 . -_:g70292351243000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> . -_:g70292352144820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352241220 . -_:g70292352144820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> . -_:g70292622934540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623035920 . -_:g70292622934540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> . -_:g70292351964180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352014240 . -_:g70292351964180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292080829420 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (object)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js06-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (object)." . -_:g70292352205240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352259540 . -_:g70292352205240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> . -_:g70292351704460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351763020 . -_:g70292351704460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352209100 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351273280 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override protected terms after null." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr16-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr16-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/2000/01/rdf-schema#comment> "Override protected terms after null." . -_:g70292622758200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622857020 . -_:g70292622758200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> . -_:g70292351669120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351718600 . -_:g70292351669120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355436160 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed true/false" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/eo01-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/eo01-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/eo01-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/2000/01/rdf-schema#comment> "@embed within a frame controls the object embed flag when processing that frame (true and false values)." . -_:g70292352585240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352585240 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292351880440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351893560 . -_:g70292351880440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> . -_:g70292352488600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352502040 . -_:g70292352488600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625119500 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@requireAll with type and properties" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/ra03-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/ra03-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/ra03-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/2000/01/rdf-schema#comment> "If @requireAll is true, then all listed properties, including @type, must be present to match." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Colliding keywords" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "colliding keywords" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er26-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when colliding keywords are found" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355583160 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Value objects including invalid literal datatype IRIs are rejected" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid typed value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e123-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors MUST validate datatype IRIs." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623399120 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing deep empty arrays" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li08-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Problematic IRI flattening tests" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0025-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0025-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening different kinds of terms and Compact IRIs" . -_:g70292353145540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353176640 . -_:g70292353145540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70292357988800 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Flattening Algorithm](https://www.w3.org/TR/json-ld11-api/#flattening-algorithm)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Top-level value objects are removed" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e045-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e045-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0045" . -_:g70292352631560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355436240 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding a value staring with a colon does not treat that value as an IRI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e118-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e118-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms may begin with a colon and not be treated as IRIs." . -_:g70292622956600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355924820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355879040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355910060 . -_:g70292355879040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> . -_:g70292355580380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625511320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624628000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624641400 . -_:g70292624628000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> . -_:g70292353276740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622822360 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (null) aleady in expanded form." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js22-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js22-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (null)." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353292140 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "default value" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0009-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0009-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0009-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors MUST skip property and property frame if property frame contains @omitDefault with a value of true. Processors MUST add property to output with a new dictionary having a property @preserve and a value that is a copy of the value of @default in frame if it exists, or the string @null otherwise." . -_:g70292219540640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219540640 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292352408520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351109400 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @graph container if value is a graph (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0102-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0102-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/2000/01/rdf-schema#comment> "Creates a new graph object if indexed value is already a graph object" . -_:g70292355767920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351158680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349995620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351816300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292617855380 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c027-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c027-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c027-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects" . -_:g70292349963920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350025900 . -_:g70292349963920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350293820 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an array" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li05-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351091780 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (boolean false)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js02-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (boolean false)." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351321220 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c007-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292351488020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351584660 . -_:g70292351488020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> . -_:g70292618223000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354976920 . -_:g70292618223000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351180120 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds @type to object not having an @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . -_:g70292351341880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351341880 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292351341880 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292622722740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622777560 . -_:g70292622722740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Top-level value objects" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0045-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0045-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding top-level value objects causes them to be removed" . -_:g70292352058020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352095480 . -_:g70292352058020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "I18nDatatype" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623562740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with direction and no language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di09-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Generates i18n datatype from literal with direction with option." . -_:g70292623363900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355013660 . -_:g70292623363900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> . -_:g70292351245180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350129060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350246000 . -_:g70292350129060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> . -_:g70292622378320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622492240 . -_:g70292622378320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> . -_:g70292352288920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352343080 . -_:g70292352288920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> . -_:g70292351752680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351786380 . -_:g70292351752680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple objects without @context use @graph" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0046-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0046-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0046-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/2000/01/rdf-schema#comment> "Wrap top-level array into @graph even if no context is passed" . -_:g70292352305520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352376640 . -_:g70292352305520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> . -_:g70292350780000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350813700 . -_:g70292350780000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> . -_:g70292623756240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623802920 . -_:g70292623756240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property value (in @reverse)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er34-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" . -_:g70292351093840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351160200 . -_:g70292351093840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622609740 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map with @none" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m013-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . -_:g70292355288720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350850560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356024740 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/in02-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/in02-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/in02-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355322800 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if attempting to add property to value object for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292623332800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623332800 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . -_:g70292623332800 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358172900 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e101-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e101-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292623084380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350309660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624232800 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0011-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . -_:g70292624232800 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> "application/jldTest+json"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er28-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid type value is found" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219406960 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Match on @id" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0022-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0022-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0022-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Match if node and frame both have the same @id property." . -_:g70292618234340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349801960 . -_:g70292618234340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352270560 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term as @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0125-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0125-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that @vocab defined as a term expands properly" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219243500 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "no frame @context but @graph output" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0018-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0018-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0018-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "Set framing context to the value of @context from frame, if it exists, or to a new empty context, otherwise." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623101420 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing @list (with coercion)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292355161700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355189560 . -_:g70292355161700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> . -_:g70292351992620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352160540 . -_:g70292351992620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test coercion of double value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0022-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0022-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a decimal value generates a xsd:double typed literal;." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292617691360 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes using @none if no property value does not compact to string" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi06-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . -_:g70292358136100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358174340 . -_:g70292358136100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624966180 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected alias term with same definition." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr23-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr23-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected alias term with same definition." . -_:g70292357894700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357894700 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292625313440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625344580 . -_:g70292625313440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> . -_:g70292352063300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353079480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353129340 . -_:g70292353079480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> . -_:g70292624393920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624497660 . -_:g70292624393920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219375660 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes in @type" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0021-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "Empty frame matches all nodes at top-level, and repeats where embedded (with list content) in json-ld-1.0 mode." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset with a IRI named graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0113-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0113-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic use of creating a named graph using an IRI name" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Lists and sets of properties with list/set coercion" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e023-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e023-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0023" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351732480 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c020-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c020-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_UTF8_boundaries" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/2000/01/rdf-schema#comment> "literal_with_UTF8_boundaries '\\x80\\x7ff\\x800\\xfff...' from N-Triples" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357582660 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to relative HTML base" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r021-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r021-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding @index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e036-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e036-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0036" . -_:g70292624476880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624590880 . -_:g70292624476880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> . -_:g70292352881260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352912700 . -_:g70292352881260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350276520 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "orders @type terms when applying scoped contexts" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c011-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292352618280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352631680 . -_:g70292352618280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> . -_:g70292625087660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . -_:g70292625087660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623810120 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e081-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e081-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/2000/01/rdf-schema#comment> "Don't double-expand an already expanded graph" . -_:g70292352175960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352205240 . -_:g70292352175960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> . -_:g70292219243500 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292356106260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622347580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622384920 . -_:g70292622347580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350224700 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand string using default and term directions and languages" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Strings are coerced to have @direction based on default and term direction." . -_:g70292624738000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624738000 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624295400 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document with link to HTML document" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0013-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0013-in.json> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "If a context is specified in a link header, it is used for JSON, extracting from HTML." . -_:g70292623187300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623264840 . -_:g70292623187300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_all_controls" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/2000/01/rdf-schema#comment> "literal_all_controls '\\x00\\x01\\x02\\x03\\x04...' from N-Triples" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350867340 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing deep arrays" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li07-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292352816460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352850600 . -_:g70292352816460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> . -_:g70292350125800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350506700 . -_:g70292350125800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> . -_:g70292355123720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623314460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623413340 . -_:g70292623314460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351337600 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition on @type with empty map" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/ec02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised if @type is defined as a term with an empty map" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622509540 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if uncommented script text contains comment" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r014-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with comments leftover" . -_:g70292352850280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352881260 . -_:g70292352850280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> . -_:g70292358094340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358108340 . -_:g70292358094340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> . -_:g70292351813680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349798040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355436160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355367320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292350602960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622281000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622295300 . -_:g70292622281000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> . -_:g70292624856000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624856000 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624856000 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . -_:g70292219325180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219325180 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351868860 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expansion allows multiple properties expanding to @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0114-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0114-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/2000/01/rdf-schema#comment> "An exception for the colliding keywords error is made for @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350026440 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map must not be a literal" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -_:g70292623938120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624003180 . -_:g70292623938120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with multiple values of rdf:first" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0013-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0013-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not convert list nodes to @list if nodes contain more than one value for rdf:first." . -_:g70292352029140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352157920 . -_:g70292352029140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> . -_:g70292358043480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624676680 . -_:g70292358043480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> . -_:g70292355384940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292354882620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test using an empty suffix" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0009-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "An empty suffix may be used." . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624035980 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Load JSON-LD through 301 redirect" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a document with a redirect should use the redirected URL as document base" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622985940 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context with multiple property scoped terms" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c019-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with multiple property scoped terms" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350588920 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Attempt to redefine term in other protected context." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected term cannot redefine another protected term." . -_:g70292350094740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350213440 . -_:g70292350094740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> . -_:g70292350025940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350534180 . -_:g70292350025940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355177060 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @version is json-ld-1.0 for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292358122260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623642900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623711940 . -_:g70292623642900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id not first property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e074-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e074-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/2000/01/rdf-schema#comment> "Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition" . -_:g70292353424000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354050060 . -_:g70292353424000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> . -_:g70292350131100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352191880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352204920 . -_:g70292352191880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> . -_:g70292357661340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351616280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350813700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350847380 . -_:g70292350813700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> . -_:g70292354842920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349623000 . -_:g70292354842920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> . -_:g70292351274160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351307800 . -_:g70292351274160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> . -_:g70292351041740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351442560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351451720 . -_:g70292351442560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> . -_:g70292350360340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350539360 . -_:g70292350360340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623002060 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine terms looking like compact IRIs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0071-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0071-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/2000/01/rdf-schema#comment> "Term definitions may look like compact IRIs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350454820 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term with protected scoped context." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/2000/01/rdf-schema#comment> "A scoped context can protect terms." . -_:g70292622924320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622955840 . -_:g70292622924320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> . -_:g70292219605740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623186220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623198760 . -_:g70292623186220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with terms" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph to contain multiple nodes within array" . -_:g70292350455240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350655340 . -_:g70292350455240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352157040 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some IRIs when that start with @ when expanding." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0122-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0122-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350453840 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@language map with no @language" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m011-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . -_:g70292352044780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352058020 . -_:g70292352044780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple types for same subject+property+value" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0025-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0025-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Uniqness of triples should include the value type" . -_:g70292623135940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623213180 . -_:g70292623135940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351828560 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (boolean true)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (boolean true)." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622908920 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id index map with aliased @none" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m015-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id with @none" . -_:g70292349801960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349913500 . -_:g70292349801960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355846520 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition on @type with empty map" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/ec02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised if @type is defined as a term with an empty map" . -_:g70292622675940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350195840 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Index map round-tripping" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0038-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0038-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0038-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex round-tripping use case from Drupal" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357651300 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context with @import" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects (with @import)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias keywords" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Aliased keywords expand in resulting document" . -_:g70292350377380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350538900 . -_:g70292350377380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> . -_:g70292350148300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350148300 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand compact IRI with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e058-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e058-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0058" . -_:g70292624098220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624212140 . -_:g70292624098220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219214940 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Non-flat input" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0017-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0017-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0017-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Framing flattens expanded input, allowing for deeply embedded input to be re-framed." . -_:g70292357815260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623476040 . -_:g70292357815260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> . -_:g70292219428580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219461140 . -_:g70292219428580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> . -_:g70292351998580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355387060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351140080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350226180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352292520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352305040 . -_:g70292352292520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> . -_:g70292624409240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352468760 . -_:g70292624409240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349701600 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "empty @base applied to the base option" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0089-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0089-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of an empty @base is applied to the base option" . -_:g70292351976860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352030920 . -_:g70292351976860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> . -_:g70292219158580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219158580 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292352354640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352391880 . -_:g70292352354640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622591140 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on embedded context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c028-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c028-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/2000/01/rdf-schema#comment> "embedded context with @propagate: false do not survive node-objects" . -_:g70292624740260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624839680 . -_:g70292624740260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355776800 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term with protected scoped context." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/2000/01/rdf-schema#comment> "A scoped context can protect terms." . -_:g70292625197240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625235160 . -_:g70292625197240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> . -_:g70292361744380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292361744380 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . -_:g70292361744380 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292355993200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356042700 . -_:g70292355993200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353419660 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li02-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists." . -_:g70292623213180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623314460 . -_:g70292623213180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> . -_:g70292625526820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625558760 . -_:g70292625526820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> . -_:g70292357714160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292356074360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355614380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355650040 . -_:g70292355614380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622906600 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a non-keyword term starting with '@' (with @vocab)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr35-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr35-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -_:g70292355190160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623788260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623843220 . -_:g70292623788260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352129500 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (object)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (object)." . -_:g70292357831060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623479000 . -_:g70292357831060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> . -_:g70292623399120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622416960 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @context affects nested nodes" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -_:g70292624246920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624316320 . -_:g70292624246920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624055240 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Library example with named graphs" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0050-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0050-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0050-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language-tagged string" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language-tagged string" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er30-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623334540 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference with @type: @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m018-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -_:g70292357698700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358089800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358155160 . -_:g70292358089800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624692300 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacts embedded JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/c001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/c001-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/c001-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -_:g70292624004460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624069840 . -_:g70292624004460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> . -_:g70292349895800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350014740 . -_:g70292349895800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> . -_:g70292349755340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349755340 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292349755340 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292350059860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350222800 . -_:g70292350059860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> . -_:g70292351868400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351917740 . -_:g70292351868400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list with embedded object" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0048-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0048-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/2000/01/rdf-schema#comment> "Node definitions contained within lists are flattend to top level." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand a reverse property with an index-container" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e063-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e063-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0063" . -_:g70292352289520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er50-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse." . -_:g70292623756420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622496460 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c027-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c027-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List conversion with IRI nodes" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0009-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Preserve IRI list nodes (i.e., not blank nodes) when converting to @list" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353734360 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "non-existent framed properties create null property" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0027-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0027-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0027-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Recursively, replace all key-value pairs in compacted results where the key is @preserve with the value from the key-pair. If the value from the key-pair is @null, replace the value with null." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351649280 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mix of protected and unprotected terms." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr19-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr19-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/2000/01/rdf-schema#comment> "Mix of protected and unprotected terms." . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358139320 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to relative HTML base" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e021-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e021-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624465120 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not redirect if type is application/json" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la04-in.json> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . -_:g70292350918140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351081940 . -_:g70292350918140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand value with default language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e022-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e022-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0022" . -_:g70292349717220 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292349717220 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . -_:g70292354976920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349782800 . -_:g70292354976920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> . -_:g70292351966760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352048080 . -_:g70292351966760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> . -_:g70292352097300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623803420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623871920 . -_:g70292623803420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355384940 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index appends to property value, instead of @index (value)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi07-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292350293820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357811420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292356141360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356191020 . -_:g70292356141360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> . -_:g70292622675140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622712140 . -_:g70292622675140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> . -_:g70292623034600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623089500 . -_:g70292623034600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object (@type and @language)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er38-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object is found" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object value using a value alias" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er51-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias" . -_:g70292355028000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350161200 . -_:g70292355028000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> . -_:g70292622575260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622612380 . -_:g70292622575260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> . -_:g70292351228080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351287680 . -_:g70292351228080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351110480 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @set] container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0110-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0110-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0110-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple objects in a simple graph with a graph container need to use @included" . -_:g70292622793000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622838040 . -_:g70292622793000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> . -_:g70292351779960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618057660 . -_:g70292351779960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> . -_:g70292349894900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349998160 . -_:g70292349894900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse-map keys with @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0066-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0066-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand uses @vocab to expand keys in reverse-maps" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350293020 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a named graph with a [@graph, @id, @set] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0087-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0087-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0087-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a named graph using a @graph container with @id and @set" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351061300 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (boolean true)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js01-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (boolean true)." . -_:g70292351467760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351605160 . -_:g70292351467760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> . -_:g70292349983500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350028280 . -_:g70292349983500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> . -_:g70292351604460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351685600 . -_:g70292351604460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> . -_:g70292351585340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351618980 . -_:g70292351585340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> . -_:g70292624154220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624219540 . -_:g70292624154220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350683200 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @graph container (multiple graphs)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0096-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0096-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0096-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349766460 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a [@graph, @set] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0078-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0078-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0078-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact with [@graph, @set]" . -_:g70292350667180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350060840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term with @type: @id if no @type: @vocab and term value" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0060-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0060-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0060-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/2000/01/rdf-schema#comment> "If there's no term with @type: @vocab, use terms with @type: @id for IRIs mapped to terms" . -_:g70292350016640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350129060 . -_:g70292350016640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> . -_:g70292352305040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352341740 . -_:g70292352305040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> . -_:g70292623265460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623298440 . -_:g70292623265460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> . -_:g70292350307700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350388460 . -_:g70292350307700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> . -_:g70292623444100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term with @type: @vocab if no @type: @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0059-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0059-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0059-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/2000/01/rdf-schema#comment> "If there's no term with @type: @id, use terms with @type: @vocab for IRIs not mapped to terms" . -_:g70292354684620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354225240 . -_:g70292354684620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> . -_:g70292354160220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354631100 . -_:g70292354160220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350554240 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with no @language using alias of @none" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m012-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m012-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . -_:g70292352045740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352095460 . -_:g70292352045740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "optimize @set, keep empty arrays" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623169860 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list (with coercion)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351390980 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing multiple lists" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li09-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351637140 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands as empty with no embedded JSON-LD script elements" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r006-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r006-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML when none exist" . -_:g70292357668000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357749420 . -_:g70292357668000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> . -_:g70292351042840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351126600 . -_:g70292351042840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (@reverse not a string)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er15-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . -_:g70292355105100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355161700 . -_:g70292355105100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> . -_:g70292352993380 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292355925940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350572540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353090880 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Included containing @included" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in04-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350916240 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in02-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622675940 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/li02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/li02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of lists" . -_:g70292623999260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624098220 . -_:g70292623999260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand relative IRI with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e057-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e057-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0057" . -_:g70292351882880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351966760 . -_:g70292351882880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> . -_:g70292349717580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618267560 . -_:g70292349717580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> . -_:g70292622313280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding @reverse" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e037-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e037-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0037" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623990000 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e084-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e084-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292618141220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350043260 . -_:g70292618141220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> . -_:g70292356057380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356089040 . -_:g70292356057380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> . -_:g70292355668040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355699020 . -_:g70292355668040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351146300 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (double)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js03-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (double)." . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624232800 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document with extension-type with link" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0011-in.jldt> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "If a context is specified in a link header, it is used for a JSON extension type." . -_:g70292624657040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624726300 . -_:g70292624657040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> . -_:g70292622230600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625495920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625530040 . -_:g70292625495920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349666560 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Drop blank node predicates by default" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e038-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e038-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/2000/01/rdf-schema#comment> "Triples with blank node predicates are dropped by default (from expand-0038)." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349764420 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check legal overriding of type-scoped protected term from nested node" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pr05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr05-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/2000/01/rdf-schema#comment> "Check legal overriding of type-scoped protected term from nested node." . -_:g70292623711940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623756240 . -_:g70292623711940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349798040 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @type-scoped @context does NOT affect nested nodes" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c009-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357698700 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect all terms in sourced context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context protects all term definitions." . -_:g70292622662700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622712100 . -_:g70292622662700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> . -_:g70292351721020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624430440 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "relative and absolute @base overrides base option and document location" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e091-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e091-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of a relative and absolute @base overrides base option and document location" . -_:g70292353204340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353254220 . -_:g70292353204340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357894700 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if start comment missing" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e016-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with unballanced comments" . -_:g70292356204840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356242740 . -_:g70292356204840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> . -_:g70292617855380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352782340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352816460 . -_:g70292352782340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> . -_:g70292351287940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625542700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356175140 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A context may not include itself recursively (direct)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "recursive context inclusion" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing a context referencing itself" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351290160 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Appends nested values from all @nest aliases" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618151540 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Unused context with an embedded context error." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid scoped context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c033-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/2000/01/rdf-schema#comment> "An unused context with an embedded context should still be checked." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355140960 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @null in @default." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0063-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0063-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0063-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/2000/01/rdf-schema#comment> "@null may be used as an @default value and is preserved in output." . -_:g70292351472200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351737780 . -_:g70292351472200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> . -_:g70292352370140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622546100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349982060 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect all terms in context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context protects all term definitions." . -_:g70292353768920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354750700 . -_:g70292353768920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> . -_:g70292624776500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624790200 . -_:g70292624776500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> . -<https://w3c.github.io/json-ld-api/tests/html-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . -<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "HTML" . -<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70292624328400 . -<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [HTML Content Algorithms](https://www.w3.org/TR/json-ld11-api/#html-content-algorithms)." . -_:g70292352059240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@value with @language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e008-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0008" . -_:g70292622580260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622656400 . -_:g70292622580260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> . -_:g70292622581260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352241220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352354500 . -_:g70292352241220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> . -_:g70292350720500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350847120 . -_:g70292350720500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349737460 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes using compacted @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m006-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @type" . -_:g70292219475500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219475500 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624557320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624609080 . -_:g70292624557320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te006> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355291660 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @index is not a string for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624480380 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands targeted JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e003-in.html#second> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . -_:g70292624874960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355042880 . -_:g70292624874960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> . -_:g70292357990080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358060800 . -_:g70292357990080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te019> . -_:g70292622284560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350913320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351042840 . -_:g70292350913320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> . -_:g70292353778780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Framing list with mixed values" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0055-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0055-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0055-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/2000/01/rdf-schema#comment> "Framing list values which are mixed." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352897180 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override term defined in sourced context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so08-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . -_:g70292350670880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625344580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625376020 . -_:g70292625344580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> . -_:g70292357595480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357663520 . -_:g70292357595480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> . -_:g70292623099740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623154760 . -_:g70292623099740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> . -_:g70292352129500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351672260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623759900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623759900 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292623759900 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . -_:g70292623544020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623591040 . -_:g70292623544020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> . -_:g70292352030920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352061060 . -_:g70292352030920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> . -_:g70292357860600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292622532540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349798800 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "relative and absolute @base overrides base option and document location" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0091-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0091-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of a relative and absolute @base overrides base option and document location" . -_:g70292623278720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350354760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds @id to object not having an @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622892240 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (empty array)." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js23-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js23-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (empty array)." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623279100 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index expands to property value, instead of @index (value)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622284560 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.0, 1.1, 1.0]" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/p002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/p002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . -_:g70292351622620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355863080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622956600 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped types resolved against previous context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c018-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped types resolved against previous context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353077780 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import can only reference a single context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid remote context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/2000/01/rdf-schema#comment> "@import can only reference a single context." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622581260 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds vocabulary expanded @type to object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m006-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . -_:g70292355650040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355684480 . -_:g70292355650040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> . -_:g70292350429900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351833220 . -_:g70292350429900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> . -_:g70292351375180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351408860 . -_:g70292351375180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact to @type: @vocab and compact @id to term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0054-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0054-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0054-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact to @type: @vocab and compact @id to term" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352406800 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with unicode canonicalization" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js11-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with unicode canonicalization." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350667300 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0098-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0098-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292349879560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349963920 . -_:g70292349879560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> . -_:g70292350571980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Single value reverse properties with @set" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0069-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0069-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0069-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/2000/01/rdf-schema#comment> "Single values are kept in array form for reverse properties if the container is to @set" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand value with default language" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0022-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0022-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding with a default language applies that language to string values" . -_:g70292354615720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349557480 . -_:g70292354615720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph is array" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0039-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0039-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0039-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> <http://www.w3.org/2000/01/rdf-schema#comment> "Value of @graph is always an array" . -_:g70292357711240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357781960 . -_:g70292357711240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> . -_:g70292351520540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351550480 . -_:g70292351520540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351672260 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing multiple lists" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292351388620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compact date" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0011-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanded value with type xsd:dateTime is represented as string with type coercion" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A term mapping to null removes the mapping" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0017-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0017-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Mapping a term to null causes the property and its values to be removed from the compacted document" . -_:g70292350032280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350032280 <https://w3c.github.io/json-ld-api/tests/vocab#compactToRelative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292352157040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349782800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349849740 . -_:g70292349782800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> . -_:g70292349732500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618237400 . -_:g70292349732500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351324520 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI does not use term with definition including @prefix: false" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p008-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanded term definition may set prefix explicitly in 1.1" . -_:g70292622988420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623021760 . -_:g70292622988420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> . -_:g70292349736280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618153520 . -_:g70292349736280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context with JavaScript Object property names" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0108-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0108-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0108-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact with context including JavaScript Object property names" . -_:g70292351899080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351589740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@vocab-relative IRIs in term definitions" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e052-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e052-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0052" . -_:g70292351244160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350246000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350356140 . -_:g70292350246000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> . -_:g70292350241260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350344220 . -_:g70292350241260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er22-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid language mapping is found" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355565920 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect a term" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/2000/01/rdf-schema#comment> "Check error when overriding a protected term." . -_:g70292358007840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358043800 . -_:g70292358007840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351812160 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0112-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0112-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . -_:g70292080765680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624002740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624084240 . -_:g70292624002740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> . -_:g70292352944120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352975520 . -_:g70292352944120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> . -_:g70292625590180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625621900 . -_:g70292625590180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> . -_:g70292352830520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219142420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219142420 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292350454820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355091840 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "An array with a single value remains an array if container is @set." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0062-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0062-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0062-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/2000/01/rdf-schema#comment> "Cleaning up @preserve/@null does not violate container: @set." . -_:g70292357963580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357990080 . -_:g70292357963580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te018> . -_:g70292354911640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349786920 . -_:g70292354911640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> . -_:g70292624497660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624573140 . -_:g70292624497660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> . -_:g70292625085540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351304020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351403420 . -_:g70292351304020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> . -_:g70292357828660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623463880 . -_:g70292357828660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph and @id aliased" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e017-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0017" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351797940 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a list object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292622827100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622903760 . -_:g70292622827100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623217900 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if attempting to add property to value object for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292351160720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351353400 . -_:g70292351160720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> . -_:g70292353290020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292080717460 . -_:g70292353290020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618253740 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (boolean true)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js01-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean true)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language map value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language map value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er35-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language map value is found" . -_:g70292349913580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350059860 . -_:g70292349913580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> . -_:g70292625081280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625119180 . -_:g70292625081280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Default subject is BNode" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0003-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a BNode is created if no explicit subject is set." . -_:g70292358106460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358138000 . -_:g70292358106460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355485080 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Library framing example with @graph and omitGraph is true." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g001-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g001-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g001-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic example used in playground and spec examples." . -_:g70292352354040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351816000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353768920 . -_:g70292351816000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Object Lists" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0001-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests generation using different types of objects." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352146540 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition with @id: @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0026-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0026-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding term mapping to @type uses @type syntax" . -_:g70292355618840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with IRI rdf:rest" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0015-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0015-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not convert lists to @list if a list node's rdf:rest is an IRI." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-coercion of native types" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0031-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0031-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation" . -_:g70292353159800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358078100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @id value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @id value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er27-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @id value is found" . -_:g70292349965460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622791800 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing mixed list values" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/li03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/li03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of lists" . -_:g70292625069900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622607120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622677520 . -_:g70292622607120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> . -_:g70292357794200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357828660 . -_:g70292357794200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> . -_:g70292351833220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351863240 . -_:g70292351833220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> . -_:g70292624050240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624115120 . -_:g70292624050240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622532540 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected keyword aliases cannot be overridden." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr31-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . -_:g70292355832100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355842120 . -_:g70292355832100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> . -_:g70292355012960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349783960 . -_:g70292355012960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> . -_:g70292351442840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351471380 . -_:g70292351442840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties expanding to the same IRI" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0034-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0034-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352866120 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect all terms in sourced context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context protects all term definitions." . -_:g70292623346480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357760060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357794200 . -_:g70292357760060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "_::sufffix not a compact IRI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e068-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e068-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0068" . -_:g70292625608460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625621840 . -_:g70292625608460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> . -_:g70292352014220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623672600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "A value of a property with @type: @id coercion expands to a node reference" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623267540 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c026-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c026-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects" . -_:g70292352997360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353007660 . -_:g70292352997360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292080731840 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (double)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js03-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (double)." . -_:g70292622777460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622925440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622938400 . -_:g70292622925440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> . -_:g70292355191940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355226820 . -_:g70292355191940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> . -_:g70292624055240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357811420 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override protected terms in sourced context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so11-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . -_:g70292351632040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351950500 . -_:g70292351632040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> . -_:g70292351207220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351240840 . -_:g70292351207220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> . -_:g70292351995140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352172780 . -_:g70292351995140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> . -_:g70292350344220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350455920 . -_:g70292350344220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> . -_:g70292355979100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356013220 . -_:g70292355979100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351540980 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a string value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/2000/01/rdf-schema#comment> "container: @nest" . -_:g70292623695480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352472100 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @set] container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e094-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e094-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of [@graph, @set] containers" . -_:g70292622609740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625431240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625444620 . -_:g70292625431240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> . -_:g70292351486160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351649920 . -_:g70292351486160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> . -_:g70292624150520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624203420 . -_:g70292624150520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (@id not a string)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er18-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . -_:g70292622381880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622412800 . -_:g70292622381880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property value (through coercion)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er36-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" . -_:g70292622492300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622562160 . -_:g70292622492300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> . -_:g70292622492240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622607200 . -_:g70292622492240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> . -_:g70292623232640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623399540 . -_:g70292623232640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "GeneralizedRdf" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623596440 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "produce generalized RDF flag" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0118-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0118-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/2000/01/rdf-schema#comment> "Triples with blank node predicates are not dropped if the produce generalized RDF flag is true." . -_:g70292624130420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623350700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623279100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623842220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350173220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355014540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349913580 . -_:g70292355014540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse properties" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0042-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0042-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding terms defined as reverse properties uses @reverse in expanded document" . -_:g70292219377900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219377900 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "collapse set of sets, keep empty lists" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0015-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "An array of multiple @set nodes are collapsed into a single array" . -_:g70292355023060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350148120 . -_:g70292355023060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round-trip relative URLs" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0047-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0047-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0047-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative URLs remain relative after compaction" . -_:g70292624592020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624592020 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352157400 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c022-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c022-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350947880 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id, @set] container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0100-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0100-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id and @set" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351244160 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Included containing @included" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350226180 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nest term not defined" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/en01-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/en01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -_:g70292622728940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351146000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351245120 . -_:g70292351146000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> . -_:g70292618138960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349736280 . -_:g70292618138960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> . -_:g70292350588800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350688980 . -_:g70292350588800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> . -_:g70292350852980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351436140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350716900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351944100 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (double)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (double)." . -_:g70292352145680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352175960 . -_:g70292352145680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Duplicate values in @list and @set" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0027-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0027-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Duplicate values in @list and @set are not merged" . -_:g70292623346080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623411060 . -_:g70292623346080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> . -_:g70292350934440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350993860 . -_:g70292350934440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355027560 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compaction to list of lists" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "compaction to list of lists" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/e001-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/e001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Compaction when attempting to compact a list of lists" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term with @language: null" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0048-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0048-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0048-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/2000/01/rdf-schema#comment> "Prefer terms with a language mapping set to null over terms without language-mapping for non-strings" . -_:g70292623198760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623232280 . -_:g70292623198760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> . -_:g70292354534320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354733120 . -_:g70292354534320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> . -_:g70292623547800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623100440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352140020 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple keys may mapping to @type when nesting" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -_:g70292624219540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624283780 . -_:g70292624219540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350899860 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRIs using simple terms ending with gen-delim" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p004-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/2000/01/rdf-schema#comment> "All simple terms ending with gen-delim are suitable for compaction" . -_:g70292354598680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative propererty IRIs with @vocab: ''" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0095-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0095-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0095-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex use cases for relative IRI compaction or properties" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand already expanded" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e013-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0013" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625053760 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of terms with scoped contexts using same definitions." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr25-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr25-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of terms with scoped contexts using same definitions." . -_:g70292623479180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623575200 . -_:g70292623479180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> . -_:g70292350081400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350211880 . -_:g70292350081400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Free-floating nodes are removed" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e046-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e046-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0046" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keep duplicate values in @list and @set" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e027-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e027-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0027" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623213620 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + graph container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c025-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c025-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + graph container" . -_:g70292623906000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623935080 . -_:g70292623906000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @vocab-relative term with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e055-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e055-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0055" . -_:g70292624676580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624690020 . -_:g70292624676580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> . -_:g70292350698260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350799100 . -_:g70292350698260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-coercion of native types" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0031-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0031-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation" . -_:g70292355276200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355306980 . -_:g70292355276200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> . -_:g70292352750240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352782340 . -_:g70292352750240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> . -_:g70292623691460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623792020 . -_:g70292623691460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> . -_:g70292624002900 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> "application/jldTest"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292357716120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357742980 . -_:g70292357716120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> . -_:g70292623721920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623788260 . -_:g70292623721920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357977280 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e099-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e099-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . -_:g70292623346160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623346160 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352434720 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Included containing @included" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "I18nDatatype" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623629300 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with direction and language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di10-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/2000/01/rdf-schema#comment> "Generates i18n datatype from literal with direction with option." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Typed literal" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0006-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creation of a literal with a datatype." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset from node with embedded named graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0116-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0116-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/2000/01/rdf-schema#comment> "Embedding @graph in a node creates a named graph" . -_:g70292622744780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350488260 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none uses arrays with @container: @set" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/tn03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/tn03-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/tn03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none honors @container." . -_:g70292623185160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623216220 . -_:g70292623185160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> . -_:g70292351586120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353161300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622477140 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal aleady in expanded form with aliased keys" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js16-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js16-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal in expanded form with aliased keys in value object." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350861980 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in01-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292353254220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353304060 . -_:g70292353254220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357974480 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to document base" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e018-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e018-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -_:g70292350310580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350403600 . -_:g70292350310580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> . -_:g70292624410020 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la03-alternate.json>; rel=\"alternate\"; type=\"application/json\"" . -_:g70292355109340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355143800 . -_:g70292355109340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> . -_:g70292355844540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355894100 . -_:g70292355844540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> . -_:g70292622383760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622482920 . -_:g70292622383760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Replace existing embed" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0013-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0013-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0013-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "An empty frame matches all objects, even if embedded, causing them to be serialized under @graph." . -_:g70292624316320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624376620 . -_:g70292624316320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> . -_:g70292351637140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351637140 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_squote" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with squote \"x'y\" from N-Triples" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624184360 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e087-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e087-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292624803240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352435380 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails if trying to redefine a protected null term." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr28-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected term with a null IRI mapping cannot be redefined." . -_:g70292622777560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622806880 . -_:g70292622777560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> . -_:g70292357742640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351649280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623268920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292361746000 . -_:g70292623268920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand term with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0054-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0054-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding values of properties of @type: @vocab does not expand term values" . -_:g70292351830380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351867480 . -_:g70292351830380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> . -_:g70292624203420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624232380 . -_:g70292624203420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> . -_:g70292357579920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623264840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623366400 . -_:g70292623264840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> . -_:g70292624687300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624771220 . -_:g70292624687300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> . -_:g70292357976240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358045420 . -_:g70292357976240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Overwrite document base with @base and reset it again" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e060-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e060-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0060" . -_:g70292352042120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624869640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624891860 . -_:g70292624869640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> . -_:g70292622754020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622792720 . -_:g70292622754020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> . -_:g70292358059500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0025-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0025-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0025-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple values with different languages use language maps if property has @container: @language" . -_:g70292618168200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618218300 . -_:g70292618168200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> . -_:g70292351605380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351635760 . -_:g70292351605380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object value using a value alias" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er51-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias" . -_:g70292617608940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353409780 . -_:g70292617608940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> . -_:g70292349852500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349917300 . -_:g70292349852500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> . -_:g70292351408860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351442560 . -_:g70292351408860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "_:suffix values are not a compact IRI" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0068-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0068-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/2000/01/rdf-schema#comment> "prefix:suffix values are not interpreted as compact IRIs if prefix is an underscore" . -_:g70292617840720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354489840 . -_:g70292617840720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357699060 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with term direction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di04-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er22-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid language mapping is found" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand absolute IRI with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0053-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0053-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding values of properties of @type: @vocab does not further expand absolute IRIs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@value with @language" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Keep expanded values with @language, drop non-conforming value objects containing just @language" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358093440 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to HTML base" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e020-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e020-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350815740 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container may not be @graph in 1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep15-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep15-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/2000/01/rdf-schema#comment> "validate appropriate values of @container" . -_:g70292350441520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351868400 . -_:g70292350441520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351556520 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context nullification" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c014-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c014-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/2000/01/rdf-schema#comment> "Nullifying a type-scoped context continues to use the previous context when compacting @type." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language-tagged string" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language-tagged string" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er30-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found" . -_:g70292618151720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349799880 . -_:g70292618151720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> . -_:g70292350847380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350881040 . -_:g70292350847380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> . -_:g70292350044800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355023060 . -_:g70292350044800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand native values to IRIs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0088-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0088-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/2000/01/rdf-schema#comment> "Value Expansion does not expand native values, such as booleans, to a node object" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351405600 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (string)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js10-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js10-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (string)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353012100 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in01-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @reverse node references using strings" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0035-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0035-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0035-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact node references to strings for reverse properties using @type: @id" . -_:g70292350554240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350754380 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "id map using @none with alias" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m014-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m014-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350885360 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @index] container (multiple indexes and objects)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0102-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0102-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0102-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351111540 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id map using @none" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m018-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m018-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id" . -_:g70292357845880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349701600 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . -_:g70292350028280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350094000 . -_:g70292350028280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> . -_:g70292350076500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350289280 . -_:g70292350076500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> . -_:g70292357793300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219489160 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "match on any common properties if @requireAll: false" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0024-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0024-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0024-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Match if @requireAll is false and both node and frame contain common non-keyword properties of any value." . -_:g70292219161920 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292623989480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624016120 . -_:g70292623989480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352799780 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context with @import" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so05-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects (with @import)" . -_:g70292352160540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622546780 . -_:g70292352160540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple named graph (Wikidata)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0027-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0027-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Using @graph with other keys places triples in a named graph." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351765580 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flatten using relative fragment identifier properly joins to base" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0047-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0047-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting a relative round-trips" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352324500 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A scoped context may include itself recursively (direct)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0126-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0126-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly" . -_:g70292622838260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties expanding to the same IRI" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0034-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0034-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms" . -_:g70292352211240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid typed value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid typed value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er40-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid typed value is found" . -_:g70292625432300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625463920 . -_:g70292625432300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> . -_:g70292351064940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623346160 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords may not be redefined in 1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er42-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword" . -_:g70292351685600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351768960 . -_:g70292351685600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> . -_:g70292349606640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623969440 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> "application/jldTest+json"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623165520 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m017-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -_:g70292623168440 <https://w3c.github.io/json-ld-api/tests/vocab#expandContext> <https://w3c.github.io/json-ld-api/tests/expand/0077-context.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355288720 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Match on value reference" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0066-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0066-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0066-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/2000/01/rdf-schema#comment> "Value reference matching." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355337860 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Match on list value" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0067-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0067-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0067-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/2000/01/rdf-schema#comment> "List value matching." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219161920 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @type in ducktype filter" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0016-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0016-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0016-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Match if node has a @type property and frame has a @type property containing only an empty dictionary." . -_:g70292219608820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349699380 . -_:g70292219608820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> . -_:g70292622805860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622836660 . -_:g70292622805860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> . -_:g70292622384920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622397940 . -_:g70292622384920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352240660 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compact IRI as @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0124-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0124-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that @vocab defined as a compact IRI expands properly" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624364740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@set of @value objects with keyword aliases" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e014-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0014" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353047120 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import may not be used in an imported context." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/2000/01/rdf-schema#comment> "@import only valid within a term definition." . -_:g70292351353400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351554560 . -_:g70292351353400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> . -_:g70292351441700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351829500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351992620 . -_:g70292351829500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> . -_:g70292350534720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350014740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350094740 . -_:g70292350014740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> . -_:g70292351075140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351208240 . -_:g70292351075140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> . -_:g70292352506740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352506740 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292352209100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353193960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354751280 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object using compact IRI @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m005-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @id" . -_:g70292618312340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357876440 . -_:g70292618312340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> . -_:g70292624119120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351913280 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c020-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624725680 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with compound literal with direction and no language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di07-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di07-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse compound literal without proper option." . -_:g70292352376640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352422500 . -_:g70292352376640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> . -_:g70292352076380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352212600 . -_:g70292352076380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350402820 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple nest aliases" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n010-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352323220 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties mapping to @included are folded together" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292355598580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355647480 . -_:g70292355598580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624752820 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with compound literal with direction and language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di08-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di08-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse compound literal without proper option." . -_:g70292618216600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349849720 . -_:g70292618216600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> . -_:g70292622908920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357911720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357963580 . -_:g70292357911720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te017> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355416320 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index expands to property value, instead of @index (node)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi08-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292352029440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352075660 . -_:g70292352029440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @vocab with with type-coercion" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0033-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0033-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that terms can be defined using @vocab" . -_:g70292358138000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358169280 . -_:g70292358138000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> . -_:g70292352173720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352864660 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid term as relative IRI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er48-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that a relative IRI cannot be used as a term." . -_:g70292625132440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625163680 . -_:g70292625132440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350927760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override unprotected term." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr13-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/2000/01/rdf-schema#comment> "Override unprotected term." . -_:g70292358110320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358168920 . -_:g70292358110320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> . -_:g70292351893560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351931180 . -_:g70292351893560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> . -_:g70292219209200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219241320 . -_:g70292219209200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> . -_:g70292355876260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355910400 . -_:g70292355876260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> . -_:g70292354113040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (relative IRI in @type)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er23-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . -_:g70292357945220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357958680 . -_:g70292357945220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> . -_:g70292351927860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292355514980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625479600 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (with @vocab)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr37-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr37-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -_:g70292622822360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624212140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624351080 . -_:g70292624212140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> . -_:g70292624950200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624982080 . -_:g70292624950200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350228660 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context with array including @set uses array values" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/s002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/s002-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/s002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/2000/01/rdf-schema#comment> "@context values may include @set along with another compatible value" . -_:g70292350583900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350746980 . -_:g70292350583900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> . -_:g70292623118560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623148040 . -_:g70292623118560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "flatten already expanded" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0013-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening an expanded/flattened document maintains input document" . -_:g70292623591040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623642900 . -_:g70292623591040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> . -_:g70292622990880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623088520 . -_:g70292622990880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> . -_:g70292358122040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358136100 . -_:g70292358122040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> . -_:g70292624966180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623920640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624002740 . -_:g70292623920640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> . -_:g70292623693240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623761220 . -_:g70292623693240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> . -_:g70292623055660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "date type-coercion" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand strings to expanded value with @type: xsd:dateTime" . -_:g70292351109400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse property and index container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0063-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0063-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/2000/01/rdf-schema#comment> "Expaning reverse properties with an index-container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350764440 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container may not be @type in 1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep14-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep14-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/2000/01/rdf-schema#comment> "validate appropriate values of @container" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop null and unmapped properties" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that null values and unmapped properties are removed from expanded output" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using terms in a reverse-maps" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e039-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e039-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0039" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350670740 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language mapwith overriding term direction" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -_:g70292349979260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350032040 . -_:g70292349979260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> . -_:g70292350451920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . -_:g70292350451920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> . -_:g70292350983060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351243000 . -_:g70292350983060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618221240 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check legal overriding of protected term from property-scoped context" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pr04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr04-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/2000/01/rdf-schema#comment> "Check overriding a protected term from property-scoped context." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349934720 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with overriding null direction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di06-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid prefix value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @prefix value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er53-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @prefix value" . -_:g70292350374080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351950760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "processingMode json-ld-1.0 conflicts with @version: 1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "processing mode conflict" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/ep02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/2000/01/rdf-schema#comment> "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622333120 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350784280 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @index, @set] container (multiple indexed objects)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0099-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0099-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0099-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -_:g70292351671180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352928320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid local context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid local context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context is not a string or object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623481340 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import can only reference a single context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid remote context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/2000/01/rdf-schema#comment> "@import can only reference a single context." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351721240 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes property value, instead of property (multiple nodes)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi04-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . -_:g70292352286820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352458560 . -_:g70292352286820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> . -_:g70292351027140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351193180 . -_:g70292351027140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> . -_:g70292350386180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353714040 . -_:g70292350386180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> . -_:g70292352421020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292350109400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350212600 . -_:g70292350109400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357860600 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding term mapping to @type uses @type syntax" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e026-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e026-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0026" . -_:g70292624197620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624246920 . -_:g70292624197620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> . -_:g70292357927200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357976240 . -_:g70292357927200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625249220 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er21-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid container mapping is found" . -_:g70292352434720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624201200 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document with link" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0010-in.json> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "If a context is specified in a link header, it is used for JSON." . -_:g70292356059380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356090680 . -_:g70292356059380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> . -_:g70292351255940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351310260 . -_:g70292351255940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using terms in a reverse-maps" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0039-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0039-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms within @reverse are expanded" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624392620 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type must not include a blank node identifier" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid frame" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0053-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0053-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/2000/01/rdf-schema#comment> "Node matching does not consider blank nodes." . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Document with list" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0005-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "Uses a named graph containing a list." . -_:g70292357632900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353145420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353155340 . -_:g70292353145420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353188820 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid subject IRIs are rejected" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf01-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . -_:g70292624836140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355040040 . -_:g70292624836140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623695480 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m019-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -_:g70292355652900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350994820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351556520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618322520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357860080 . -_:g70292618322520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te015> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_ascii_boundaries" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/2000/01/rdf-schema#comment> "literal_ascii_boundaries '\\x00\\x26\\x28...' from N-Triples" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350309660 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear active context of protected terms from a term." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/2000/01/rdf-schema#comment> "The Active context may be set to null from a scoped context of a term." . -_:g70292352550480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352602080 . -_:g70292352550480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te012> . -_:g70292623298440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623331440 . -_:g70292623298440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> . -_:g70292352257880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352288820 . -_:g70292352257880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> . -_:g70292622810540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622939020 . -_:g70292622810540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> . -_:g70292624151500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624184500 . -_:g70292624151500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> . -_:g70292357944740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357944740 <https://w3c.github.io/json-ld-api/tests/vocab#omitGraph> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350144820 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Absolute IRI confused with Compact IRI" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "IRI confused with prefix" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/e002-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/e002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that IRI compaction detects when the result is an absolute IRI with a scheme matching a term." . -_:g70292353304460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353304460 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292625448140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350602960 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nests using alias of @nest (defined with @id)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n011-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -_:g70292622431380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358122260 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: null with compound literal with direction and no language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di03-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse compound literal without proper option." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622394980 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.1, 1.0, 1.1]" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/p004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/p004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . -_:g70292080780160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350813380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350896220 . -_:g70292350813380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624574760 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand @graph container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e093-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e093-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers" . -_:g70292624067680 <https://w3c.github.io/json-ld-api/tests/vocab#httpStatus> "303"^^<http://www.w3.org/2001/XMLSchema#integer> . -_:g70292624067680 <https://w3c.github.io/json-ld-api/tests/vocab#redirectTo> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353766720 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context resolutions respects relative URLs." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c031-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c031-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/2000/01/rdf-schema#comment> "URL resolution follows RFC3986" . -_:g70292622888800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353093020 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe (explicit)" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0005-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0005-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0005-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "If property is not in frame, and explicit is true, do not add any values for property to output." . -_:g70292624706220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (1)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0121-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0121-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -_:g70292352975520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353031220 . -_:g70292352975520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> . -_:g70292355698620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353125380 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Property value with @included" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in05-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292623694280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623694280 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292623694280 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "list with node shared across graphs" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0020-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0020-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "An otherwise conformant list with a node shared across different lists does not serialize using @list" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357808980 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches some @language in value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0044-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0044-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0044-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -_:g70292350534180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350864620 . -_:g70292350534180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> . -_:g70292625393340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625431240 . -_:g70292625393340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350431440 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple @id match" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0033-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0033-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0033-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "Match on a specific node with frame uses @id with an array of IRIs." . -_:g70292349852860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350470320 . -_:g70292349852860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> . -_:g70292622793840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622939700 . -_:g70292622793840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> . -_:g70292352471220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352523460 . -_:g70292352471220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te010> . -_:g70292624099100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624150520 . -_:g70292624099100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> . -_:g70292352108560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352141680 . -_:g70292352108560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352408520 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Two scoped context may include a shared context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0128-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0128-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @id" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "A value of a property with @type: @id coercion expands to a node reference" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622431380 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal aleady in expanded form" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js15-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js15-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal in expanded form." . -_:g70292625689920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625753360 . -_:g70292625689920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> . -_:g70292625705560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625738180 . -_:g70292625705560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> . -_:g70292625530040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625543440 . -_:g70292625530040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> . -_:g70292353029060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353079480 . -_:g70292353029060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623541740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m017-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623606860 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference with @type: @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m018-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern without rdf:nil" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0010-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not convert lists that are not terminated by rdf:nil to @list." . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622230600 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (double)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js03-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (double)." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350197260 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a named graph with a [@graph, @id] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0085-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0085-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0085-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a named graph using a @graph container with @id" . -_:g70292350928160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352468580 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List conversion" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0008-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Conversion of lists of lists (the triples in the input are only partially ordered on purpose (1.0 semantics)" . -_:g70292350978700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351075140 . -_:g70292350978700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> . -_:g70292351110480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618270120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623088520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623186700 . -_:g70292623088520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> . -_:g70292355026600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350225000 . -_:g70292355026600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> . -_:g70292618215760 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . -_:g70292352077380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292354750700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349651920 . -_:g70292354750700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> . -_:g70292618309120 <https://w3c.github.io/json-ld-api/tests/vocab#useNativeTypes> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph and @id aliased" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0017-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding with @graph and @id aliases" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351785040 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object not having an @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m003-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @type" . -_:g70292350784280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349670060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349735940 . -_:g70292349670060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351699260 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context with multiple property scoped terms" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c019-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c019-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with multiple property scoped terms" . -_:g70292349651920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618156780 . -_:g70292349651920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350634260 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context is not allowed in 1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep11-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/2000/01/rdf-schema#comment> "@context is not allowed in a term definitionin 1.0" . -_:g70292351240840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351274160 . -_:g70292351240840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> . -_:g70292624839680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292617608000 . -_:g70292624839680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> . -_:g70292351146300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349770540 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "When type is in a type map" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m007-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Array frame" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0012-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0012-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0012-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple values for @type in frame match different nodes having one or the other type. With @embed false, nodes are serialized as multiple array values of @graph." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round tripping @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0055-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0055-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0055-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting IRI value of property with @type: @vocab can use term" . -_:g70292351598720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357732600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349995620 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with mismatching term direction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di07-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di07-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -_:g70292355073780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355105100 . -_:g70292355073780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> . -_:g70292352866120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351506320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624525660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352928320 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override @vocab defined in sourced context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so09-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . -_:g70292358153220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624661620 . -_:g70292358153220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te022> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_all_punctuation" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/2000/01/rdf-schema#comment> "literal_all_punctuation '!\"#$%&()...' from N-Triples" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Coercing native types to arbitrary datatypes" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0061-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0061-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding native types when coercing to arbitrary datatypes" . -_:g70292349964660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350228780 . -_:g70292349964660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> . -_:g70292350815740 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350815740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355060380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355109480 . -_:g70292355060380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> . -_:g70292351013300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351026060 . -_:g70292351013300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618140980 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check illegal overriding of protected term from type-scoped context" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr03-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/2000/01/rdf-schema#comment> "Check error when overriding a protected term from type-scoped context." . -_:g70292355058460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with extra properties" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0011-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "If additional properties are associated to a list node, the list is only partially converted to @list." . -_:g70292624638080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352501220 . -_:g70292624638080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> . -_:g70292356223860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351911840 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check legal overriding of type-scoped protected term from nested node." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr22-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr22-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/2000/01/rdf-schema#comment> "Check legal overriding of type-scoped protected term from nested node." . -_:g70292624560600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624611620 . -_:g70292624560600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> . -_:g70292219406960 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292622498920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622511780 . -_:g70292622498920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622316640 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with wierd canonicalization" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js13-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with wierd canonicalization." . -_:g70292624676680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624851120 . -_:g70292624676680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> . -_:g70292352523460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352550480 . -_:g70292352523460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te011> . -_:g70292618305000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350864920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622917700 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language map with null value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/l001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/l001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/2000/01/rdf-schema#comment> "A language map may have a null value, which is ignored" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350697780 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type maps use scoped context from type index and not scoped context from containing" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c013-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623377940 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0084-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0084-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292352274040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352372920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352402540 . -_:g70292352372920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> . -_:g70292219247740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219247740 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292352631620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618342520 . -_:g70292352631620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> . -_:g70292352340820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622301440 . -_:g70292352340820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> . -_:g70292622448260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622461380 . -_:g70292622448260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> . -_:g70292351490180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351602700 . -_:g70292351490180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> . -_:g70292352796380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624429080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624495500 . -_:g70292624429080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352796380 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition with @id: @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er43-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding term mapping to @type uses @type syntax now illegal" . -_:g70292356239220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624918800 . -_:g70292356239220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> . -_:g70292353239600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353271480 . -_:g70292353239600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351949000 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds @id to object not having an @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m001-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351437260 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container (indexes with multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0107-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0107-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . -_:g70292624752820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624752820 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624752820 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . -_:g70292624657800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624710020 . -_:g70292624657800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> . -_:g70292349883500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350076500 . -_:g70292349883500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> . -_:g70292358174340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358188060 . -_:g70292358174340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> . -_:g70292350192760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624803960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624842260 . -_:g70292624803960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> . -_:g70292624573140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352584180 . -_:g70292624573140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> . -_:g70292219391360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219444920 . -_:g70292219391360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219215560 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with value canonicalization" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js12-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with value canonicalization." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object (unexpected keyword)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er37-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object is found" . -_:g70292350158260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350455240 . -_:g70292350158260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351386960 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compactArrays option" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0044-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/flatten/0044-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0044-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting compactArrays to false causes single element arrays to be retained" . -_:g70292352159000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618340760 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if end comment missing" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e015-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with unballanced comments" . -_:g70292219558800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219591360 . -_:g70292219558800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> . -_:g70292358205100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624740260 . -_:g70292358205100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> . -_:g70292351619440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351979060 . -_:g70292351619440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> . -_:g70292355421860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355456320 . -_:g70292355421860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> . -_:g70292350618200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350669780 . -_:g70292350618200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> . -_:g70292350228780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350505540 . -_:g70292350228780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> . -_:g70292350618080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350698260 . -_:g70292350618080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple named graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0028-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0028-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> "Signing a graph." . -_:g70292623575200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623691460 . -_:g70292623575200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> . -_:g70292358090860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623629300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623629300 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292623629300 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . -_:g70292219526260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219558800 . -_:g70292219526260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352042120 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some terms with @, allow others." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0119-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0119-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "remove @value = null" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0019-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening a value of null removes the value" . -_:g70292350900860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Complex round tripping @type: @vocab and @type: @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0057-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0057-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0057-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting IRI value of property with @type: @vocab can use term; more complex" . -_:g70292350901340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350978700 . -_:g70292350901340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355894660 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected term." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected term." . -_:g70292351206340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353242760 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "array framing cases" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0008-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0008-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0008-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Various cases showing array output for @container: @set, and non-embedding of node values if @embed: false." . -_:g70292357876440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357927200 . -_:g70292357876440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> . -_:g70292351195820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351225700 . -_:g70292351195820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351206340 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (integer)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js05-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (integer)." . -_:g70292352553720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352567080 . -_:g70292352553720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349862780 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattens targeted JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/f003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/f003-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/f003-in.html#second> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . -_:g70292349764420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351164360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351173520 . -_:g70292351164360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> . -_:g70292624351020 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la01-alternate.jsonld>; rel=\"alternate\"; type=\"application/ld+json\"" . -_:g70292350995420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351160720 . -_:g70292350995420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351556860 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes property value, instead of property (node)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi03-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351685260 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a value object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292351521220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351570640 . -_:g70292351521220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353778780 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing multiple lists" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li09-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292353257420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353290020 . -_:g70292353257420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> . -_:g70292350212600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350409300 . -_:g70292350212600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expansion of keyword aliases in term definitions" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0051-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0051-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding terms which are keyword aliases" . -_:g70292351524180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350683200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacting IRI equivalent to base" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0076-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0076-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0076-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting IRI equivalent to base, uses last path segment of base ending in '/'" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph at top-level if not only property" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0021-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0021-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used at the top level is retained if there are other properties" . -_:g70292351982300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350124320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_2_squotes" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with 2 squotes \"x''y\" from N-Triples" . -_:g70292349737460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351025800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351080780 . -_:g70292351025800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> . -_:g70292624509000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624509000 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624509000 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292351278480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357554060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357554060 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350388720 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none does not use arrays by default" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/tn02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/tn02-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/tn02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none honors @container." . -_:g70292623038200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse properties with blank nodes" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0067-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0067-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0067-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact reverse property whose values are unlabeled blank nodes" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350552720 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@prefix not allowed on compact IRI term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep09-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/2000/01/rdf-schema#comment> "If processingMode is json-ld-1.0, or if term contains a colon (:), an invalid term definition has been detected and processing is aborted." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351598720 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c016-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c016-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351586120 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an deep list" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/li03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li03-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/li03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of Lists" . -_:g70292352336880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622577780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622760020 . -_:g70292622577780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357712460 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map with alias @none" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m014-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622920820 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @index is a keyword for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292357666380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357782620 . -_:g70292357666380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Null term and @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0032-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0032-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Mapping a term to null decouples it from @vocab" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623842220 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge one graph and preserve another" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0048-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0048-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0048-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used within a property value frames embedded values from a named graph." . -_:g70292349786920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350125800 . -_:g70292349786920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> . -_:g70292349786460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624425640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624480820 . -_:g70292624425640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355832160 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Attempt to redefine term in other protected context." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected term cannot redefine another protected term." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355875640 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Recursive property embed w/o circular reference" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g009-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g009-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g009-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . -_:g70292625132580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625145960 . -_:g70292625132580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> . -_:g70292350751580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350913320 . -_:g70292350751580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> . -_:g70292622706680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624345680 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Tests 'a' generates rdf:type and object is implicit IRI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0007-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that 'a' is an alias for rdf:type, and the object is created as an IRI." . -_:g70292351112320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351900620 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "does not allow @nest with @reverse" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -_:g70292349633640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349716640 . -_:g70292349633640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> . -_:g70292622530840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622647020 . -_:g70292622530840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> . -_:g70292625163680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625195140 . -_:g70292625163680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> . -_:g70292355357820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292622383920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622511720 . -_:g70292622383920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> . -_:g70292625266880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356075040 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override protected terms after null." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr16-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr16-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/2000/01/rdf-schema#comment> "Override protected terms after null." . -_:g70292351949000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351944100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351435640 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "json.api example" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292623986660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624050240 . -_:g70292623986660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> . -_:g70292623284900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624842260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624855940 . -_:g70292624842260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> . -_:g70292623708380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623776360 . -_:g70292623708380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623055660 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292623364700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623409760 . -_:g70292623364700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353364260 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine terms looking like compact IRIs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er44-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/2000/01/rdf-schema#comment> "Term definitions may look like compact IRIs, but must be consistent." . -_:g70292352850600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352860200 . -_:g70292352850600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> . -_:g70292349944780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355028000 . -_:g70292349944780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid term definition is found" . -_:g70292353192880 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351622620 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped types resolved against previous context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c018-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped types resolved against previous context" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350337180 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (integer)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js05-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (integer)." . -_:g70292623481820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622842500 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped base" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c015-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped base" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Native Types" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0002-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not use native datatypes for xsd:boolean, xsd:integer, and xsd:double by default." . -_:g70292622329980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622429240 . -_:g70292622329980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292080796860 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (integer)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js05-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (integer)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "native types" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e010-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/2000/01/rdf-schema#comment> "Native types generate typed literals (from expand-0010)" . -_:g70292350995540 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350995540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350288560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350470420 . -_:g70292350288560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355531540 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple embed" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g002-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g002-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g002-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . -_:g70292351649980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_REVERSE_SOLIDUS" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt15-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with REVERSE SOLIDUS from N-Triples" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354388980 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattens embedded JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/f001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/f001-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/f001-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357944740 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frame matching with no matching value in list" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0058-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0058-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0058-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists match on any matching value." . -_:g70292355355480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355404720 . -_:g70292355355480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> . -_:g70292622906600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625280800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625294540 . -_:g70292625280800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623756420 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map must not be a literal" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -_:g70292349868560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353007660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353042040 . -_:g70292353007660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> . -_:g70292219375660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219375660 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292624952060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624989640 . -_:g70292624952060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> . -_:g70292349715240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349852500 . -_:g70292349715240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> . -_:g70292624003180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624068140 . -_:g70292624003180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355777360 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multi-level simple embeds" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g007-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g007-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g007-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . -_:g70292352188980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352287660 . -_:g70292352188980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> . -_:g70292357566020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357668000 . -_:g70292357566020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355767920 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base without trailing slash, without path" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e129-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e129-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986" . -_:g70292358029080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358110320 . -_:g70292358029080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> . -_:g70292349666560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355158180 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container (multiple ids and objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e108-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e108-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_CARRIAGE_RETURN" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with CARRIAGE RETURN from N-Triples" . -_:g70292625067900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625081280 . -_:g70292625067900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352631560 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c001-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -_:g70292622608700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622663040 . -_:g70292622608700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> . -_:g70292350375980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350375980 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292623086580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623236160 . -_:g70292623086580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> . -_:g70292352127760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350867500 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context nullification" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c014-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context nullification" . -_:g70292618310120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352663740 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if uncommented script text contains comment" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e014-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with comments leftover" . -_:g70292080717460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292080749980 . -_:g70292080717460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not expand aliased @id/@type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "If a keyword is aliased, it is not used when expanding" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351375340 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact already expanded JSON literal with aliased keys" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js09-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js09-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting JSON literal in expanded form." . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352506740 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element with HTML character references" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e010-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with character references" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "date type-coercion" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand strings to expanded value with @type: xsd:dateTime" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622806580 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a non-keyword term starting with '@'" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr34-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr34-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "best matching term for lists" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0018-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0018-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists with values of different types use best term in compacted document" . -_:g70292623331440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623364640 . -_:g70292623331440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @type: @vocab if no @type: @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0053-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0053-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0053-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact to @type: @vocab when no @type: @id term available" . -_:g70292625235160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625267000 . -_:g70292625235160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0002-in.json> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Document loader loads a JSON document." . -_:g70292623152140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623186220 . -_:g70292623152140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350475740 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container (multiple indexed objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0096-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0096-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . -_:g70292351097340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351177800 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c002-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . -_:g70292624988260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625037820 . -_:g70292624988260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> . -_:g70292354891920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349623220 . -_:g70292354891920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> . -_:g70292623035800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623035800 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292352308280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352402820 . -_:g70292352308280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> . -_:g70292357651300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mapped @id and @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0073-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0073-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0073-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that compaction works with mapped @id and @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "non-matching @container: @index" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0030-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0030-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0030-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/2000/01/rdf-schema#comment> "Preserve @index tags if not compacted to an index map" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test list coercion with single element" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0025-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0025-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that an array with a single element on a property with @list coercion creates an RDF Collection." . -_:g70292351291000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351321220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351786380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351795500 . -_:g70292351786380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> . -_:g70292622460620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622524680 . -_:g70292622460620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> . -_:g70292349945700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349978120 . -_:g70292349945700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> . -_:g70292351503640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351604580 . -_:g70292351503640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> . -_:g70292349699220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350817980 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @id] container (multiple indexed objects)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0100-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0100-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0100-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350667180 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands input using aliased @nest" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618270680 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A relative IRI cannot be used as a prefix" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er49-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that a relative IRI cannot be used as a term." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er29-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object value is found" . -_:g70292351944260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351981780 . -_:g70292351944260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> . -_:g70292625329080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351950500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352191160 . -_:g70292351950500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> . -_:g70292350046200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352864660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352244400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622760020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622918840 . -_:g70292622760020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> . -_:g70292624366740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624395060 . -_:g70292624366740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> . -_:g70292623296760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623247140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623278200 . -_:g70292623247140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> . -_:g70292358026740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358119500 . -_:g70292358026740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624099460 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Load JSON-LD through 307 redirect" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a document with a redirect should use the redirected URL as document base" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625448140 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr36-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr36-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623249200 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remote scoped context." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c034-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c034-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/2000/01/rdf-schema#comment> "Scoped contexts may be externally loaded." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624345680 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "relative @base overrides base option and document location" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e090-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e090-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of a relative @base overrides base option and document location" . -_:g70292219508080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219508080 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with terms" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e009-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0009" . -_:g70292219281340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219290720 . -_:g70292219281340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292080780160 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed true/false" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0011-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0011-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0011-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "@embed within a frame controls the object embed flag when processing that frame (true and false values) in json-ld-1.0 mode." . -_:g70292356090680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356121420 . -_:g70292356090680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> . -_:g70292623135820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623204120 . -_:g70292623135820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> . -_:g70292358022720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358022720 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . -_:g70292358022720 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292358172900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623315540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623344860 . -_:g70292623315540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> . -_:g70292623952980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623986320 . -_:g70292623952980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> . -_:g70292623772000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623835760 . -_:g70292623772000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> . -_:g70292353042040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353076500 . -_:g70292353042040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351976580 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Conflicting indexes" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "conflicting indexes" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/e001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Flattening when conflicting indexes are found" . -_:g70292352130660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352188980 . -_:g70292352130660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> . -_:g70292355760900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355816540 . -_:g70292355760900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> . -_:g70292624394980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219508080 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with @context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js21-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js21-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with a @context." . -_:g70292624982080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625037960 . -_:g70292624982080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> . -_:g70292624590880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352502900 . -_:g70292624590880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> . -_:g70292350159460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350288560 . -_:g70292350159460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop free-floating nodes" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening drops unreferenced nodes having only @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "basic" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e002-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic RDF conversion (from expand-0002)" . -_:g70292625069800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625100780 . -_:g70292625069800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> . -_:g70292357585640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219339220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219396020 . -_:g70292219339220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid keyword alias (@context)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid keyword alias" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er19-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid keyword alias is found" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using strings as value of a reverse property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e049-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e049-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0049" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "index rejects term having @list" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0041-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0041-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0041-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/2000/01/rdf-schema#comment> "If an index is present, a term having an @list container is not selected" . -_:g70292351144180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355275640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622237120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350044800 . -_:g70292622237120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> . -_:g70292622333060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622377680 . -_:g70292622333060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> . -_:g70292624261180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352534000 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e095-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e095-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/2000/01/rdf-schema#comment> "Don't double-expand an already expanded graph" . -_:g70292623035880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355549420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355598580 . -_:g70292355549420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> . -_:g70292624412780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624443280 . -_:g70292624412780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te002> . -_:g70292355158180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355729600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355760900 . -_:g70292355729600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622265540 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + graph container" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c025-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c025-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + graph container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Duplicate values in @list and @set" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0027-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0027-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Duplicate values in @list and @set are not merged" . -_:g70292623397760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623431280 . -_:g70292623397760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> . -_:g70292624278800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624311120 . -_:g70292624278800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> . -_:g70292350605240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350605240 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292350295380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624855020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624855020 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624855020 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350534720 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep property-term scoped @context in @type-scoped @context affects nested nodes" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c012-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292357974480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357974480 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292355322800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618219960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354598680 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Arrays of nested values" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n004-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties expanding to the same IRI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e034-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e034-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0034" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351287940 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (null)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js11-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js11-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (null)." . -_:g70292624840220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624891600 . -_:g70292624840220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> . -_:g70292624261500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624313900 . -_:g70292624261500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355993140 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a value object value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -_:g70292624589040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352470060 . -_:g70292624589040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622858260 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @container does not include @index for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes with reverse properties" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0119-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0119-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/2000/01/rdf-schema#comment> "Proper (re-)labeling of blank nodes if used with reverse properties." . -_:g70292622297660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624069840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624135140 . -_:g70292624069840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> . -_:g70292351324520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355309380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355319240 . -_:g70292355309380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> . -_:g70292355531540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351899080 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (boolean false)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (boolean false)." . -_:g70292622333780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623495220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623580060 . -_:g70292623495220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> . -_:g70292352942780 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618305000 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with @vocab: ''" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e092-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e092-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . -_:g70292622394980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624524560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624562500 . -_:g70292624524560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> . -_:g70292351026540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351026540 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292351026540 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292623286020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623315540 . -_:g70292623286020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623347380 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term scoping with embedded contexts." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c035-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c035-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms should make use of @vocab relative to the scope in which the term was defined." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350523760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with term direction" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -_:g70292622644480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349930840 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@index map with @none node definition" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m008-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @index" . -_:g70292351258440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351474260 . -_:g70292351258440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> . -_:g70292623154760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623185160 . -_:g70292623154760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623411420 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0085-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0085-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . -_:g70292352259540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352288920 . -_:g70292352259540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> . -_:g70292350291680 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350291680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351211500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350881080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350910880 . -_:g70292350881080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> . -_:g70292350222800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350408400 . -_:g70292350222800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> . -_:g70292350982120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351013300 . -_:g70292350982120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351522840 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container (multiple ids and objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0108-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0108-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351354920 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias of @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c008-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language map term selection with complications" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0089-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0089-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0089-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/2000/01/rdf-schema#comment> "Test appropriate property use given language maps with @vocab, a default language, no language, and competing terms" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624509000 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands all embedded JSON-LD script elements with extractAllScripts option" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e004-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351798040 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object already having an @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m004-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @type" . -_:g70292624673680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624673680 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624673680 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . -_:g70292358139320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358139320 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . -_:g70292358139320 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292351177800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356061780 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "does not allow @nest with @reverse" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357793300 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language mapwith overriding null direction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di06-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -_:g70292350488260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618252700 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term selection with lists and direction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di03-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection includes values of @list." . -_:g70292350607200 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350607200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remove free-floating set values and lists" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e047-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e047-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0047" . -_:g70292351193320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351260820 . -_:g70292351193320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> . -_:g70292353419660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622409840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622646240 . -_:g70292622409840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop null and unmapped properties" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e003-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/2000/01/rdf-schema#comment> "Properties mapped to null or which are never mapped are dropped (from expand-0003)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_FORM_FEED" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt14-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with FORM FEED from N-Triples" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language-tagged value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language-tagged value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er39-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language-tagged value is found" . -_:g70292350026440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623082220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623232640 . -_:g70292623082220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> . -_:g70292361745660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355565920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353308260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with type rdf:List" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0016-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0016-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "List nodes may have a rdf:type rdf:List." . -_:g70292618250220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349964660 . -_:g70292618250220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> . -_:g70292622562080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622575260 . -_:g70292622562080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> . -_:g70292355369400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355400800 . -_:g70292355369400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> . -_:g70292356191020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356240420 . -_:g70292356191020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> . -_:g70292624016120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624069520 . -_:g70292624016120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356173180 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes in @type (prune bnodes)" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/p021-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/2000/01/rdf-schema#comment> "Empty frame matches all nodes at top-level, and repeats where embedded (with list content)." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@value with @language" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Keep expanded values with @language, drop non-conforming value objects containing just @language" . -_:g70292622395640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622577780 . -_:g70292622395640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> . -_:g70292623427320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355580380 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Embed with direct circular reference" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g003-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g003-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g003-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624970340 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prune blank nodes with alias of @id" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/p050-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/p050-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/p050-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/2000/01/rdf-schema#comment> "If @id is aliased in a frame, an unreferenced blank node is still pruned." . -_:g70292352240660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350849160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350849160 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292622625420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622662600 . -_:g70292622625420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351700740 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object not having an @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m001-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @id" . -_:g70292624891600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354702360 . -_:g70292624891600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> . -_:g70292623901760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623939900 . -_:g70292623901760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> . -_:g70292356170700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356204840 . -_:g70292356170700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> . -_:g70292351979060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352042260 . -_:g70292351979060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292080730980 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property CURIE conflict" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0010-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0010-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0010-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "(Not really framing) A term looking like a CURIE becomes a CURIE when framing/compacting if defined as such in frame/context in json-ld-1.0." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context properties reordering" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0034-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0034-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that generated triples do not depend on order of properties inside @context." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (7)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0127-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0127-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -_:g70292623002060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292350403600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350572900 . -_:g70292350403600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> . -_:g70292622663040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622693500 . -_:g70292622663040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351506320 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/li01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/li01-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292623973780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623973780 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not expand aliased @id/@type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e005-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0005" . -_:g70292625333140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622708720 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails if trying to declare a keyword alias as prefix." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr33-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/2000/01/rdf-schema#comment> "Keyword aliases can not be used as prefixes." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622902140 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped contexts are properly reverted" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c017-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped contexts are property reverted" . -_:g70292353271480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353302820 . -_:g70292353271480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> . -_:g70292356175140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292355981240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357742980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357815260 . -_:g70292357742980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354091140 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check illegal clearing of context with protected terms" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr01-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/2000/01/rdf-schema#comment> "Check error when clearing a context with protected terms." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test coercion of integer value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0023-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0023-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a decimal value generates a xsd:integer typed literal." . -_:g70292358007480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358105580 . -_:g70292358007480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @vocab to expand keys in reverse-maps" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e066-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e066-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0066" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property map" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property map" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er25-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a invalid reverse property map is found" . -_:g70292625621900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352700940 . -_:g70292625621900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> . -_:g70292350430040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624771220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624874960 . -_:g70292624771220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> . -_:g70292219228100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219281340 . -_:g70292219228100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> . -_:g70292355400800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355456480 . -_:g70292355400800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352014220 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (double-zero)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (double-zero)." . -_:g70292352991340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352929120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352979320 . -_:g70292352929120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> . -_:g70292352157400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349804300 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remote scoped context." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c034-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c034-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/2000/01/rdf-schema#comment> "Scoped contexts may be externally loaded." . -_:g70292219493680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219526260 . -_:g70292219493680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> . -_:g70292350489760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350568620 . -_:g70292350489760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> . -_:g70292219571860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622838040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622907960 . -_:g70292622838040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> . -_:g70292355975200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624644200 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands as empty with no embedded JSON-LD script elements and extractAllScripts" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e007-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML when none exist extracting all elements" . -_:g70292355178240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355191940 . -_:g70292355178240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> . -_:g70292350963360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351130640 . -_:g70292350963360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> . -_:g70292350896220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350978600 . -_:g70292350896220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> . -_:g70292349849720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622237480 . -_:g70292349849720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351898900 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Verifies that relative IRIs as properties with @vocab: '' in 1.0 generate an error" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0115-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative property IRIs with relative @vocab in 1.0" . -_:g70292623005660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623036340 . -_:g70292623005660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> . -_:g70292352212920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351130740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351164360 . -_:g70292351130740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> . -_:g70292351732480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "basic" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding terms with different types of values" . -_:g70292349817920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349879560 . -_:g70292349817920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> . -_:g70292351409700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352437480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622286300 . -_:g70292352437480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622530500 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292350245660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622872500 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c016-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350636820 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with [@graph, @set] container to output without [@graph, @set] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0094-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0094-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0094-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -_:g70292622938400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622951260 . -_:g70292622938400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> . -_:g70292351080780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351111160 . -_:g70292351080780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350060840 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n008-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -_:g70292351550480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351605380 . -_:g70292351550480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> . -_:g70292350534000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350567700 . -_:g70292350534000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> . -_:g70292349998160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355026600 . -_:g70292349998160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> . -_:g70292623381820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357566020 . -_:g70292623381820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> . -_:g70292350947880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350737240 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350737240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623070480 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value mix" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c021-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c021-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value mix" . -_:g70292624736980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624788460 . -_:g70292624736980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> . -_:g70292350688980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350748100 . -_:g70292350688980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> . -_:g70292350288100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350322360 . -_:g70292350288100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> . -_:g70292622920820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350607200 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest is not allowed in 1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep10-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/2000/01/rdf-schema#comment> "@nest is not allowed in a term definitionin 1.0" . -_:g70292349917000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349983500 . -_:g70292349917000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292617914380 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with compound literal with direction and no language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di11-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di11-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/2000/01/rdf-schema#comment> "Parses compound literal with proper option." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349606640 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check illegal overriding of protected term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr02-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/2000/01/rdf-schema#comment> "Check error when overriding a protected term." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @id that is a property IRI when @container is @list" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0020-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0020-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "A term with @container: @list is also used as the value of an @id, if appropriate" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352209020 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid remote context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid remote context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a remote context is not an object containing @context" . -_:g70292352077260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356209300 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A context may not include itself recursively (indirect)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "recursive context inclusion" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing a context referencing itself indirectly" . -_:g70292625574440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219573180 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (empty array)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js23-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js23-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (empty array)." . -_:g70292624589760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624628000 . -_:g70292624589760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> . -_:g70292219127820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219176700 . -_:g70292219127820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> . -_:g70292625267000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625280800 . -_:g70292625267000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mapping a term to null decouples it from @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e032-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e032-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0032" . -_:g70292358105580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358205100 . -_:g70292358105580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> . -_:g70292219556180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219608820 . -_:g70292219556180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> . -_:g70292357777300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (6)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0126-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0126-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622297660 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches exact value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0036-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0036-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0036-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -_:g70292352618480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "prefix:://sufffix not a compact IRI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e067-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e067-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0067" . -_:g70292351550880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351649600 . -_:g70292351550880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> . -_:g70292351160200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351555420 . -_:g70292351160200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> . -_:g70292350408400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350603680 . -_:g70292350408400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> . -_:g70292350289280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350534920 . -_:g70292350289280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> . -_:g70292355505060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623249200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623345000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622693500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622722740 . -_:g70292622693500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> . -_:g70292350667300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351718360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350430560 . -_:g70292351718360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623100440 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c022-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c022-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "CompoundLiteral" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623759900 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with direction and language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di12-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/2000/01/rdf-schema#comment> "Generates compound literal from literal with direction with option." . -_:g70292624051220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624082980 . -_:g70292624051220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> . -_:g70292350697780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351631740 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds expanded @id to object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "optimize @set, keep empty arrays" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e004-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0004" . -_:g70292352419340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622395640 . -_:g70292352419340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> . -_:g70292624690020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624703720 . -_:g70292624690020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> . -_:g70292351359160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351556860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph if not at top-level" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0020-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used under a node is retained" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property (invalid @container)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er17-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid reverse property is found" . -_:g70292355847600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355879040 . -_:g70292355847600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618325040 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frame matching on any matching value in list" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0057-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0057-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0057-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists match on any matching value." . -_:g70292355797980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355832100 . -_:g70292355797980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> . -_:g70292351698340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352126620 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Retains @id in object already having an @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m002-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . -_:g70292352178900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352191880 . -_:g70292352178900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> . -_:g70292623311840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351337980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351390920 . -_:g70292351337980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352991340 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override protected terms in sourced context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so11-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . -_:g70292623002120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623167040 . -_:g70292623002120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> . -_:g70292355401780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351844940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351913840 . -_:g70292351844940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> . -_:g70292618171560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "top-level graph with string subject reference" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0030-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0030-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests graphs containing subject references as strings." . -_:g70292357663520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357711240 . -_:g70292357663520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> . -_:g70292625659420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352698960 . -_:g70292625659420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> . -_:g70292625016740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625054520 . -_:g70292625016740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> . -_:g70292358060800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358106820 . -_:g70292358060800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te020> . -_:g70292357956540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350852980 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type map using @none with alias" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m015-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m015-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -_:g70292623938220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624004460 . -_:g70292623938220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> . -_:g70292351799820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352127680 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A context may not include itself recursively (indirect)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "recursive context inclusion" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing a context referencing itself indirectly" . -_:g70292349650920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618216600 . -_:g70292349650920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> . -_:g70292623596440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292623596440 <https://w3c.github.io/json-ld-api/tests/vocab#produceGeneralizedRdf> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353736640 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + property-scoped + values evaluates against previous context" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c024-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c024-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c024-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + property-scoped + values evaluates against previous context" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353043020 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe (type)" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0004-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0004-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0004-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple matches on @type." . -_:g70292624742640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292355453600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355499920 . -_:g70292355453600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> . -_:g70292355257460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355306060 . -_:g70292355257460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> . -_:g70292352048080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352130660 . -_:g70292352048080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with cycles" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0012-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0012-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Detect lists containing cycles and do not convert them to @list." . -_:g70292352278160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352342400 . -_:g70292352278160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> . -_:g70292624574760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350978600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351081540 . -_:g70292350978600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355190160 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @default in @type." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0064-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0064-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0064-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/2000/01/rdf-schema#comment> "@type may have a default value." . -_:g70292352391880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352404440 . -_:g70292352391880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias keywords" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e006-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0006" . -_:g70292623347380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624661620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624707580 . -_:g70292624661620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623296760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c027-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c027-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects" . -_:g70292622791800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358119500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358186360 . -_:g70292358119500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> . -_:g70292624232380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624261500 . -_:g70292624232380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> . -_:g70292355306980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355337920 . -_:g70292355306980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219247740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with wierd canonicalization" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js13-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with wierd canonicalization." . -_:g70292624478960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618299400 . -_:g70292624478960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> . -_:g70292624989640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625003020 . -_:g70292624989640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> . -_:g70292355664400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350536660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350566480 . -_:g70292350536660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352942780 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe w/extra CURIE value." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0002-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0002-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0002-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Append extra values to output." . -_:g70292356043660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624920800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350684520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292354051580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352126620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid base IRI" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid base IRI" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @base" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "triple with rdf:first property and rdf:nil value" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0026-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0026-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Check list generation with rdf:first property and rdf:nil value." . -_:g70292350432480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351882880 . -_:g70292350432480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> . -_:g70292350245380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350288100 . -_:g70292350245380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624394980 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple keys may mapping to @type when nesting" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n008-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -_:g70292622462240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623016020 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c020-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @vocab in properties and @type but not in @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0028-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0028-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> "@vocab is used to compact properties and @type, but is not used for @id" . -_:g70292350095900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622397940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622410820 . -_:g70292622397940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> . -_:g70292624084240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624167280 . -_:g70292624084240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> . -_:g70292622836660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622892740 . -_:g70292622836660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> . -_:g70292351769480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "list from duplicate triples" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0022-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0022-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Duplicate triples for a list node will not prevent @list from being properly generated" . -_:g70292349623220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292617856560 . -_:g70292349623220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> . -_:g70292351485360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351518540 . -_:g70292351485360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349753780 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @list" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n005-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -_:g70292351765580 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351359160 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes property value, instead of property (value)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi01-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . -_:g70292351091780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350750580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349651180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349698500 . -_:g70292349651180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact keys in reverse-maps" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0032-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0032-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0032-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact traverses through @reverse" . -_:g70292350588920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623154400 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Unused context with an embedded context error." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid scoped context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c033-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/2000/01/rdf-schema#comment> "An unused context with an embedded context should still be checked." . -_:g70292350654320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352012640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351176500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding list/set with coercion" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0023-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0023-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding lists and sets with properties having coercion coerces list/set values" . -_:g70292622233420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349623000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349651180 . -_:g70292349623000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> . -_:g70292623411060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292617840720 . -_:g70292623411060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> . -_:g70292350228660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352354500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622279460 . -_:g70292352354500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> . -_:g70292352225980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352257880 . -_:g70292352225980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> . -_:g70292622708720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355013660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349852860 . -_:g70292355013660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355241200 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e111-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e111-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . -_:g70292354702360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349737660 . -_:g70292354702360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> . -_:g70292625509960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er28-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid type value is found" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622400140 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c026-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c026-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects" . -_:g70292080731840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292080731840 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351225740 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Appends nested values when property at base and nested" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -_:g70292353129340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353178680 . -_:g70292353129340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624804300 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with i18n literal with direction and no language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di09-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di09-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse i18n datatype without proper option." . -_:g70292352343080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352372920 . -_:g70292352343080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> . -_:g70292624132980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624197620 . -_:g70292624132980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623741020 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @set] container" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e080-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e080-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of [@graph, @set] containers" . -_:g70292351716780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350432480 . -_:g70292351716780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622562480 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er21-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid container mapping is found" . -_:g70292625119180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625132580 . -_:g70292625119180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623038200 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id index map with aliased @none" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m016-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id with @none" . -_:g70292353125380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350864620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351209320 . -_:g70292350864620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624738000 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacts first embedded JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/c002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/c002-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/c002-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -_:g70292622377680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622447960 . -_:g70292622377680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> . -_:g70292617914380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292617914380 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292617914380 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623427320 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand string using default and term directions" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di01-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Strings are coerced to have @direction based on default and term direction." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353161300 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none expands strings as value objects" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/tn02-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/tn02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none leaves inputs other than strings alone" . -_:g70292624283780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624347720 . -_:g70292624283780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> . -_:g70292351768960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350429900 . -_:g70292351768960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> . -_:g70292622985940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625444620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625458000 . -_:g70292625444620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351245520 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph (mixed graph and object)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0104-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0104-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/2000/01/rdf-schema#comment> "Double-expand an already expanded graph" . -_:g70292351452840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351486160 . -_:g70292351452840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> . -_:g70292351768560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350441520 . -_:g70292351768560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> . -_:g70292352468580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292623344860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623395280 . -_:g70292623344860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> . -_:g70292623529440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624311120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624366740 . -_:g70292624311120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> . -_:g70292624495500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624543480 . -_:g70292624495500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358090860 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: null with i18n literal with direction and language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di02-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse i18n datatype without proper option." . -_:g70292622395120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622395120 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624167960 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON-LD document with link" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "If a context is specified in a link header, it is not used for JSON-LD." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context with JavaScript Object property names" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e113-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e113-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand with context including JavaScript Object property names" . -_:g70292355745920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355794840 . -_:g70292355745920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219410400 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (null)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js18-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js18-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (null)." . -_:g70292622434080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622530840 . -_:g70292622434080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> . -_:g70292623843220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623874920 . -_:g70292623843220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> . -_:g70292355499920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355549420 . -_:g70292355499920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> . -_:g70292351245120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351304020 . -_:g70292351245120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> . -_:g70292622892740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622924320 . -_:g70292622892740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> . -_:g70292624443280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624498560 . -_:g70292624443280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te003> . -_:g70292622476240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351435640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350110840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350339080 . -_:g70292350110840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> . -_:g70292352486280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352571300 . -_:g70292352486280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> . -_:g70292355914840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624115120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624154220 . -_:g70292624115120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> . -_:g70292352767700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352767700 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292624609080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352471220 . -_:g70292624609080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te007> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357619600 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import overflow" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors must detect source contexts that include @import." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625329080 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails if trying to declare a keyword alias as prefix." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr33-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/2000/01/rdf-schema#comment> "Keyword aliases can not be used as prefixes." . -_:g70292355416320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-coercion of native types" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e031-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e031-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0031" . -_:g70292624938680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624952060 . -_:g70292624938680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> . -_:g70292355794840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355844540 . -_:g70292355794840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Graph with multiple named graphs" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0007-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Testing @graph recursion." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test coercion of boolean value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0024-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0024-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a decimal value generates a xsd:boolean typed literal." . -_:g70292624428780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624478960 . -_:g70292624428780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624002900 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "loading an unknown type raises loading document failed" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0004-in.jldte> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a document with a non-JSON mime type raises loading document failed" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351278480 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c005-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355205300 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @container does not include @index for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid default language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid default language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @language" . -_:g70292351015920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351245660 . -_:g70292351015920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> . -_:g70292357665260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357728860 . -_:g70292357665260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> . -_:g70292350539360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350752700 . -_:g70292350539360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349799220 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing mixed list values" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li10-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351178660 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @graph container if value is a graph (multiple graphs)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0103-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0103-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/2000/01/rdf-schema#comment> "Creates a new graph object if indexed value is already a graph object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355777900 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base without trailing slash, with path" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e130-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e130-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986" . -_:g70292622774140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622805860 . -_:g70292622774140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> . -_:g70292355319240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355353320 . -_:g70292355319240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356137000 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected terms with type+null+ctx." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr18-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected terms with type+null+ctx." . -_:g70292352406800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @reverse value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @reverse value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er33-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @reverse value is found" . -_:g70292219274000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219306540 . -_:g70292219274000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> . -_:g70292357842860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625333140 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List of lists (from array)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "list of lists" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er24-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a list of lists is found" . -_:g70292355089240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_numeric_escape4" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt16-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with numeric escape4 \\u from N-Triples" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618312020 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index, @set] container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e097-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e097-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index and @set" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622744780 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds document expanded @type to object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m007-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357797840 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id index map with aliased @none" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m015-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id with @none" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624261180 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id must not include a blank node identifier" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid frame" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0052-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0052-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/2000/01/rdf-schema#comment> "Node matching does not consider blank nodes." . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358185240 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands targeted JSON-LD script element with fragment and HTML base" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e022-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e022-in.html#second> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . -_:g70292357728860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357794720 . -_:g70292357728860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350850560 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Scoped context fail to override protected term." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/2000/01/rdf-schema#comment> "Scoped context fail to override protected term." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618134960 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias of @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c008-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292350540220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350540220 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292622297040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622352020 . -_:g70292622297040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "override default @language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e018-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0018" . -_:g70292351370160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351425120 . -_:g70292351370160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> . -_:g70292622286300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622266800 . -_:g70292622286300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> . -_:g70292622412800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622444060 . -_:g70292622412800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context with JavaScript Object property names" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0113-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0113-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand with context including JavaScript Object property names" . -_:g70292351375340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351374880 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph (mixed graph and object)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0106-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0106-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @vocab and relative IRIs" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0062-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0062-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0062-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative IRIs don't round-trip with @type: @vocab" . -_:g70292352435380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622902140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349849420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350881040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350914720 . -_:g70292350881040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> . -_:g70292622628440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622628440 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "most specific term matching in @list." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0024-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0024-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0024-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "The most specific term that matches all of the elements in the list, taking into account the default language, must be selected." . -_:g70292350948420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350982120 . -_:g70292350948420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350124320 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a simple graph with a [@graph, @id] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0084-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0084-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0084-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a simple graph using a @graph container with @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Free-floating values in sets and free-floating lists" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0047-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0047-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/2000/01/rdf-schema#comment> "Free-floating values in sets are removed, free-floating lists are removed completely" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Lists" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0004-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple lists with different types of element." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353276740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid object IRIs are rejected" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf03-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . -_:g70292354978860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349812860 . -_:g70292354978860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> . -_:g70292350506520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622297740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622334960 . -_:g70292622297740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> . -_:g70292350012200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350274880 . -_:g70292350012200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> . -_:g70292350197260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351045900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351146000 . -_:g70292351045900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> . -_:g70292349833800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351619860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351669120 . -_:g70292351619860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> . -_:g70292622743220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622774140 . -_:g70292622743220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @vocab in reverse-map" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0044-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0044-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0044-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/2000/01/rdf-schema#comment> "Prefer properties with @type: @vocab in reverse-maps if the value can be compacted to a term" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes with reverse properties" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0045-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0045-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/2000/01/rdf-schema#comment> "Proper (re-)labeling of blank nodes if used with reverse properties." . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350173220 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (double-zero)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js04-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (double-zero)." . -_:g70292353409780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354615720 . -_:g70292353409780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> . -_:g70292623333620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623378720 . -_:g70292623333620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> . -_:g70292357602380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357612040 . -_:g70292357602380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> . -_:g70292624392620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350927760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351602700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351716780 . -_:g70292351602700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> . -_:g70292351681360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350434720 . -_:g70292351681360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> . -_:g70292352894320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352932340 . -_:g70292352894320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> . -_:g70292622983840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623332800 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to base option" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r019-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r019-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -_:g70292219461140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219493680 . -_:g70292219461140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with embed" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e012-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0012" . -_:g70292623556800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623625200 . -_:g70292623556800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352585240 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if targeted element is not a script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e012-in.html#first> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML which isn't a script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624592020 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands as empty with no embedded JSON-LD script elements" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e006-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML when none exist" . -_:g70292622530620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622629440 . -_:g70292622530620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622957740 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches wildcard @language in value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0039-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0039-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0039-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type mapping (not a string)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . -_:g70292350485460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351015920 . -_:g70292350485460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> . -_:g70292349699380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350025940 . -_:g70292349699380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> . -_:g70292625022260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219473880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219502660 . -_:g70292219473880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> . -_:g70292357794720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623460820 . -_:g70292357794720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Sample test manifest extract" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0043-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0043-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/2000/01/rdf-schema#comment> "Flatten a test manifest" . -_:g70292350848000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352012640 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding a value staring with a colon does not treat that value as an IRI" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0118-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0118-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms may begin with a colon and not be treated as IRIs." . -_:g70292350899860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623967840 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Appends nested values when property at base and nested" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n003-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-framing/tests/" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Framing" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70292352877960 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Framing Algorithm](https://www.w3.org/TR/json-ld11-framing/#framing-algorithm)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language and index expansion on non-objects" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e040-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e040-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0040" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "date type-coercion" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e007-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/2000/01/rdf-schema#comment> "Type-coerced dates generate typed literals (from expand-0007)" . -_:g70292352700940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352731940 . -_:g70292352700940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> . -_:g70292351339720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351370160 . -_:g70292351339720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> . -_:g70292349639500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349639500 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292349639500 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . -_:g70292351899600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352029140 . -_:g70292351899600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622607340 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected @type cannot be overridden." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr32-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . -_:g70292351287600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350654320 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "id map using @none" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m013-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m013-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @id" . -_:g70292350993860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351027140 . -_:g70292350993860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356192300 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mix of protected and unprotected terms." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr19-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr19-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/2000/01/rdf-schema#comment> "Mix of protected and unprotected terms." . -_:g70292219290720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219341000 . -_:g70292219290720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> . -_:g70292624726300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624770220 . -_:g70292624726300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352173720 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (array)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js07-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (array)." . -_:g70292351176740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351255680 . -_:g70292351176740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350374080 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a graph with @index using a [@graph, @id] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0088-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0088-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0088-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a @graph container with @id and @set, discarding an @index value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623672600 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand @graph container" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e079-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e079-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "named graph with embedded named graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0029-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0029-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that named graphs containing named graphs flatten to single level of graph naming." . -_:g70292625558760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625590180 . -_:g70292625558760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> . -_:g70292358155100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358155100 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292355535060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355569120 . -_:g70292355535060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> . -_:g70292352731940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352762880 . -_:g70292352731940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> . -_:g70292625054520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625067900 . -_:g70292625054520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@set of @value objects with keyword aliases" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0014-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding aliased @set and @value" . -_:g70292623379700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357553780 . -_:g70292623379700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622363220 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property and value with different terms mapping to the same expanded property" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -_:g70292355239820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292080833280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625689920 . -_:g70292080833280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> . -_:g70292357862820 <https://w3c.github.io/json-ld-api/tests/vocab#useRdfType> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624803240 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @graph container if value is a graph (multiple graphs)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e103-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e103-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292354225240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349753540 . -_:g70292354225240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> . -_:g70292622575980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622606800 . -_:g70292622575980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350670880 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple protected and unprotected terms." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr10-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/2000/01/rdf-schema#comment> "Simple protected and unprotected terms." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353142400 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe (non-explicit)" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0006-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0006-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0006-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Unless the explicit is false, processors append extra values to output." . -_:g70292355089620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349962020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351867480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351880440 . -_:g70292351867480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> . -_:g70292350276520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622509480 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches wildcard @value in value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0037-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0037-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0037-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352898780 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A relative IRI cannot be used as a prefix" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er49-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that a relative IRI cannot be used as a term." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er50-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse." . -_:g70292351976580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352502900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352637260 . -_:g70292352502900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292361744380 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to HTML base" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r020-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r020-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622888800 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "When type is in a type map" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m008-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292355503520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350847120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350977160 . -_:g70292350847120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> . -_:g70292351522840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352014240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352045740 . -_:g70292352014240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine term using @vocab, not itself" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e072-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e072-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0072" . -_:g70292357875640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358043480 . -_:g70292357875640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350471520 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@prefix is not allowed in 1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep07-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/2000/01/rdf-schema#comment> "@prefix is not allowed in a term definition 1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350489280 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using an array value for @context is illegal in JSON-LD 1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/es01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid container mapping is found" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350928160 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @type with @container: @set" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0104-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0104-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0104-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensures that a single @type value is represented as an array" . -_:g70292351763020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353948680 . -_:g70292351763020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> . -_:g70292624891800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354961920 . -_:g70292624891800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351422300 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c010-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292624498560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618297960 . -_:g70292624498560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te004> . -_:g70292351408540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355023460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350032280 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands and does not compact to document base with compactToRelative false" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/r002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/r002-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/r002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/2000/01/rdf-schema#comment> "With compactToRelative option set to false, IRIs which could be made relative to the document base are not made relative." . -_:g70292351061300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623295480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623364700 . -_:g70292623295480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> . -_:g70292351290160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs with with @base" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0062-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0062-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative IRIs" . -_:g70292623986320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624019460 . -_:g70292623986320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> . -_:g70292622579220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622608700 . -_:g70292622579220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351426200 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected terms with type." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr17-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected terms with type." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language map value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language map value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er35-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language map value is found" . -_:g70292624480820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . -_:g70292624480820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compact @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0009-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Value with @id is compacted to string if property cast to @id" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358185160 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with i18n literal with direction and no language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di05-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Parses i18n datatype with proper option." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349717220 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact using relative fragment identifier" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0075-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0075-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0075-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting a relative round-trips" . -_:g70292351815960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350441320 . -_:g70292351815960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> . -_:g70292350356040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350390000 . -_:g70292350356040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349755340 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattens first embedded JSON-LD script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/f002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/f002-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/f002-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350295380 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none does not compact values" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/tn01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/tn01-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/tn01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none does not compact values." . -_:g70292349865980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350016640 . -_:g70292349865980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> . -_:g70292351569940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid typed value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid typed value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er40-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid typed value is found" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351816300 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "composed type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c023-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c023-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c023-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/2000/01/rdf-schema#comment> "composed type-scoped property-scoped contexts including @type:@vocab" . -_:g70292625249220 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292625249220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351455520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351490300 . -_:g70292351455520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> . -_:g70292351374560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351453260 . -_:g70292351374560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> . -_:g70292625100780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625132440 . -_:g70292625100780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> . -_:g70292623580060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623644380 . -_:g70292623580060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid local context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid local context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context is not a string or object" . -_:g70292623409760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618141220 . -_:g70292623409760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351535300 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected terms with type+null+ctx." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr18-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected terms with type+null+ctx." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine term using @vocab, not itself" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0072-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0072-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/2000/01/rdf-schema#comment> "Redefining a term as itself when @vocab is defined uses @vocab, not previous term definition" . -_:g70292355940960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355997000 . -_:g70292355940960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remove duplicate triples" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0017-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0017-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Equivalent triples are used only once" . -_:g70292350748300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350799800 . -_:g70292350748300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> . -_:g70292623215200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350370200 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version must be 1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @version value" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep06-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/2000/01/rdf-schema#comment> "If @version is specified, it must be 1.1" . -_:g70292618340760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618340760 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292618299400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624560600 . -_:g70292618299400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356095960 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "processingMode json-ld-1.0 conflicts with @version: 1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "processing mode conflict" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/ep02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <http://www.w3.org/2000/01/rdf-schema#comment> "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356106360 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected terms with type." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr17-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected terms with type." . -_:g70292623232080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623286020 . -_:g70292623232080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350131100 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@index map with @none value" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m009-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355401780 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A term starting with a colon can expand to a different IRI" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e117-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e117-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms may begin with a colon and not be treated as IRIs." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352354040 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A scoped context may include itself recursively (indirect)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0127-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0127-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622628440 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @version is json-ld-1.0 for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292625053760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622986440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Null term and @vocab" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0032-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0032-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Mapping a term to null decouples it from @vocab" . -_:g70292350538900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350618080 . -_:g70292350538900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Problematic IRI expansion tests" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e025-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e025-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0025" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (@reverse not a string)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er15-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356012300 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear protection with null context." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr14-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr14-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/2000/01/rdf-schema#comment> "Clear protection with null context." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625179360 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not expand a Compact IRI using a non-prefix term." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr29-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr29-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion of Compact IRIs considers if the term can be used as a prefix." . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624381760 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not redirect if type is application/ld+json" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . -_:g70292623820200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (@id not a string)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er18-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . -_:g70292352389000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622265580 . -_:g70292352389000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> . -_:g70292622987420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "BNodes and references" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0003-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "BNode name generation and references between resources." . -_:g70292623479000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623525660 . -_:g70292623479000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creation of a list with multiple elements" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0015-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that list with multiple elements." . -_:g70292357612040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357646960 . -_:g70292357612040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Plain literal with URIs" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0001-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests generation of a triple using full URIs and a plain literal." . -_:g70292354487280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618136960 . -_:g70292354487280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> . -_:g70292353189500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353223280 . -_:g70292353189500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> . -_:g70292219460120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622477140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352339380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352435660 . -_:g70292352339380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> . -_:g70292623089500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623118560 . -_:g70292623089500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_LINE_FEED" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with LINE FEED from N-Triples" . -_:g70292351245660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351468180 . -_:g70292351245660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> . -_:g70292358108340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358122040 . -_:g70292358108340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid prefix value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @prefix value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er53-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @prefix value" . -_:g70292624248640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624278800 . -_:g70292624248640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> . -_:g70292624905240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351208240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351337460 . -_:g70292351208240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> . -_:g70292352270560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352386680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352799780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624706220 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @graph container if value is a graph (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e102-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e102-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292624938520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624988260 . -_:g70292624938520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> . -_:g70292080730980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292352209020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type mapping (not absolute IRI)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . -_:g70292349687200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623263880 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab)." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr39-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr39-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -_:g70292622974800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623004840 . -_:g70292622974800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> . -_:g70292618312020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624329580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624429080 . -_:g70292624329580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> . -_:g70292352287660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352389000 . -_:g70292352287660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> . -_:g70292219542760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625069900 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@requireAll only matches if @id and @type match" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/ra02-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/ra02-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/ra02-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/2000/01/rdf-schema#comment> "If @requireAll is true, then all listed properties, including @id and @type, must be present to match." . -_:g70292622858260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350505540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350714180 . -_:g70292350505540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> . -_:g70292625376020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625432300 . -_:g70292625376020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_CHARACTER_TABULATION" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with CHARACTER TABULATION from N-Triples" . -_:g70292352736860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352750240 . -_:g70292352736860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> . -_:g70292349849740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349917000 . -_:g70292349849740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact properties and types using @vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0021-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0021-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0021-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "@vocab is used to create relative properties and types if no other term matches" . -_:g70292351684060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351816000 . -_:g70292351684060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> . -_:g70292618218300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354978860 . -_:g70292618218300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> . -_:g70292350861980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350832340 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language mapwith overriding null direction" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -_:g70292350522520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357632280 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands targeted JSON-LD script element with fragment and HTML base" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r022-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r022-in.html#second> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test object processing defines object with implicit BNode" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0011-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "If no @ is specified, a BNode is created, and will be used as the object of an enclosing property." . -_:g70292351946740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351976860 . -_:g70292351946740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list keyword aliasing" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0042-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0042-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0042-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/2000/01/rdf-schema#comment> "Make sure keyword aliasing works if a list can't be compacted" . -_:g70292623117420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623152140 . -_:g70292623117420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> . -_:g70292349766460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357946640 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if uncommented script is not valid JSON" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e017-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML which is invalid JSON" . -_:g70292622955840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623005660 . -_:g70292622955840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> . -_:g70292353090880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618140980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350409300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350452240 . -_:g70292350409300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> . -_:g70292349930840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618153520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618186540 . -_:g70292618153520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> . -_:g70292349962760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350161200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350239780 . -_:g70292350161200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> . -_:g70292349673400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349720440 . -_:g70292349673400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351311280 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph (mixed graph and object)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0105-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0105-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "most specific term matching in @list." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/la01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/la01-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/la01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/2000/01/rdf-schema#comment> "The most specific term that matches all of the elements in the list, taking into account the default language, must be selected, without considering case of language." . -_:g70292351732600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351076780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list compaction of nested properties" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0022-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0022-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0022-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact nested properties using @list containers" . -_:g70292624068140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624132980 . -_:g70292624068140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> . -_:g70292350911400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623333760 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "id map with @none" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m011-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @id" . -_:g70292622410820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622448260 . -_:g70292622410820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> . -_:g70292352945720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352959080 . -_:g70292352945720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> . -_:g70292352404440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352437480 . -_:g70292352404440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> . -_:g70292354994660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349865980 . -_:g70292354994660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352127760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "When type is in a type map" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292622509480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357891880 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e098-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e098-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292352539500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358026740 . -_:g70292352539500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> . -_:g70292352663740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352663740 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292624888520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351272740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351468480 . -_:g70292351272740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> . -_:g70292625235540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352260640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352305520 . -_:g70292352260640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> . -_:g70292351451720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351485360 . -_:g70292351451720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> . -_:g70292356092040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356141360 . -_:g70292356092040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623856220 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e082-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e082-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . -_:g70292357597380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . -_:g70292357597380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> . -_:g70292357681480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357715600 . -_:g70292357681480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand compact IRI with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0058-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0058-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact IRIs are expanded normally even if term has @type: @vocab" . -_:g70292623921180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623986660 . -_:g70292623921180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355981240 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override unprotected term." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr13-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/2000/01/rdf-schema#comment> "Override unprotected term." . -_:g70292353111020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353145420 . -_:g70292353111020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352573240 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frame matching on matching value in list" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0056-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0056-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0056-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists match on any matching value." . -_:g70292355925900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test prefix defined in @context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0008-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Generate an IRI using a prefix defined within an @context." . -_:g70292622958340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623154400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624692300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624692300 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292624265060 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0012-context2.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . -_:g70292624265060 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0012-context1.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . -_:g70292357860080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357911720 . -_:g70292357860080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te016> . -_:g70292623183660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624852860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354779180 . -_:g70292624852860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_REVERSE_SOLIDUS2" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/2000/01/rdf-schema#comment> "REVERSE SOLIDUS at end of literal from N-Triples" . -_:g70292352631680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352669540 . -_:g70292352631680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357562920 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand string using default and term directions and languages" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di02-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Strings are coerced to have @direction based on default and term direction." . -_:g70292356013220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356022820 . -_:g70292356013220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355236060 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @index is a keyword for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292624167280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624248860 . -_:g70292624167280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> . -_:g70292625605920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625116520 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected alias term with same definition modulo protected flag." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr27-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr27-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected alias term with same definition modulo protected flag." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e030-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e030-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0030" . -_:g70292355569120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355603240 . -_:g70292355569120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> . -_:g70292350812660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350523760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622728940 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep property-term scoped @context in @type-scoped @context affects nested nodes" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c012-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292351812160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base without trailing slash, without path" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0129-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0129-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986" . -_:g70292350144820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351699260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351081540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351196020 . -_:g70292351081540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> . -_:g70292356208300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356239220 . -_:g70292356208300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> . -_:g70292351125220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351193320 . -_:g70292351125220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> . -_:g70292623447680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354092160 . -_:g70292623447680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> . -_:g70292219601340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354911640 . -_:g70292219601340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> . -_:g70292622279360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622333060 . -_:g70292622279360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355078980 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph (mixed graph and object)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e105-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e105-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292350506700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350750400 . -_:g70292350506700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623278720 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0081-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0081-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/2000/01/rdf-schema#comment> "Don't double-expand an already expanded graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355323700 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expansion allows multiple properties expanding to @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e114-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e114-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/2000/01/rdf-schema#comment> "An exception for the colliding keywords error is made for @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623163660 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (@reverse)." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr38-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr38-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219325180 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes in an array" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0020-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "Empty frame matches all nodes at top-level, and repeats where embedded in json-ld-1.0 mode." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand already expanded" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0013-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand does not mess up already expanded document" . -_:g70292352567080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352604960 . -_:g70292352567080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349639500 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with compound literal with direction and language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di12-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di12-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/2000/01/rdf-schema#comment> "Parses compound literal with proper option." . -_:g70292624397020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624397020 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292624397020 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> "application/xhtml+xml"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624410020 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not redirect if link type is not application/ld+json" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la03-in.json> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @index value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @index value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er31-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @index value value is found" . -_:g70292358169280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624657800 . -_:g70292358169280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> . -_:g70292623204120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623250300 . -_:g70292623204120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> . -_:g70292355993140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0030-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0030-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/2000/01/rdf-schema#comment> "Language Maps expand values to include @language" . -_:g70292358110340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358206380 . -_:g70292358110340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> . -_:g70292622283420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622297040 . -_:g70292622283420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> . -_:g70292623514680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352960080 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect terms in sourced context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . -_:g70292355353480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350455920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350506660 . -_:g70292350455920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355472280 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index appends to property value, instead of @index (node)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi09-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292350846420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350945940 . -_:g70292350846420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625637760 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import is invalid in 1.0." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/2000/01/rdf-schema#comment> "@import is invalid in 1.0." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352993380 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe (null)" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0003-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0003-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0003-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not match without a matching @type" . -_:g70292355629940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353108740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353108740 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292351570640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351619860 . -_:g70292351570640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> . -_:g70292352573240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622787840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622825300 . -_:g70292622787840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> . -_:g70292350274880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350538720 . -_:g70292350274880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> . -_:g70292352897180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355826520 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A tangle of nastiness" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g008-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g008-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g008-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . -_:g70292350820080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349798940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349895800 . -_:g70292349798940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> . -_:g70292351390920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351442840 . -_:g70292351390920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> . -_:g70292350195840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292349799220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352360180 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with structural canonicalization" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js10-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with structural canonicalization." . -_:g70292350538720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350571600 . -_:g70292350538720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> . -_:g70292353227740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352341740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352354640 . -_:g70292352341740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> . -_:g70292624465120 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la04-alternate.jsonld>; rel=\"alternate\"; type=\"application/ld+json\"" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351730780 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object already having an @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m002-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop free-floating nodes" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand drops unreferenced nodes having only @id" . -_:g70292351063360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351097040 . -_:g70292351063360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prefer @type: @id over @type: @vocab for non-terms" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0058-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0058-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0058-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/2000/01/rdf-schema#comment> "Choose a term having @type: @id over @type: @value if value is not a term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351409700 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "node reference compacts to string value of type map with @type: @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m021-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m021-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m021-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -_:g70292349848740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349881780 . -_:g70292349848740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> . -_:g70292351193180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351228080 . -_:g70292351193180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> . -_:g70292351798040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id value uses relative IRI, not term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0045-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0045-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0045-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/2000/01/rdf-schema#comment> "Values of @id are transformed to relative IRIs, terms are ignored" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creation of an empty list" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0013-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that @list: [] generates an empty list." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "String values of reverse properties" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0049-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0049-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/2000/01/rdf-schema#comment> "String values of a reverse property with @type: @id are treated as IRIs" . -_:g70292350894480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@vocab-relative IRIs in term definitions" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0052-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0052-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/2000/01/rdf-schema#comment> "If @vocab is defined, term definitions are expanded relative to @vocab" . -_:g70292617860700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349717580 . -_:g70292617860700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> . -_:g70292353499240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353848880 . -_:g70292353499240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622333780 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not expand a Compact IRI using a non-prefix term." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr29-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr29-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion of Compact IRIs considers if the term can be used as a prefix." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords cannot be aliased to other keywords" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350765860 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening blank node labels" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0038-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0038-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/2000/01/rdf-schema#comment> "Blank nodes are not relabeled during expansion" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618152520 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "use alias of @direction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di02-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Use alias of @direction." . -_:g70292350752700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350967460 . -_:g70292350752700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> . -_:g70292350910880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350965980 . -_:g70292350910880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> . -_:g70292350636820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "select term over @vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0043-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0043-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0043-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that @vocab compaction isn't used if the result collides with a term" . -_:g70292350337180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625251420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625282380 . -_:g70292625251420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355751860 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Embed with nested indirect circular reference via set" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g006-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g006-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g006-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . -_:g70292623853960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623921180 . -_:g70292623853960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> . -_:g70292349768060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349933580 . -_:g70292349768060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> . -_:g70292352262100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352339380 . -_:g70292352262100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> . -_:g70292350603680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350737000 . -_:g70292350603680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351143060 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear protection with array with null context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr15-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr15-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/2000/01/rdf-schema#comment> "Clear protection with array with null context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353308260 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid type IRIs are rejected" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf04-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624130420 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested nested containers" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n005-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -_:g70292355699020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355729600 . -_:g70292355699020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> . -_:g70292355189560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355220680 . -_:g70292355189560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> . -_:g70292624347720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624409240 . -_:g70292624347720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> . -_:g70292351140960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351472200 . -_:g70292351140960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> . -_:g70292352877960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352929120 . -_:g70292352877960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> . -_:g70292622739880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624099460 <https://w3c.github.io/json-ld-api/tests/vocab#httpStatus> "307"^^<http://www.w3.org/2001/XMLSchema#integer> . -_:g70292624099460 <https://w3c.github.io/json-ld-api/tests/vocab#redirectTo> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> . -_:g70292351063220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622647020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622778240 . -_:g70292622647020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> . -_:g70292623578320 <https://w3c.github.io/json-ld-api/tests/vocab#expandContext> <https://w3c.github.io/json-ld-api/tests/toRdf/e077-context.jsonld> . -_:g70292349812860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349979260 . -_:g70292349812860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349699220 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term direction null" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di01-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Uses term with null direction when two terms conflict on direction." . -_:g70292623443760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357584260 . -_:g70292623443760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> . -_:g70292353423560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358155100 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed: @last replaces previous embed values with node reference" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0059-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0059-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0059-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that within a matched node, by default only the last reference will be embedded in json-ld-1.0 mode." . -_:g70292624707580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624753740 . -_:g70292624707580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> . -_:g70292623591400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623655960 . -_:g70292623591400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> . -_:g70292350965980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350996240 . -_:g70292350965980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> . -_:g70292625145960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625183860 . -_:g70292625145960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> . -_:g70292355456320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355466200 . -_:g70292355456320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> . -_:g70292352320000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352376420 . -_:g70292352320000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355239820 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Match on value" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0065-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0065-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0065-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/2000/01/rdf-schema#comment> "Value matching." . -_:g70292352091200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352145680 . -_:g70292352091200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292080734460 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid language tags are rejected" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf05-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . -_:g70292622496460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351797940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350438240 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Arrays of nested values" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -_:g70292352025780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352140740 . -_:g70292352025780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @vocab with with type-coercion" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e033-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e033-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0033" . -_:g70292352860200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352894320 . -_:g70292352860200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> . -_:g70292623216220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623247140 . -_:g70292623216220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> . -_:g70292351632420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351063220 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Resources can be re-embedded again in each top-level frame match" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0019-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0019-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0019-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "@type matching matches nodes at top-level, and embedding causes them be embedded where referenced." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624236000 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Arrays of nested values" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n006-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351408540 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped contexts are properly reverted" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c017-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped contexts are property reverted" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352336880 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected alias term with same definition modulo protected flag." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr27-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr27-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected alias term with same definition modulo protected flag." . -_:g70292080799520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292080833280 . -_:g70292080799520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> . -_:g70292624970340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625770740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219127820 . -_:g70292625770740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625687320 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (array)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js07-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (array)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "non-fractional numbers converted to xsd:double" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0035-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0035-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "xsd:double's canonical lexical is used when converting numbers without fraction that are coerced to xsd:double" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Terms are ignored in @id" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e048-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e048-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0048" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (10)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0130-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0130-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (3)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0123-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0123-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624055040 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e085-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e085-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . -_:g70292618306240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357894820 . -_:g70292618306240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623662220 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge graphs if no outer @graph is used" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0046-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0046-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/2000/01/rdf-schema#comment> "Unless @graph exists at the top level, framing uses merged node objects in json-ld-1.0 mode." . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624397020 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element (xhtml)" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e001-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in XHTML" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remote document" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70292623901760 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for JSON-LD [Remote Document and Context Retrieval](https://www.w3.org/TR/json-ld11-api/#remote-document-and-context-retrieval)." . -_:g70292080796860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292080796860 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624072620 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Appends nested values from all @nest aliases in term order" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n004-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -_:g70292355487660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355519140 . -_:g70292355487660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623186580 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to document base" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r018-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r018-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -_:g70292350632540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350669820 . -_:g70292350632540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "triple with RDF nil subject" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0023-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0023-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "Test triple with RDF nil subject" . -_:g70292622446580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622674460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357554060 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import is invalid in 1.0." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/2000/01/rdf-schema#comment> "@import is invalid in 1.0." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356106260 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version must be 1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @version value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/ep03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/2000/01/rdf-schema#comment> "If @version is specified, it must be 1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623429940 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate must be boolean valued" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @propagate value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c030-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/2000/01/rdf-schema#comment> "@propagate must be boolean valued" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351026540 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands all embedded JSON-LD script elements with extractAllScripts option" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r004-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r004-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements" . -_:g70292622837860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622875320 . -_:g70292622837860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> . -_:g70292350293020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358043800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358075240 . -_:g70292358043800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> . -_:g70292618136960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349768060 . -_:g70292618136960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> . -_:g70292622612380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622625420 . -_:g70292622612380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> . -_:g70292355145660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622560160 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias of @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c008-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c008-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292354599760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354842920 . -_:g70292354599760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> . -_:g70292354050060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354534320 . -_:g70292354050060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> . -_:g70292357910800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358007480 . -_:g70292357910800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> . -_:g70292618156240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618223000 . -_:g70292618156240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple @index map" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0029-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0029-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0029-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/2000/01/rdf-schema#comment> "Output uses index mapping if term is defined with @container: @index" . -_:g70292624808400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624808400 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622303080 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351259380 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid keyword in term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/ec01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid term definition is found" . -_:g70292350370200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350552720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351700740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351685880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351719460 . -_:g70292351685880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350698200 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI does not use expanded term definition in 1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p002-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms with an expanded term definition are not used for creating compact IRIs" . -_:g70292219199420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219228100 . -_:g70292219199420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @vocab-relative term with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0055-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0055-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding values of properties of @type: @vocab expands relative IRIs using @vocab" . -_:g70292350851340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350881080 . -_:g70292350851340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> . -_:g70292350568620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350720500 . -_:g70292350568620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> . -_:g70292349833060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349944780 . -_:g70292349833060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> . -_:g70292622921020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622974800 . -_:g70292622921020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> . -_:g70292623016020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ensure index maps use language mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e044-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e044-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0044" . -_:g70292351917740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351964180 . -_:g70292351917740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using reverse properties inside a @reverse-container" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e043-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e043-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0043" . -_:g70292219214940 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292622295300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622350940 . -_:g70292622295300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> . -_:g70292353734360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355078980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351112720 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (string)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js10-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js10-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (string)." . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358022720 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to base option" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e019-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e019-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . -_:g70292625179360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351911840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622562160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622607120 . -_:g70292622562160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> . -_:g70292357880300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357893620 . -_:g70292357880300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> . -_:g70292623890900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623999260 . -_:g70292623890900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> . -_:g70292352342400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352405240 . -_:g70292352342400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> . -_:g70292349652400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219442960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219442960 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353193960 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a string" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292219341000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219391360 . -_:g70292219341000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> . -_:g70292622662600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622675140 . -_:g70292622662600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> . -_:g70292356240420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624938520 . -_:g70292356240420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> . -_:g70292351437260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350388460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350468620 . -_:g70292350388460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353159800 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "json.api example" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in06-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292622891240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622921020 . -_:g70292622891240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Free-floating nodes" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0046-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0046-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding free-floating nodes causes them to be removed" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618219960 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition with @id: @type" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0026-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0026-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening term mapping to @type uses @type syntax" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type mapping (not a string)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . -_:g70292352289400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351927820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352048600 . -_:g70292351927820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> . -_:g70292623364080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623186580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623186580 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292353047120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623820200 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands input using @nest" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n001-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352533820 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if no element found at target" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e011-in.html#third> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist" . -_:g70292353142400 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292351831800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351831800 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292351831800 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292357848300 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292357848300 <https://w3c.github.io/json-ld-api/tests/vocab#produceGeneralizedRdf> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292623084760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623187300 . -_:g70292623084760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> . -_:g70292352095460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352144760 . -_:g70292352095460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> . -_:g70292355718680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355729020 . -_:g70292355718680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context not first property" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0073-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0073-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/2000/01/rdf-schema#comment> "Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition" . -_:g70292618134960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622410360 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords may be protected." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70146871251240 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . +_:g70146737914300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877429380 . +_:g70146737914300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> . +_:g70146875629180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875675500 . +_:g70146875629180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> . +_:g70146881025480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881059840 . +_:g70146881025480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> . +_:g70146874593840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880565380 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la03-alternate.json>; rel=\"alternate\"; type=\"application/json\"" . +_:g70146871777040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871807960 . +_:g70146871777040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> . +_:g70146737722020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875476840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875508360 . +_:g70146875476840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> . +_:g70146880513880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880563400 . +_:g70146880513880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr16-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr16-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override protected terms after null." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/2000/01/rdf-schema#comment> "Override protected terms after null." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737557180 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872219580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872254160 . +_:g70146872219580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr17-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected terms with type." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected terms with type." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737588960 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146874492140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871807960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871857440 . +_:g70146871807960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> . +_:g70146875316120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879875540 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . +_:g70146879875540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879875540 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875265500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875408500 . +_:g70146875265500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid base IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid base IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @base" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879580280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e057-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e057-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand relative IRI with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0057" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0080-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0080-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @set] container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of [@graph, @set] containers" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874656960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875460980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875300900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870928120 . +_:g70146875300900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "id map with @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879301540 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874508060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874543020 . +_:g70146874508060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> . +_:g70146871575740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876333400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876448160 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146876448160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0055-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0055-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Framing list with mixed values" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/2000/01/rdf-schema#comment> "Framing list values which are mixed." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0055-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880926040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876743620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876769220 . +_:g70146876743620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> . +_:g70146871114040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878916800 . +_:g70146871114040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> . +_:g70146737029340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737067560 . +_:g70146737029340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr27-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr27-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected alias term with same definition modulo protected flag." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected alias term with same definition modulo protected flag." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875214080 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879350640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879484900 . +_:g70146879350640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> . +_:g70146879387780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876343300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871142580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735619840 . +_:g70146871142580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m018-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m018-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id map using @none" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871145060 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879351680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m020-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m020-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "node reference compacts to string value of type map" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874514480 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880794880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872117140 . +_:g70146880794880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er18-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (@id not a string)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146869958920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870950440 . +_:g70146869958920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> . +_:g70146871229720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876725280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876756940 . +_:g70146876725280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi05-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes using @none if no property value exists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874415060 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0026-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0026-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0026-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language map term selection with complications" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Test appropriate property use given language maps with @vocab, a default language, and a competing term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871744080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0090-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0090-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0090-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with @graph container to output without @graph container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874741900 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di07-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di07-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with mismatching term direction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874574160 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875343880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875398220 . +_:g70146875343880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> . +_:g70146871560000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871629140 . +_:g70146871560000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0081-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0081-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0081-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a [@graph, @index] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a @graph container with @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874482240 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect all terms in sourced context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context protects all term definitions." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146601318120 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146872413600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872448320 . +_:g70146872413600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> . +_:g70146880252720 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146880252720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n006-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879600480 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879485240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879584760 . +_:g70146879485240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> . +_:g70146874627160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871756040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871793760 . +_:g70146871756040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> . +_:g70146880021460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880039900 . +_:g70146880021460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> . +_:g70146877278900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877313220 . +_:g70146877278900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> . +_:g70146880665200 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880665200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e098-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e098-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876639560 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e075-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e075-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@vocab as blank node identifier" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/2000/01/rdf-schema#comment> "Use @vocab to map all properties to blank node identifiers" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146412541200 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "GeneralizedRdf" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874968440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875097160 . +_:g70146874968440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> . +_:g70146875540720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875609320 . +_:g70146875540720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> . +_:g70146872447600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876495220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880495720 . +_:g70146876495220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> . +_:g70146875704560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875739620 . +_:g70146875704560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c015-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped base" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped base" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871873540 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875367200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875444120 . +_:g70146875367200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e052-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e052-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@vocab-relative IRIs in term definitions" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0052" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds vocabulary expanded @type to object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875360360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881053260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737541020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737590820 . +_:g70146737541020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> . +_:g70146736369320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872821720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872871760 . +_:g70146872821720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/ra01-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/ra01-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@requireAll only matches if @type and other properties are present" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/2000/01/rdf-schema#comment> "If @requireAll is true, then all listed properties, including @type, must be present to match." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/ra01-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876825440 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875147860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875218100 . +_:g70146875147860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0128-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0128-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Two scoped context may include a shared context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874875380 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0120-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0120-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (0)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid local context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid local context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context is not a string or object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146601319400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736478140 . +_:g70146601319400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e040-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e040-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language and index expansion on non-objects" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0040" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0023-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0023-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "No match on []" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "No match if node has a property where frame has an empty array for that same property." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0023-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871530680 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736177920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878610700 . +_:g70146736177920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> . +_:g70146871989300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872019600 . +_:g70146871989300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0015-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0015-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with IRI rdf:rest" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not convert lists to @list if a list node's rdf:rest is an IRI." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880270200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880371080 . +_:g70146880270200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0045-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0045-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes with reverse properties" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/2000/01/rdf-schema#comment> "Proper (re-)labeling of blank nodes if used with reverse properties." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876868660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . +_:g70146876868660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> . +_:g70146880450680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146871839880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871853080 . +_:g70146871839880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @context affects nested nodes" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875065520 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736572440 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146736572440 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . +_:g70146736572440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if attempting to add property to value object for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879148560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e039-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e039-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using terms in a reverse-maps" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0039" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871282760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881220420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881269740 . +_:g70146881220420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> . +_:g70146875054240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875084300 . +_:g70146875054240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> . +_:g70146875298820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875398100 . +_:g70146875298820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a numeric value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871511640 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871479020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871673060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871842200 . +_:g70146871673060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> . +_:g70146876235440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876268380 . +_:g70146876235440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m017-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m017-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map using @none" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878953740 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874695580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874757740 . +_:g70146874695580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di02-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: null with i18n literal with direction and language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse i18n datatype without proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878655660 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881404480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881414600 . +_:g70146881404480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a value object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871543900 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880122980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880152720 . +_:g70146880122980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> . +_:g70146875772740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875841460 . +_:g70146875772740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr25-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr25-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of terms with scoped contexts using same definitions." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of terms with scoped contexts using same definitions." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146601362160 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_all_punctuation" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/2000/01/rdf-schema#comment> "literal_all_punctuation '!\"#$%&()...' from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0034-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0034-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context properties reordering" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that generated triples do not depend on order of properties inside @context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr15-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr15-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear protection with array with null context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/2000/01/rdf-schema#comment> "Clear protection with array with null context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737525660 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874826660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880041260 . +_:g70146874826660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> . +_:g70146877344900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not protect term with @protected: false" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context does not protect terms with @protected: false." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879827740 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146875333880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875380220 . +_:g70146875333880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> . +_:g70146871674080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871744120 . +_:g70146871674080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> . +_:g70146736822760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736834760 . +_:g70146736822760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> . +_:g70146736980080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146412556480 . +_:g70146736980080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0081-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0081-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/2000/01/rdf-schema#comment> "Don't double-expand an already expanded graph" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874743980 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874673360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881138200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874543020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874708880 . +_:g70146874543020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> . +_:g70146880202700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880323340 . +_:g70146880202700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> . +_:g70146877409360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874608360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876867520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872023780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m019-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876169180 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js09-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with string canonicalization" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with string canonicalization." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146873004540 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li09-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing multiple lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875347960 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880105680 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880105680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias keywords" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Aliased keywords expand in resulting document" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874950640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879814280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874576300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "recursive context inclusion" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A context may not include itself recursively (indirect)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing a context referencing itself indirectly" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737641960 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879550040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/s002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/s002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/s002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context with array including @set uses array values" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/2000/01/rdf-schema#comment> "@context values may include @set along with another compatible value" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879372600 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736407700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146879239760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879284260 . +_:g70146879239760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879748500 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0073-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0073-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0073-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mapped @id and @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that compaction works with mapped @id and @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875951400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875988000 . +_:g70146875951400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> . +_:g70146879693720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879748600 . +_:g70146879693720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> . +_:g70146871628680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871642120 . +_:g70146871628680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c003-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property and value with different terms mapping to the same expanded property" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879791680 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871792300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871905340 . +_:g70146871792300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> . +_:g70146736395620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878889200 . +_:g70146736395620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> . +_:g70146878964460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879013060 . +_:g70146878964460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> . +_:g70146871465520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871725380 . +_:g70146871465520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e059-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e059-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reset @vocab by setting it to null" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0059" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0009-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with terms" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph to contain multiple nodes within array" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871350080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871363260 . +_:g70146871350080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid typed value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er40-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid typed value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid typed value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0035-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0035-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0035-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @reverse node references using strings" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact node references to strings for reverse properties using @type: @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m012-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m012-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with no @language using alias of @none" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146735634000 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872673360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146870960640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736004560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146869761100 . +_:g70146736004560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> . +_:g70146879979320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880009980 . +_:g70146879979320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> . +_:g70146878935120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736834760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736871360 . +_:g70146736834760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> . +_:g70146737900600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879827740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875004940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875018040 . +_:g70146875004940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> . +_:g70146880303020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880335740 . +_:g70146880303020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords cannot be aliased to other keywords" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146876786940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876825000 . +_:g70146876786940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> . +_:g70146872246980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872284560 . +_:g70146872246980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0062-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0062-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "An array with a single value remains an array if container is @set." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/2000/01/rdf-schema#comment> "Cleaning up @preserve/@null does not violate container: @set." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0062-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881003800 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0094-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0094-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @set] container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of [@graph, @set] containers" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880110340 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr35-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr35-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a non-keyword term starting with '@' (with @vocab)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876986520 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879959540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0005-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Document with list" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "Uses a named graph containing a list." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er37-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object (unexpected keyword)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879585740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879617220 . +_:g70146879585740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> . +_:g70146880220640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880290360 . +_:g70146880220640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e030-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e030-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0030" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146877429380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872499680 . +_:g70146877429380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r010-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r010-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element with HTML character references" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with character references" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875590580 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875739620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875774700 . +_:g70146875739620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/tn02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/tn02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/tn02-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none does not use arrays by default" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none honors @container." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879471240 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872362260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872399600 . +_:g70146872362260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> . +_:g70146876540540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876590260 . +_:g70146876540540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> . +_:g70146879551860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879585740 . +_:g70146879551860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> . +_:g70146871030760 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146871030760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0041-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0041-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches match none @language in value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0041-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876031840 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875890560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601319400 . +_:g70146875890560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading remote context failed" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error dereferencing a remote context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context dereference results in an error" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146870948520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871124920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146875134460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875300900 . +_:g70146875134460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g007-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g007-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multi-level simple embeds" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g007-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737473680 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er23-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (relative IRI in @type)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c017-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c017-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped contexts are properly reverted" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped contexts are property reverted" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736308060 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880495720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880794880 . +_:g70146880495720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> . +_:g70146872788620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872820420 . +_:g70146872788620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> . +_:g70146872448320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872483440 . +_:g70146872448320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0119-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0119-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes with reverse properties" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/2000/01/rdf-schema#comment> "Proper (re-)labeling of blank nodes if used with reverse properties." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0025-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0025-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test list coercion with single element" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that an array with a single element on a property with @list coercion creates an RDF Collection." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0010-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test object processing defines object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "A property referencing an associative array gets object from subject of array." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr33-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails if trying to declare a keyword alias as prefix." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/2000/01/rdf-schema#comment> "Keyword aliases can not be used as prefixes." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875563180 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146881251900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0111-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0111-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871478980 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872840660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872840660 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880306620 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146880306620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872069260 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . +_:g70146736350660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878971860 . +_:g70146736350660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> . +_:g70146871940280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi04-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes property value, instead of property (multiple nodes)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871177640 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871708720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871738440 . +_:g70146871708720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr30-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr30-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords may be protected." . <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . -_:g70292351556100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355208140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355257460 . -_:g70292355208140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> . -_:g70292624082980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624114620 . -_:g70292624082980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> . -_:g70292358055780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358094340 . -_:g70292358055780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> . -_:g70292351898900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350046200 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c010-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with terms" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph to contain multiple nodes within array" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Extended character set literal" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0005-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a literal may be created using extended characters." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use terms with @type: @vocab but not with @type: @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0056-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0056-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/2000/01/rdf-schema#comment> "Checks that expansion uses appropriate base depending on term definition having @type @id or @vocab" . -_:g70292624891860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353538260 . -_:g70292624891860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> . -_:g70292622411180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622465340 . -_:g70292622411180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219460120 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "No match on []" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0023-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0023-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0023-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "No match if node has a property where frame has an empty array for that same property." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624888520 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c006-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292352747640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355637140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355668040 . -_:g70292355637140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid keyword alias (@context)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid keyword alias" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er19-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid keyword alias is found" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple languages for same subject+property+value" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0024-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0024-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Uniqness of triples should include the value language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353304460 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (boolean false)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js02-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (boolean false)." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352240060 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails on redefinition of terms with scoped contexts using different definitions." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr26-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/2000/01/rdf-schema#comment> "Fails on redefinition of terms with scoped contexts using different definitions." . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350966900 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid JSON literal (invalid structure)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid JSON literal" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js09-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors must generate an error when deserializing an invalid JSON literal." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object (@type and @language)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er38-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object is found" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349732000 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing @list (with coercion)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li03-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292358186360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624822560 . -_:g70292358186360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI as term defined using equivalent compact IRI" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875459240 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m017-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876035680 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876578340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875841460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875890560 . +_:g70146875841460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> . +_:g70146736882740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0063-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0063-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @null in @default." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/2000/01/rdf-schema#comment> "@null may be used as an @default value and is preserved in output." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0063-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881053260 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875609320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875677960 . +_:g70146875609320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> . +_:g70146874821020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880109200 . +_:g70146874821020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> . +_:g70146876168800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876202340 . +_:g70146876168800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> . +_:g70146880221420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880333340 . +_:g70146880221420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a value object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872673360 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872117140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872187360 . +_:g70146872117140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> . +_:g70146871578480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871591620 . +_:g70146871578480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> . +_:g70146877245320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877276620 . +_:g70146877245320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> . +_:g70146871903460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871940980 . +_:g70146871903460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> . +_:g70146876440880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876493020 . +_:g70146876440880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e007-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "date type-coercion" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/2000/01/rdf-schema#comment> "Type-coerced dates generate typed literals (from expand-0007)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876084620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876132560 . +_:g70146876084620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term with protected scoped context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/2000/01/rdf-schema#comment> "A scoped context can protect terms." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737281740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875264780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875367200 . +_:g70146875264780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0058-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0058-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand compact IRI with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact IRIs are expanded normally even if term has @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e126-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e126-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A scoped context may include itself recursively (direct)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881315040 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875939700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875951400 . +_:g70146875939700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> . +_:g70146875168940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875199180 . +_:g70146875168940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> . +_:g70146874491520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874511820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874545740 . +_:g70146874511820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> . +_:g70146736226800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871114040 . +_:g70146736226800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> . +_:g70146874840480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880055440 . +_:g70146874840480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand list values with @direction" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/2000/01/rdf-schema#comment> "List values where the term has @direction are used in expansion." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880191740 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0070-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0070-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI as term defined using equivalent compact IRI" . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> <http://www.w3.org/2000/01/rdf-schema#comment> "Redefine compact IRI to define type mapping using the compact IRI itself as string value" . -_:g70292622939020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623067920 . -_:g70292622939020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> . -_:g70292350765860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355925900 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Scoped context fail to override protected term." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/2000/01/rdf-schema#comment> "Scoped context fail to override protected term." . -_:g70292622859620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623052080 . -_:g70292622859620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352111980 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using terms in a reverse-maps" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0039-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0039-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms within @reverse are expanded" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351029560 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear protection with null context." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr14-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr14-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/2000/01/rdf-schema#comment> "Clear protection with null context." . -_:g70292351864640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351927820 . -_:g70292351864640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> . -_:g70292351390980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355910060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355940960 . -_:g70292355910060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> . -_:g70292352819020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352850280 . -_:g70292352819020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> . -_:g70292355091840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623871920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623938220 . -_:g70292623871920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> . -_:g70292352653500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618322520 . -_:g70292352653500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te014> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prefer @type: @vocab over @type: @id for terms" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0056-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0056-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0056-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting IRI value of property with @type: @vocab can use term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350716900 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @set] container (multiple graphs)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0097-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0097-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0097-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -_:g70292349770420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349832620 . -_:g70292349770420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI expansion of fragments including ':'" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0109-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0109-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not treat as absolute IRIs values that look like compact IRIs if they're not absolute" . -_:g70292351981780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351994440 . -_:g70292351981780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> . -_:g70292357619600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351374880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622988320 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List of lists (from array)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "list of lists" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er32-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a list of lists is found" . -_:g70292352288820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352320000 . -_:g70292352288820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> . -_:g70292354489840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349633640 . -_:g70292354489840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623134080 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "base option overrides document location" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0076-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0076-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of the base option overrides the document location" . -_:g70292618236000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354980120 . -_:g70292618236000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Container as a list with type of @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0074-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0074-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0074-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that compaction works for empty list when property has container declared as @list and type as @id" . -_:g70292353714040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354422660 . -_:g70292353714040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351456000 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "applies context for all values" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c011-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292351719460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351752680 . -_:g70292351719460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> . -_:g70292350109540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350176700 . -_:g70292350109540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> . -_:g70292624495520 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la05-alternate.jsonld>; rel=\"alternate\"; type=\"application/ld+json\"" . -_:g70292624495520 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350737240 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container may not be @id in 1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep13-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/2000/01/rdf-schema#comment> "validate appropriate values of @container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349849420 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with overriding term direction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di05-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Terms are ignored in @id" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0048-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0048-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/2000/01/rdf-schema#comment> "Values of @id are not expanded as terms" . -_:g70292350225000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350355820 . -_:g70292350225000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definitions with prefix separate from prefix definitions" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0050-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0050-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/2000/01/rdf-schema#comment> "Term definitions using compact IRIs don't inherit the definitions of the prefix" . -_:g70292219280240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219280240 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292350567700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350623380 . -_:g70292350567700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> . -_:g70292618057660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349557600 . -_:g70292618057660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> . -_:g70292351173520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351207220 . -_:g70292351173520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Drop unmapped keys in reverse map" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0065-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0065-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/2000/01/rdf-schema#comment> "Keys that are not mapped to an IRI in a reverse-map are dropped" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Skip property with @reverse if no match" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0034-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0034-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0034-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not use reverse property if no other property matches as normal property" . -_:g70292354631100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349673400 . -_:g70292354631100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623329960 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing deep arrays" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li07-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292350325780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350356260 . -_:g70292350325780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> . -_:g70292618222740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349883500 . -_:g70292618222740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355275640 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879893120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "recursive context inclusion" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A context may not include itself recursively (indirect)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing a context referencing itself indirectly" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871889880 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0087-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0087-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0087-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a named graph with a [@graph, @id, @set] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a named graph using a @graph container with @id and @set" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874661080 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879416820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879468880 . +_:g70146879416820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> . +_:g70146874541080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI does not use expanded term definition in 1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms with an expanded term definition are not used for creating compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870097980 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "processing mode conflict" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/ep02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "processingMode json-ld-1.0 conflicts with @version: 1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/2000/01/rdf-schema#comment> "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871713180 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879068400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879135600 . +_:g70146879068400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> . +_:g70146874449700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874508060 . +_:g70146874449700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0098-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0098-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0098-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @index] container (multiple indexed objects)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879353980 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737165440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736177920 . +_:g70146737165440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> . +_:g70146880217200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874708880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874743540 . +_:g70146874708880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> . +_:g70146874461000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874560600 . +_:g70146874461000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e101-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e101-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872279200 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878400740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735912000 . +_:g70146878400740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0075-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0075-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0075-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact using relative fragment identifier" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting a relative round-trips" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879118540 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds expanded @id to object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875233260 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0002-in.json> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Document loader loads a JSON document." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879387440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146601316760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736525280 . +_:g70146601316760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0099-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0099-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880250620 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875000080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875054240 . +_:g70146875000080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> . +_:g70146870967600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878804220 . +_:g70146870967600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> . +_:g70146876825440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876836240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880039740 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146880039740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875005840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879365880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879416820 . +_:g70146879365880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> . +_:g70146879660460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879890680 . +_:g70146879660460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> . +_:g70146879859260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872268700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880171340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880204080 . +_:g70146880171340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> . +_:g70146874999280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875054360 . +_:g70146874999280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> . +_:g70146880105320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880138220 . +_:g70146880105320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> . +_:g70146872706440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874396000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879255700 . +_:g70146874396000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> . +_:g70146872825520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146601347040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146869789000 . +_:g70146601347040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> . +_:g70146881414600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737229080 . +_:g70146881414600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0032-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0032-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context reordering" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that generated triples do not depend on order of @context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0113-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0113-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset with a IRI named graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic use of creating a named graph using an IRI name" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c019-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context with multiple property scoped terms" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with multiple property scoped terms" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875068860 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872233440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872246980 . +_:g70146872233440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> . +_:g70146871574940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736833680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736882480 . +_:g70146736833680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c018-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c018-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped types resolved against previous context" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped types resolved against previous context" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870961140 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a boolen value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737380600 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146876047680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876081400 . +_:g70146876047680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr10-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple protected and unprotected terms." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/2000/01/rdf-schema#comment> "Simple protected and unprotected terms." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737344120 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e045-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e045-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Top-level value objects are removed" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0045" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er18-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (@id not a string)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr26-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails on redefinition of terms with scoped contexts using different definitions." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/2000/01/rdf-schema#comment> "Fails on redefinition of terms with scoped contexts using different definitions." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875114040 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e115-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Verifies that relative IRIs as properties with @vocab: '' in 1.0 generate an error" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs in 1.0" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881005360 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/tn01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none is illegal in 1.0." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none is illegal in json-ld-1.0." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736622360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di10-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di10-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with i18n literal with direction and language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse i18n datatype without proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879564120 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0016-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context reset" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting @context to null within an embedded object resets back to initial context state" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid set or list object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er41-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid set or list object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid set or list object is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146874676860 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . +_:g70146874676860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874676860 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875016120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875130620 . +_:g70146875016120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0016-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Empty IRI expands to resource location" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding an empty IRI uses the test file location." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Included containing @included" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875457760 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0039-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0039-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using terms in a reverse-maps" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms within @reverse are expanded" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874464520 <https://w3c.github.io/json-ld-api/tests/vocab#expandContext> <https://w3c.github.io/json-ld-api/tests/expand/0077-context.jsonld> . +_:g70146875547560 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875547560 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875547560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @id value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er27-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @id value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @id value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880907940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880942640 . +_:g70146880907940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> . +_:g70146880829600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880875240 . +_:g70146880829600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> . +_:g70146876772920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880942640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880956500 . +_:g70146880942640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> . +_:g70146601318120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875511460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875545860 . +_:g70146875511460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0021-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes in @type" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "Empty frame matches all nodes at top-level, and repeats where embedded (with list content) in json-ld-1.0 mode." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880306620 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p004-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRIs using simple terms ending with gen-delim" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/2000/01/rdf-schema#comment> "All simple terms ending with gen-delim are suitable for compaction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878686140 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li07-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing deep arrays" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875022780 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872022500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874870960 . +_:g70146872022500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> . +_:g70146877169400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880486380 <https://w3c.github.io/json-ld-api/tests/vocab#produceGeneralizedRdf> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880486380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146872532120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875625080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875659720 . +_:g70146875625080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> . +_:g70146737391340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737422400 . +_:g70146737391340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> . +_:g70146875873520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876260620 <https://w3c.github.io/json-ld-api/tests/vocab#httpStatus> "301"^^<http://www.w3.org/2001/XMLSchema#integer> . +_:g70146876260620 <https://w3c.github.io/json-ld-api/tests/vocab#redirectTo> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr36-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr36-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877018340 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875983120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876051380 . +_:g70146875983120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0004-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Literal with language tag" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a plain literal is created with a language tag." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871319960 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146871319960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di04-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with term direction" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736803640 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880700080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880713560 . +_:g70146880700080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> . +_:g70146876675920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876689460 . +_:g70146876675920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> . +_:g70146880417280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "t0008 as interpreted for 1.1. " . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875195640 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880054780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871477880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871515320 . +_:g70146871477880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf03-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid object IRIs are rejected" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872793940 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146735712860 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146735712860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879960440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0018-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frag ID expands relative resource location" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding a fragment uses the test file location." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871871300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871971680 . +_:g70146871871300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> . +_:g70146875458280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871384340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880186660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0012-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0012-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Array frame" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple values for @type in frame match different nodes having one or the other type. With @embed false, nodes are serialized as multiple array values of @graph." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0012-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876364680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876377020 . +_:g70146876364680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> . +_:g70146874706140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879237280 . +_:g70146874706140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> . +_:g70146601328820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736489040 . +_:g70146601328820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> . +_:g70146880577700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874988240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874381520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874678040 . +_:g70146874381520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> . +_:g70146871857440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871907220 . +_:g70146871857440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/p003-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/p003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.1, 1.0]" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872479140 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875607740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872871760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872922580 . +_:g70146872871760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Arrays of nested values" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875283680 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874760480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879202140 . +_:g70146874760480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> . +_:g70146870321900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "list of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er24-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List of lists (from array)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a list of lists is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875399820 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146878916800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878966560 . +_:g70146878916800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0125-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0125-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term as @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that @vocab defined as a term expands properly" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872000700 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0084-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0084-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0084-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a simple graph with a [@graph, @id] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a simple graph using a @graph container with @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874559340 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875150180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/l001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/l001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language map with null value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/2000/01/rdf-schema#comment> "A language map may have a null value, which is ignored" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879203760 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878998920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871743140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871756040 . +_:g70146871743140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e077-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e077-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expandContext option" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of the expandContext option to expand the input document" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875966060 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875724500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875772740 . +_:g70146875724500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> . +_:g70146735912000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736020000 . +_:g70146735912000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> . +_:g70146735618300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736018960 . +_:g70146735618300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> . +_:g70146876440920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876492920 . +_:g70146876440920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> . +_:g70146879273260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878800340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871115460 . +_:g70146878800340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> . +_:g70146878964240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879132820 . +_:g70146878964240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js12-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with value canonicalization" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with value canonicalization." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875016680 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878702440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736338180 . +_:g70146878702440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er15-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (@reverse not a string)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146875939500 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/li01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/li01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing an deep list" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of lists" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875556160 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875119840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879535080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879569860 . +_:g70146879535080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> . +_:g70146876004380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876036220 . +_:g70146876004380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> . +_:g70146879469060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879663980 . +_:g70146879469060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> . +_:g70146874525420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0086-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0086-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0086-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a simple graph with a [@graph, @id, @set] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a simple graph using a @graph container with @id and @set" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874627160 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874531080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879208280 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . +_:g70146879208280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871196800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874821260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877130200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877168280 . +_:g70146877130200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> . +_:g70146873154020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735984840 . +_:g70146873154020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr33-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails if trying to declare a keyword alias as prefix." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/2000/01/rdf-schema#comment> "Keyword aliases can not be used as prefixes." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876923320 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146736611100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736659340 . +_:g70146736611100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0102-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0102-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0102-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @index] container (multiple indexes and objects)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879464220 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875446580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736177940 . +_:g70146875446580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> . +_:g70146871853220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872087760 . +_:g70146871853220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> . +_:g70146876678060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879811960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879845720 . +_:g70146879811960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> . +_:g70146871942680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872000600 . +_:g70146871942680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> . +_:g70146736952420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736980080 . +_:g70146736952420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> . +_:g70146875755400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875839780 . +_:g70146875755400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0019-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0019-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "use rdf:type flag set to false" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting useRdfType to true causes an rdf:type predicate to be treated like a normal property, not @type" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737036360 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li05-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an array" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871920300 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874884720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874986860 . +_:g70146874884720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr38-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr38-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (@reverse)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877081520 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880732420 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a string value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/2000/01/rdf-schema#comment> "container: @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737346280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872070200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736339880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871013440 . +_:g70146736339880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> . +_:g70146871350580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871379200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871429840 . +_:g70146871379200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> . +_:g70146876557680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876595580 . +_:g70146876557680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m014-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map with alias @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737018280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881320360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876938020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876951560 . +_:g70146876938020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect a term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/2000/01/rdf-schema#comment> "Check error when overriding a protected term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881289320 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146876118540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876183400 . +_:g70146876118540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> . +_:g70146876769180 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146876769180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879744280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879778160 . +_:g70146879744280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi01-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes property value, instead of property (value)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878998920 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "does not allow a keyword other than @nest for the value of @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737458720 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146871525380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879503960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146735616100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146869841320 . +_:g70146735616100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p006-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI uses term with definition including @prefix: true" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanded term definition may set prefix explicitly in 1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878822660 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g008-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g008-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A tangle of nastiness" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g008-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737523580 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737166100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737179960 . +_:g70146737166100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> . +_:g70146876590400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876625060 . +_:g70146876590400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> . +_:g70146870911160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878790860 . +_:g70146870911160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> . +_:g70146875494200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0128-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0128-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (8)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737001600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875921060 . +_:g70146737001600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> . +_:g70146871608500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0044-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0044-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches some @language in value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0044-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876333400 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736659340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . +_:g70146736659340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> . +_:g70146881154240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881185420 . +_:g70146881154240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c005-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880011000 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872609760 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi08-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index expands to property value, instead of @index (node)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881138200 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874855100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880073840 . +_:g70146874855100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> . +_:g70146737019300 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . +_:g70146737019300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737019300 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146876850840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so11-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override protected terms in sourced context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736542960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737751140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737789200 . +_:g70146737751140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> . +_:g70146873039980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146873104800 . +_:g70146873039980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> . +_:g70146881071060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881121140 . +_:g70146881071060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> . +_:g70146736557000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876000620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876082520 . +_:g70146876000620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid JSON literal" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js09-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid JSON literal (invalid structure)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors must generate an error when deserializing an invalid JSON literal." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871771560 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e003-in.html#second> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands targeted JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880415520 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875772920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875823040 . +_:g70146875772920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand string using default and term directions" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Strings are coerced to have @direction based on default and term direction." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880108400 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878736160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871031560 . +_:g70146878736160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> . +_:g70146876741280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876970700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877002400 . +_:g70146876970700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> . +_:g70146881171180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881220420 . +_:g70146881171180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> . +_:g70146870801860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878756380 . +_:g70146870801860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> . +_:g70146875540080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877396080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid typed value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0123-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Value objects including invalid literal datatype IRIs are rejected" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors MUST validate datatype IRIs." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871941020 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146878902220 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146878902220 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . +_:g70146878902220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872073840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874884720 . +_:g70146872073840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> . +_:g70146872050460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872106140 . +_:g70146872050460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e128-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e128-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Two scoped context may include a shared context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881384340 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js19-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js19-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with aliased @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with aliased @type." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875432920 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876000440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876037400 . +_:g70146876000440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> . +_:g70146880610840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737047760 . +_:g70146880610840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0058-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0058-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frame matching with no matching value in list" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists match on any matching value." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0058-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872465100 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871174100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0018-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "override default @language" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "override default @language in terms; only language-tag strings" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e015-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if end comment missing" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with unballanced comments" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737099860 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146878822660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874527380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874558000 . +_:g70146874527380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> . +_:g70146878610700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736334400 . +_:g70146878610700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> . +_:g70146872106140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874873300 . +_:g70146872106140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object not having an @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874625420 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875114040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874775660 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146874775660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871115460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878996580 . +_:g70146871115460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> . +_:g70146877395960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737884540 . +_:g70146877395960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> . +_:g70146879164260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871164760 . +_:g70146879164260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> . +_:g70146875000880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875228320 . +_:g70146875000880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> . +_:g70146876424660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876480360 . +_:g70146876424660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> . +_:g70146874376420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0095-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0095-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0095-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative propererty IRIs with @vocab: ''" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex use cases for relative IRI compaction or properties" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js23-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js23-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (empty array)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (empty array)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874624160 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146870880780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878774940 . +_:g70146870880780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0100-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0100-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0100-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @id] container (multiple indexed objects)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879421700 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736366060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870995060 . +_:g70146736366060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> . +_:g70146735619840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736004560 . +_:g70146735619840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> . +_:g70146871940980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871953700 . +_:g70146871940980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m014-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map with alias @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880239220 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875687160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid base IRI" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid base IRI" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @base" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879516440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879650900 . +_:g70146879516440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> . +_:g70146875512520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875591240 . +_:g70146875512520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> . +_:g70146875476640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875511460 . +_:g70146875476640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @propagate value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c030-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate must be boolean valued" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/2000/01/rdf-schema#comment> "@propagate must be boolean valued" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875873520 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0059-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0059-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reset @vocab by setting it to null" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting @vocab to null removes a previous definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876036220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876084620 . +_:g70146876036220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> . +_:g70146879004300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879062280 . +_:g70146879004300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_2_squotes" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with 2 squotes \"x''y\" from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e015-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "collapse set of sets, keep empty lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0015" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146735595900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871593820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871623940 . +_:g70146871593820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/missing-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Non-existant file (404)" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a non-existant file raises loading document failed error" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146737478860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737488660 . +_:g70146737478860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> . +_:g70146871971180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871953700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871991440 . +_:g70146871953700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> . +_:g70146875952820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876004380 . +_:g70146875952820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> . +_:g70146880317380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880402920 . +_:g70146880317380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> . +_:g70146876393140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876424660 . +_:g70146876393140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> . +_:g70146736737420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736774660 . +_:g70146736737420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> . +_:g70146872099560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737818180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737849720 . +_:g70146737818180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> . +_:g70146880159080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880189860 . +_:g70146880159080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr26-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails on redefinition of terms with scoped contexts using different definitions." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/2000/01/rdf-schema#comment> "Fails on redefinition of terms with scoped contexts using different definitions." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876678060 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872106020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874875500 . +_:g70146872106020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> . +_:g70146872168660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872181640 . +_:g70146872168660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> . +_:g70146736537680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736611100 . +_:g70146736537680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er28-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid type value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872876520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . +_:g70146872876520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er22-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid language mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146873135780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146873135780 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146876067360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875397220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875409600 . +_:g70146875397220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> . +_:g70146737690360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737740380 . +_:g70146737690360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> . +_:g70146872151000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872185660 . +_:g70146872151000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> . +_:g70146872415720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881003840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881059580 . +_:g70146881003840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> . +_:g70146881003800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e121-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e121-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some values of @reverse with @, allow others." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881188580 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880971020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880110340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872019340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872089040 . +_:g70146872019340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON-LD document" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Document loader loads a JSON-LD document." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879650560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875643940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/ec01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid keyword in term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid term definition is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737243280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146601385060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876693660 . +_:g70146601385060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> . +_:g70146880793500 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880793500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879677060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879710400 . +_:g70146879677060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> . +_:g70146874658700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e014-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@set of @value objects with keyword aliases" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0014" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880450680 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737313000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880829220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0013-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "flatten already expanded" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening an expanded/flattened document maintains input document" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871127580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879302240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872857020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m016-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id index map with aliased @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id with @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875968080 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874381100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874412020 . +_:g70146874381100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e065-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e065-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keys that are not mapped to an IRI in a reverse-map are dropped" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0065" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881352000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e080-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e080-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @set] container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of [@graph, @set] containers" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876116320 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871413340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871467900 . +_:g70146871413340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> . +_:g70146875966060 <https://w3c.github.io/json-ld-api/tests/vocab#expandContext> <https://w3c.github.io/json-ld-api/tests/toRdf/e077-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e017-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if uncommented script is not valid JSON" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML which is invalid JSON" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878424620 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146876639560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e081-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e081-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/2000/01/rdf-schema#comment> "Don't double-expand an already expanded graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876162380 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881304900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Load JSON-LD through 307 redirect" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a document with a redirect should use the redirected URL as document base" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876349220 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872284560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872297900 . +_:g70146872284560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e079-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e079-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand @graph container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876067360 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876474160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e046-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e046-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Free-floating nodes are removed" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0046" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di05-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language mapwith overriding term direction" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736856540 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875475940 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875475940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e102-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e102-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @graph container if value is a graph (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872313920 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872548900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0027-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0027-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple named graph (Wikidata)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Using @graph with other keys places triples in a named graph." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880644440 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880644440 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la05-alternate.jsonld>; rel=\"alternate\"; type=\"application/ld+json\"" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0051-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0051-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacting values of @preserve" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/2000/01/rdf-schema#comment> "When compacting the value of a property using @preserve, use the term definition for term to properly compact the value of @preserve." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0051-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876578340 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid term definition is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872001740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874921900 . +_:g70146872001740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0061-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0061-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Matching embedded nodes with @default" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that embedded nodes match with @default and a wildcard @id." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0061-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880977820 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e112-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e112-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base" . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . -_:g70292622461380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622498920 . -_:g70292622461380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> . -_:g70292352240060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351196020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351307880 . -_:g70292351196020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test creation of multiple types" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0026-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0026-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that @type with an array of types creates multiple types." . -_:g70292351780060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355714440 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear active context with protected terms from an embedded context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/2000/01/rdf-schema#comment> "The Active context be set to null from an embedded context." . -_:g70292350259700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623924660 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index, @set] container" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e083-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e083-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index and @set" . -_:g70292625595080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625608460 . -_:g70292625595080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> . -_:g70292355910400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355944960 . -_:g70292355910400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> . -_:g70292623526080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623556800 . -_:g70292623526080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> . -_:g70292352402540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352437020 . -_:g70292352402540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352917280 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Library framing example" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0001-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0001-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0001-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic example used in playgrond and spec examples." . -_:g70292623154040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350638040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351555420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351619440 . -_:g70292351555420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> . -_:g70292352584180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357910800 . -_:g70292352584180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> . -_:g70292351468480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351670920 . -_:g70292351468480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> . -_:g70292625391820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624692780 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c005-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "flatten value with default language" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0022-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0022-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening with a default language applies that language to string values" . -_:g70292352584520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352652080 . -_:g70292352584520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> . -_:g70292353223280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353257420 . -_:g70292353223280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> . -_:g70292622511720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622639900 . -_:g70292622511720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> . -_:g70292623530600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . -_:g70292623530600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property (invalid @container)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er17-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid reverse property is found" . -_:g70292352762880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352819020 . -_:g70292352762880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623346480 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches match none @language in value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0041-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0041-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0041-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618310120 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c002-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -_:g70292352912700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352944120 . -_:g70292352912700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355629960 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term as @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (5)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0125-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e125-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e125-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0125-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that @vocab defined as a term expands properly" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -_:g70292350572900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350634520 . -_:g70292350572900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> . -_:g70292351913280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350096700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357956540 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property and value with different terms mapping to the same expanded property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c003-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -_:g70292624364740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292358185240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358185240 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container: @set with multiple values" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0027-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0027-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0027-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Fall back to term with @set container if term with language map is defined" . -_:g70292349557480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349670060 . -_:g70292349557480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> . -_:g70292624641400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352488600 . -_:g70292624641400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> . -_:g70292355842120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355876260 . -_:g70292355842120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622446580 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -_:g70292352501220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352552840 . -_:g70292352501220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351386940 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "single @id match" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0032-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0032-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0032-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Match on a specific node with frame uses @id." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351735240 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a numeric value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -_:g70292625637760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625637760 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292351718600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351767560 . -_:g70292351718600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> . -_:g70292355745420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624788620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624788620 <https://w3c.github.io/json-ld-api/tests/vocab#ordered> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292357715600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357749720 . -_:g70292357715600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> . -_:g70292349917300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350012200 . -_:g70292349917300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> . -_:g70292350746980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350918140 . -_:g70292350746980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> . -_:g70292219176700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219209200 . -_:g70292219176700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> . -_:g70292349753780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type mapping (not absolute IRI)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er13-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . -_:g70292623054100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349753540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354994660 . -_:g70292349753540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624294640 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A nest of arrays" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n007-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -_:g70292623232280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623265460 . -_:g70292623232280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> . -_:g70292356075040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625360360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355044500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357749720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357760060 . -_:g70292357749720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> . -_:g70292624835460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352683080 . -_:g70292624835460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> . -_:g70292357894820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357939940 . -_:g70292357894820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> . -_:g70292352652080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618306240 . -_:g70292352652080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> . -_:g70292622381520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622411180 . -_:g70292622381520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351320600 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact already expanded JSON literal" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js08-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js08-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting JSON literal does not expand terms inside json." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351011860 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped base" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c015-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped base" . -_:g70292625328680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625366580 . -_:g70292625328680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> . -_:g70292622447960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622492300 . -_:g70292622447960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> . -_:g70292623562740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623562740 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292623562740 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . -_:g70292623644380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623707880 . -_:g70292623644380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> . -_:g70292080748320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292080799520 . -_:g70292080748320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> . -_:g70292353046500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219130520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219199420 . -_:g70292219130520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> . -_:g70292350440280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351934080 . -_:g70292350440280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> . -_:g70292351337600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624332100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624393920 . -_:g70292624332100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355698620 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A scoped context may include itself recursively (indirect)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e127-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e127-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly" . -_:g70292625003020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625016740 . -_:g70292625003020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> . -_:g70292622709920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622842320 . -_:g70292622709920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> . -_:g70292352979320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353029060 . -_:g70292352979320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base without trailing slash, with path" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0130-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0130-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986" . -_:g70292355875640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350430040 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "t0008 as interpreted for 1.1. " . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292623282780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623379700 . -_:g70292623282780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351041740 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0101-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0101-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . -_:g70292355241200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351649600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351768560 . -_:g70292351649600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349652400 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid term as relative IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880922460 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871093020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875233260 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . +_:g70146875233260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871679520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871692880 . +_:g70146871679520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> . +_:g70146875743380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875839660 . +_:g70146875743380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand string using default and term directions and languages" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Strings are coerced to have @direction based on default and term direction." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880137540 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879118540 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879118540 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . +_:g70146871098760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871109820 . +_:g70146871098760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> . +_:g70146875186600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_LINE_FEED" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with LINE FEED from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146880877620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0046-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0046-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0046-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple objects without @context use @graph" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/2000/01/rdf-schema#comment> "Wrap top-level array into @graph even if no context is passed" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875218100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875264400 . +_:g70146875218100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> . +_:g70146874769520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874802980 . +_:g70146874769520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> . +_:g70146881139200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881173920 . +_:g70146881139200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> . +_:g70146871287480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871317680 . +_:g70146871287480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> . +_:g70146879300560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879990560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0009-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0009-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compact @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Value with @id is compacted to string if property cast to @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146870931980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878638760 . +_:g70146870931980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0089-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0089-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "empty @base applied to the base option" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of an empty @base is applied to the base option" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879694980 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0105-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0105-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph (mixed graph and object)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871268820 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879013060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879063300 . +_:g70146879013060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> . +_:g70146601335280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736456060 . +_:g70146601335280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0065-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0065-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0065-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language-tagged and indexed strings with language-map" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/2000/01/rdf-schema#comment> "Language-tagged and indexed strings don't compact to language-map" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p007-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI not used as prefix" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms including a colon are excluded from being used as a prefix" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871093020 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0007-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "add context" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "External context is added to the compacted document" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879339760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878805020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736231300 . +_:g70146878805020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> . +_:g70146871158300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878400740 . +_:g70146871158300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0038a-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0038-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0038-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Index map round-tripping" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex round-tripping use case from Drupal" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146735596760 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880418380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880431940 . +_:g70146880418380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> . +_:g70146872053460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875000880 . +_:g70146872053460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> . +_:g70146876478040 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> "application/xhtml+xml" . +_:g70146876478040 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146876478040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872037260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874891200 . +_:g70146872037260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r017-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if uncommented script is not valid JSON" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML which is invalid JSON" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146601312820 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid keyword alias" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er19-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid keyword alias (@context)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid keyword alias is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di04-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: null with compound literal with direction and language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse compound literal without proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871075260 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "does not allow @nest with @reverse" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737493060 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146876709420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736669220 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146736669220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876413360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876440920 . +_:g70146876413360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> . +_:g70146736637700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736720600 . +_:g70146736637700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e035-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e035-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps with @vocab, default language, and colliding property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0035" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872185660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876545680 . +_:g70146872185660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0043-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0043-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches some @type in value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0043-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876211480 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872957260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872990020 . +_:g70146872957260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e044-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e044-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ensure index maps use language mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0044" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c026-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c026-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874776580 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876267860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876330720 . +_:g70146876267860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a list object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872707740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi09-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index appends to property value, instead of @index (node)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881169780 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880299160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880365220 . +_:g70146880299160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e022-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e022-in.html#second> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands targeted JSON-LD script element with fragment and HTML base" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874542960 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0103-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0103-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @graph container if value is a graph (multiple graphs)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/2000/01/rdf-schema#comment> "Creates a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880382060 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872416080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871679380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871838800 . +_:g70146871679380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> . +_:g70146737685640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737724060 . +_:g70146737685640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> . +_:g70146871578980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871629780 . +_:g70146871578980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> . +_:g70146871713180 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146871713180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so06-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context with @import" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects (with @import)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877376540 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876246580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876314840 . +_:g70146876246580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> . +_:g70146875283680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0013-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand already expanded" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand does not mess up already expanded document" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e018-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "override default @language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0018" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0017-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0017-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Non-flat input" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Framing flattens expanded input, allowing for deeply embedded input to be re-framed." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0017-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874608160 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c011-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "orders @type terms when applying scoped contexts" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871395740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi10-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index does not output property for @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879305460 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872742400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872742400 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875572960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877003220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877017180 . +_:g70146877003220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/li02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/li02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of lists" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875612320 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874590900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874722420 . +_:g70146874590900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> . +_:g70146871689840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_ascii_boundaries" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/2000/01/rdf-schema#comment> "literal_ascii_boundaries '\\x00\\x26\\x28...' from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e020-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e020-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to HTML base" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878902220 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871629840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146880610400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880648440 . +_:g70146880610400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> . +_:g70146876851880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876882960 . +_:g70146876851880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a boolen value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871461640 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871229920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874429280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874579340 . +_:g70146874429280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0126-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0126-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A scoped context may include itself recursively (direct)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872055140 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876923320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0029-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0029-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "named graph with embedded named graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that named graphs containing named graphs flatten to single level of graph naming." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875490880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875558660 . +_:g70146875490880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> . +_:g70146737390400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872544500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872579160 . +_:g70146872544500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> . +_:g70146877097240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877128820 . +_:g70146877097240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> . +_:g70146870537120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872427360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880829600 . +_:g70146872427360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> . +_:g70146879580880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876463200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876490680 . +_:g70146876463200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> . +_:g70146872860100 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term with protected scoped context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/2000/01/rdf-schema#comment> "A scoped context can protect terms." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874838400 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879861260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt14-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_FORM_FEED" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with FORM FEED from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n005-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @list" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879434880 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880024300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879698840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m021-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m021-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m021-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "node reference compacts to string value of type map with @type: @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874573840 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871544360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879306460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879340380 . +_:g70146879306460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n003-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nests using alias of @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879339760 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879148660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871175200 . +_:g70146879148660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> . +_:g70146736803640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874656860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874690760 . +_:g70146874656860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> . +_:g70146870999980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871031100 . +_:g70146870999980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> . +_:g70146880529720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880580980 . +_:g70146880529720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te006> . +_:g70146873037280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146873037280 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146874807260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/ec01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid keyword in term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid term definition is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871285360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0041-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0041-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@language: null resets the default language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di06-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with overriding null direction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874543360 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880125240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880221420 . +_:g70146880125240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> . +_:g70146879924660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879979320 . +_:g70146879924660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> . +_:g70146874757740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879202900 . +_:g70146874757740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> . +_:g70146871223820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146869761100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870900120 . +_:g70146869761100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> . +_:g70146872000600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146332848020 . +_:g70146872000600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> . +_:g70146875082820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875179600 . +_:g70146875082820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> . +_:g70146871013440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871076820 . +_:g70146871013440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> . +_:g70146878686140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0089-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0089-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0089-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language map term selection with complications" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/2000/01/rdf-schema#comment> "Test appropriate property use given language maps with @vocab, a default language, no language, and competing terms" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146870476340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870835880 . +_:g70146870476340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> . +_:g70146872628740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879202140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879286520 . +_:g70146879202140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> . +_:g70146877276620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877332500 . +_:g70146877276620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (object)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (object)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871958160 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880255260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880317380 . +_:g70146880255260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> . +_:g70146880044420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0033-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0033-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id reordering" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that generated triples do not depend on order of @id." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146877376540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0025-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0025-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Problematic IRI expansion tests" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding different kinds of terms and Compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0016-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0016-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @type in ducktype filter" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Match if node has a @type property and frame has a @type property containing only an empty dictionary." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0016-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736409280 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880824820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880863160 . +_:g70146880824820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> . +_:g70146881059840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881069900 . +_:g70146881059840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er43-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition with @id: @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding term mapping to @type uses @type syntax now illegal" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877293080 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146876179420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876234400 . +_:g70146876179420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0028-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0028-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "embed matched frames with @reverse" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> "If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0028-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875448220 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871987780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872018660 . +_:g70146871987780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er34-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property value (in @reverse)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875612320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881107020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875802860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736525580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736560280 . +_:g70146736525580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> . +_:g70146875494000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875627460 . +_:g70146875494000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @index is not a string for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879047700 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880138220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880171340 . +_:g70146880138220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> . +_:g70146737491940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737541020 . +_:g70146737491940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> . +_:g70146879305460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid base direction" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@direction must be one of ltr or rtl" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Generate an error if @direction has illegal value." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880387680 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not protect term with @protected: false" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context does not protect terms with @protected: false." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881383000 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872938020 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop null and unmapped properties" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that null values and unmapped properties are removed from expanded output" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Set a term to not be protected" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/2000/01/rdf-schema#comment> "A term with @protected: false is not protected." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879663720 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879148560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "date type-coercion" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand strings to expanded value with @type: xsd:dateTime" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879383620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879665660 . +_:g70146879383620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0033-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0033-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple @id match" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "Match on a specific node with frame uses @id with an array of IRIs." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0033-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736478780 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e037-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e037-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding @reverse" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0037" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872378000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872427360 . +_:g70146872378000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi06-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index expands to property value, instead of @index (value)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881075460 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737375520 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875768880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874838400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874939160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737179960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737193820 . +_:g70146737179960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0007-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Tests 'a' generates rdf:type and object is implicit IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that 'a' is an alias for rdf:type, and the object is created as an IRI." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737676100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880431940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880470040 . +_:g70146880431940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> . +_:g70146879991580 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m018-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference with @type: @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876103260 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879029380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871142060 . +_:g70146879029380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> . +_:g70146737332080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737341880 . +_:g70146737332080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> . +_:g70146871269660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880863160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880873280 . +_:g70146880863160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> . +_:g70146877168280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877181820 . +_:g70146877168280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> . +_:g70146876035680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876051380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876118540 . +_:g70146876051380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c017-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped contexts are properly reverted" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped contexts are property reverted" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870980180 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e003-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop null and unmapped properties" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/2000/01/rdf-schema#comment> "Properties mapped to null or which are never mapped are dropped (from expand-0003)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879710560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879710560 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875117040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875148800 . +_:g70146875117040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e085-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e085-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876411500 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871479640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871528720 . +_:g70146871479640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> . +_:g70146737803080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737816580 . +_:g70146737803080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> . +_:g70146736675880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties mapping to @included are folded together" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875447120 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146601352080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880629900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880680980 . +_:g70146880629900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te010> . +_:g70146735674140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875131720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875169100 . +_:g70146875131720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> . +_:g70146879894360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879924660 . +_:g70146879894360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> . +_:g70146876544680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876557680 . +_:g70146876544680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> . +_:g70146880055440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880122720 . +_:g70146880055440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> . +_:g70146871658740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879808640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874839980 . +_:g70146879808640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> . +_:g70146875211820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880386700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an array" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880285500 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880365220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871401040 . +_:g70146880365220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> . +_:g70146874770420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0102-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0102-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @graph container if value is a graph (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/2000/01/rdf-schema#comment> "Creates a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880349420 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874842640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0116-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Verifies that relative IRIs as properties with relative @vocab in 1.0 generate an error" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative property IRIs with relative @vocab in 1.0" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871659960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146874607800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874695580 . +_:g70146874607800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> . +_:g70146879874860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c022-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c022-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c022-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878921820 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li10-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing mixed list values" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875460980 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0045-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0045-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Top-level value objects" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding top-level value objects causes them to be removed" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0106-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0106-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0106-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not compact @type with @container: @set to an array using an alias of @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensures that a single @type value is not represented as an array in 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879599280 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "A value of a property with @type: @id coercion expands to a node reference" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878938700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878964460 . +_:g70146878938700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c024-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c024-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + property-scoped + values evaluates against previous context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + property-scoped + values evaluates against previous context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874593840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737525660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "list of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er32-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List of lists (from array)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a list of lists is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879099980 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879147740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871142580 . +_:g70146879147740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> . +_:g70146871497660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871528280 . +_:g70146871497660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> . +_:g70146879598920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879765800 . +_:g70146879598920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> . +_:g70146875349920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js18-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js18-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (null)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (null)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875363940 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0009-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0009-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List conversion with IRI nodes" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Preserve IRI list nodes (i.e., not blank nodes) when converting to @list" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0056-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0056-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0056-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prefer @type: @vocab over @type: @id for terms" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting IRI value of property with @type: @vocab can use term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js09-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with string canonicalization" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with string canonicalization." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146332848140 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879630140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879667680 . +_:g70146879630140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a string" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872663500 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146871223160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880549000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880583280 . +_:g70146880549000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid scoped context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c033-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Unused context with an embedded context error." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/2000/01/rdf-schema#comment> "An unused context with an embedded context should still be checked." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736508680 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146736478780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0012-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0012-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with cycles" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Detect lists containing cycles and do not convert them to @list." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737462820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737297740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737332080 . +_:g70146737297740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> . +_:g70146877018340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0091-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0091-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "relative and absolute @base overrides base option and document location" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of a relative and absolute @base overrides base option and document location" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879991580 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881103160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m006-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes using compacted @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879450720 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr23-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr23-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected alias term with same definition." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected alias term with same definition." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872099560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879078940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js07-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (array)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (array)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872003740 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880616320 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880616320 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880616320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876628400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736980760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737016940 . +_:g70146736980760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr21-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail with mix of protected and unprotected terms with type+null." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail with mix of protected and unprotected terms with type+null." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737739220 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875839780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601286300 . +_:g70146875839780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> . +_:g70146871563840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871645900 . +_:g70146871563840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> . +_:g70146871744120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871789720 . +_:g70146871744120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing @list" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879453520 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr31-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected keyword aliases cannot be overridden." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876836240 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875540140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875572280 . +_:g70146875540140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> . +_:g70146879942860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735566400 . +_:g70146879942860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr29-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr29-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not expand a Compact IRI using a non-prefix term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion of Compact IRIs considers if the term can be used as a prefix." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875393340 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er48-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid term as relative IRI" . <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that a relative IRI cannot be used as a term." . -_:g70292622562800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623196380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623363900 . -_:g70292623196380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624920800 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge one graph and deep preserve another (prune bnodes)" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/p049-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used within a property value frames embedded values from a named graph." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350605240 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with [@graph, @set] container to output without [@graph, @set] container with compactArrays unset" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0093-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0093-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0093-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output with compactArrays unset" . -_:g70292351405700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351468800 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "node reference compacts to string value of type map with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m022-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m022-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m022-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -_:g70292624462780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624525480 . -_:g70292624462780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creation of a list with single element" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0014-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0014-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that @list generates a list." . -_:g70292353155340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353189500 . -_:g70292353155340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> . -_:g70292357906920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357945220 . -_:g70292357906920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding @index" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0036-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0036-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps for terms defined with @container: @index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352767700 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords may not be redefined in 1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er42-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623284900 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an empty array" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292352144660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352190320 . -_:g70292352144660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> . -_:g70292354385160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352095480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352108560 . -_:g70292352095480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> . -_:g70292351210600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351422300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351098840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622482920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622580260 . -_:g70292622482920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> . -_:g70292622315880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622434080 . -_:g70292622315880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> . -_:g70292351011220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351261020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351868740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351569940 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to @nest for property with @nest" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n001-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round tripping of lists that contain just IRIs" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0049-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0049-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0049-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/2000/01/rdf-schema#comment> "List compaction without @container: @list still uses strings if @type: @id" . -_:g70292622362480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352176340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352225980 . -_:g70292352176340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618218820 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @index" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n006-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350820080 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0099-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0099-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . -_:g70292351604580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351704460 . -_:g70292351604580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622591740 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (null)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js18-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js18-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (null)." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622986440 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr36-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr36-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350540220 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with @graph container to output without @graph container with compactArrays unset" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0091-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0091-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0091-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output with compactArrays unset" . -_:g70292351468800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350864920 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI does not use simple term that does not end with a gen-delim" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p003-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms not ending with a gen-delim are not used for creating compact IRIs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351850740 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "does not allow a keyword other than @nest for the value of @nest" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350685820 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container may not be an array in 1.0" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep12-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/2000/01/rdf-schema#comment> "validate appropriate values of @container" . -_:g70292622724940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622737720 . -_:g70292622724940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keys that are not mapped to an IRI in a reverse-map are dropped" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e065-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e065-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0065" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Overwrite document base with @base and reset it again" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0060-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0060-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting @base to an IRI and then resetting it to nil" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (relative IRI in @type)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er23-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354894340 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c026-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c026-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c026-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353192880 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "input has multiple types" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0007-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0007-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0007-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "If property is a keyword, processors add property and objects to output." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357629780 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand list values with @direction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di03-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/2000/01/rdf-schema#comment> "List values where the term has @direction are used in expansion." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625574440 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected terms and property-scoped contexts" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr40-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr40-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/2000/01/rdf-schema#comment> "Check overriding of protected term from property-scoped context." . -_:g70292356022820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356057380 . -_:g70292356022820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358153740 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: null with compound literal with direction and language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di04-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di04-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse compound literal without proper option." . -_:g70292355684480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355718680 . -_:g70292355684480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624067680 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Load JSON-LD through 303 redirect" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a document with a redirect should use the redirected URL as document base" . -_:g70292355776800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623810120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352502040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352540340 . -_:g70292352502040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> . -_:g70292618270680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @vocab with with type-coercion" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0033-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0033-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that terms can be defined using @vocab" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias keywords" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Aliased keywords expand in resulting document" . -_:g70292352452280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292356027280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624822560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624852860 . -_:g70292624822560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355683360 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not protect term with @protected: false" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context does not protect terms with @protected: false." . -_:g70292352077940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355353480 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index expands to property value, instead of @index (value)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi06-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292625738180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625770740 . -_:g70292625738180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> . -_:g70292352140740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352262100 . -_:g70292352140740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624788620 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed: @once only embeds first value with node reference" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0060-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0060-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0060-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that within a matched node and @embed: @first, by only the first reference will be embedded." . -_:g70292357584260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357644860 . -_:g70292357584260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623529440 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "excludes non-matched values in value pattern" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0045-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0045-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0045-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . -_:g70292624376620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624462780 . -_:g70292624376620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355024020 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not protect term with @protected: false" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context does not protect terms with @protected: false." . -_:g70292624576320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624589760 . -_:g70292624576320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> . -_:g70292352684360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Empty string as identifier" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0046-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0046-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/2000/01/rdf-schema#comment> "Usage of empty strings in identifiers needs special care when constructing the node map." . -_:g70292350634520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350718200 . -_:g70292350634520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351291000 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (array)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js07-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js07-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (array)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "CompoundLiteral" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623694280 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with direction and no language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di11-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/2000/01/rdf-schema#comment> "Generates i18n datatype from literal with direction with option." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352370140 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + property-scoped + values evaluates against previous context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c024-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c024-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + property-scoped + values evaluates against previous context" . -_:g70292351180120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624562500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624576320 . -_:g70292624562500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625391820 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a non-keyword term starting with '@' (with @vocab)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr35-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr35-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -_:g70292357746300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623547800 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none expands strings as value objects" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/tn02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/tn02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none leaves inputs other than strings alone" . -_:g70292618221240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624738180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624776500 . -_:g70292624738180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> . -_:g70292352354300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352354300 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292080753560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . -_:g70292080753560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> . -_:g70292622301440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622462280 . -_:g70292622301440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355549100 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some IRIs when that start with @ when expanding." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874842640 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879214460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879273240 . +_:g70146879214460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> . +_:g70146737593100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737602920 . +_:g70146737593100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0037-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0037-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches wildcard @value in value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0037-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736869600 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c021-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c021-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value mix" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value mix" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875298380 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m009-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874475680 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0034-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0034-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties expanding to the same IRI" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871804260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871233760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871398280 . +_:g70146871233760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> . +_:g70146871414540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871543840 . +_:g70146871414540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0027-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0027-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Duplicate values in @list and @set" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Duplicate values in @list and @set are not merged" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736587960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880365100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871379260 . +_:g70146880365100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> . +_:g70146879274660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879338500 . +_:g70146879274660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> . +_:g70146737424280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0124-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0124-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compact IRI as @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that @vocab defined as a compact IRI expands properly" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871970840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881349680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Attempt to redefine term in other protected context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected term cannot redefine another protected term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737313000 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146881075460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737233480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0048-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0048-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge one graph and preserve another" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used within a property value frames embedded values from a named graph." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0048-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146601352080 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr27-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr27-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected alias term with same definition modulo protected flag." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected alias term with same definition modulo protected flag." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876709420 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e063-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e063-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand a reverse property with an index-container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0063" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871725380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871789520 . +_:g70146871725380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r001-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r001-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transforms embedded JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871741480 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880402920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871297500 . +_:g70146880402920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/p004-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/p004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.1, 1.0, 1.1]" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880841820 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881104540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881139200 . +_:g70146881104540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> . +_:g70146875940200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875983120 . +_:g70146875940200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type mapping (not absolute IRI)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872499680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872509860 . +_:g70146872499680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> . +_:g70146875399820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146875081580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875265500 . +_:g70146875081580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> . +_:g70146737690020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr28-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails if trying to redefine a protected null term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected term with a null IRI mapping cannot be redefined." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875316120 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0035-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0035-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps with @vocab, default language, and colliding property" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological tests of language maps" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872002460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879748240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r020-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r020-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to HTML base" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736572440 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0030-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0030-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed @always/@never" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/2000/01/rdf-schema#comment> "@embed within a frame controls the object embed flag when processing that frame (@always and @never values)." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0030-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875675340 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871824540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties mapping to @included are folded together" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871267960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875081780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875119080 . +_:g70146875081780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type mapping (not absolute IRI)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @version value" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep06-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version must be 1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/2000/01/rdf-schema#comment> "If @version is specified, it must be 1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874770420 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146880250620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875229700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875284140 . +_:g70146875229700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> . +_:g70146874743540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879274540 . +_:g70146874743540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0112-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0112-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871509560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871820580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear active context with protected terms from an embedded context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/2000/01/rdf-schema#comment> "The Active context be set to null from an embedded context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879908300 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c031-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c031-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context resolutions respects relative URLs." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/2000/01/rdf-schema#comment> "URL resolution follows RFC3986" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879580280 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0083-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0083-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0083-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "[@graph, @index] does not compact graph with @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/2000/01/rdf-schema#comment> "Graph compaction with @graph and @index works only on simple graphs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874525420 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737868880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880217600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880353560 . +_:g70146880217600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> . +_:g70146871194140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874444260 . +_:g70146871194140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875180140 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e078-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e078-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple reverse properties" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of multiple reverse properties" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874415060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874656960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880716020 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880716020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874691900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871451520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c028-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c028-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on embedded context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/2000/01/rdf-schema#comment> "embedded context with @propagate: false do not survive node-objects" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879305120 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js16-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js16-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal aleady in expanded form with aliased keys" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal in expanded form with aliased keys in value object." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875248220 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0076-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0076-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "base option overrides document location" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of the base option overrides the document location" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874398720 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878688040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r012-in.html#first> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if targeted element is not a script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML which isn't a script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875708120 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879879520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879913440 . +_:g70146879879520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di04-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with term direction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874458600 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0051-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0051-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0051-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round tripping @list with scalar" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/2000/01/rdf-schema#comment> "Native values survive round-tripping with @list" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m005-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object using compact IRI @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879351680 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880535080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880549000 . +_:g70146880535080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf02-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid predicate IRIs are rejected" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872737940 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872155400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e053-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e053-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand absolute IRI with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0053" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881005360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146876162380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871109300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146874498240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874545140 . +_:g70146874498240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid JSON literal" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js08-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid JSON literal (bare-word)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors must generate an error when deserializing an invalid JSON literal." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871645620 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871229920 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @import value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import must be a string" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/2000/01/rdf-schema#comment> "@import must be a string." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877261400 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879994660 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146879994660 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146879994660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877246960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877278900 . +_:g70146877246960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> . +_:g70146871400380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871413620 . +_:g70146871400380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n004-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Appends nested values from all @nest aliases in term order" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146332860540 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876379960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876495220 . +_:g70146876379960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a value object value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737424740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875708200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881415100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737244560 . +_:g70146881415100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c007-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880169600 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/ra03-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/ra03-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@requireAll with type and properties" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/2000/01/rdf-schema#comment> "If @requireAll is true, then all listed properties, including @type, must be present to match." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/ra03-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876900740 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880387040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737276780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881121140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881171180 . +_:g70146881121140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> . +_:g70146875558660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875629180 . +_:g70146875558660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> . +_:g70146737816580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737854660 . +_:g70146737816580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> . +_:g70146876899940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876938020 . +_:g70146876899940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e071-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e071-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine terms looking like compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0071" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736889660 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736308040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871016700 . +_:g70146736308040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> . +_:g70146736938120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875113960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875168940 . +_:g70146875113960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> . +_:g70146736856540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m013-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m013-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "id map using @none" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878605820 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875148800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875179440 . +_:g70146875148800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> . +_:g70146870916280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871859380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871903360 . +_:g70146871859380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> . +_:g70146737244560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737294440 . +_:g70146737244560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> . +_:g70146871451380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871563080 . +_:g70146871451380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> . +_:g70146874924380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875331320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875449300 . +_:g70146875331320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e013-in.html#first> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if targeted element does not have type application/ld+json" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with wrong type" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880793500 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0062-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0062-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs with with @base" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0117-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0117-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset from node with embedded named graph (bnode)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/2000/01/rdf-schema#comment> "Embedding @graph in a node creates a named graph. Graph name is created if there is no subject" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid typed value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e123-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Value objects including invalid literal datatype IRIs are rejected" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors MUST validate datatype IRIs." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881233180 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146737078720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601347040 . +_:g70146737078720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e122-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e122-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some IRIs when that start with @ when expanding." . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword." . -_:g70292355353320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355387400 . -_:g70292355353320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> . -_:g70292623052080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623268920 . -_:g70292623052080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> . -_:g70292219591360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219601340 . -_:g70292219591360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> . -_:g70292349737660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355014540 . -_:g70292349737660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding reverse properties" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e042-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e042-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0042" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352211240 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Value objects including invalid literal datatype IRIs are rejected" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid typed value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0123-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors MUST validate datatype IRIs." . -_:g70292350764440 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350764440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357732600 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override term defined in sourced context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so08-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . -_:g70292623967840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355236060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622481120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622266800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622297740 . -_:g70292622266800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> . -_:g70292219306540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219339220 . -_:g70292219306540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding @reverse" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0037-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0037-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding @reverse keeps @reverse" . -_:g70292357553780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357595480 . -_:g70292357553780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> . -_:g70292355846520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine compact IRI with itself" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e070-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e070-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0070" . -_:g70292623410300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358093440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358093440 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . -_:g70292358093440 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219142420 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with structural canonicalization" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js10-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with structural canonicalization." . -_:g70292625752560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292625752560 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622476240 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623514680 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@direction must be one of ltr or rtl" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid base direction" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Generate an error if @direction has illegal value." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351140080 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties mapping to @included are folded together" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622462240 . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "json.api example" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292350440240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351995140 . -_:g70292350440240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625235540 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords may be protected." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr30-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr30-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355534740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index adds property to graph object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi11-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292623525660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623591400 . -_:g70292623525660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352830520 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine terms looking like compact IRIs" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er44-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/2000/01/rdf-schema#comment> "Term definitions may look like compact IRIs, but must be consistent." . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON-LD document" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Document loader loads a JSON-LD document." . -_:g70292350667200 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350667200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623183980 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with alias of @none" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m010-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351112320 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing deep empty arrays" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li08-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292625366580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625379960 . -_:g70292625366580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> . -_:g70292624543480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624589040 . -_:g70292624543480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> . -_:g70292353766720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624351020 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redirects if type is text/html" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la01-in.html> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881223260 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875408500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875512520 . +_:g70146875408500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e027-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e027-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keep duplicate values in @list and @set" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0027" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c013-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type maps use scoped context from type index and not scoped context from containing" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875409280 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li01-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing @list" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871269660 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871729140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871824060 . +_:g70146871729140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> . +_:g70146875119220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875350560 . +_:g70146875119220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> . +_:g70146871461640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @container does not include @index for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736393040 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr16-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr16-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override protected terms after null." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/2000/01/rdf-schema#comment> "Override protected terms after null." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871443920 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737380600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0114-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0114-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset with a IRI named graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic use of creating a named graph using a BNode name" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874792600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so05-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context with @import" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects (with @import)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877344900 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di10-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with direction and language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/2000/01/rdf-schema#comment> "Generates i18n datatype from literal with direction with option." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875901820 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "I18nDatatype" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879782500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879842560 . +_:g70146879782500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> . +_:g70146880283560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0068-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0068-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge @type from different graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/2000/01/rdf-schema#comment> "When merging nodes, ensure that @type values from each node are retained." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0068-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881301260 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0015-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "collapse set of sets, keep empty lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "An array of multiple @set nodes are collapsed into a single array" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/li05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/li05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li05-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing mixed list values" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of Lists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874526000 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879979260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879979260 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875265400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c034-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c034-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remote scoped context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/2000/01/rdf-schema#comment> "Scoped contexts may be externally loaded." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736557000 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871662420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872696460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872721860 . +_:g70146872696460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> . +_:g70146876230460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875792260 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146875792260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr32-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected @type cannot be overridden." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876867520 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146878983520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879148360 . +_:g70146878983520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> . +_:g70146875393340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874852500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871065120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871096780 . +_:g70146871065120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> . +_:g70146871329100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi10-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index does not output property for @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881201680 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880678720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736018960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870307320 . +_:g70146736018960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> . +_:g70146879080020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879129320 . +_:g70146879080020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> . +_:g70146880251100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js03-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (double)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (double)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879844160 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879286160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js10-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js10-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (string)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (string)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878652740 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879129320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879160760 . +_:g70146879129320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> . +_:g70146874938940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874969840 . +_:g70146874938940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi08-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index expands to property value, instead of @index (node)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874641880 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874934200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c026-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c026-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c026-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879147560 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737588960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di01-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term direction null" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Uses term with null direction when two terms conflict on direction." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871175820 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879050240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879180720 . +_:g70146879050240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> . +_:g70146871147380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874377760 . +_:g70146871147380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0042-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0042-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0042-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list keyword aliasing" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/2000/01/rdf-schema#comment> "Make sure keyword aliasing works if a list can't be compacted" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0121-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0121-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some values of @reverse with @, allow others." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871859200 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871777800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c010-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880027740 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875280460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875311700 . +_:g70146875280460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> . +_:g70146872068140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872106020 . +_:g70146872068140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n008-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879693580 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878774100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736371280 . +_:g70146878774100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> . +_:g70146874482240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879251840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879927040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872103560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874869600 . +_:g70146872103560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> . +_:g70146601312820 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146601312820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146870948640 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146870948640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr22-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr22-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check legal overriding of type-scoped protected term from nested node." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/2000/01/rdf-schema#comment> "Check legal overriding of type-scoped protected term from nested node." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737770440 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872939040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872939040 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880093500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880122980 . +_:g70146880093500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> . +_:g70146877232740 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146877232740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736409280 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146601362160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e054-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e054-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand term with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0054" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874513560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874842080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880039600 . +_:g70146874842080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> . +_:g70146879961840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874826660 . +_:g70146879961840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> . +_:g70146871283920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871329780 . +_:g70146871283920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> . +_:g70146872019600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872073760 . +_:g70146872019600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e048-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e048-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Terms are ignored in @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0048" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880546340 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid scoped context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c032-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Unused embedded context with error." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/2000/01/rdf-schema#comment> "An embedded context which is never used should still be checked." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736461020 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146735968760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878671120 . +_:g70146735968760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "orders @type terms when applying scoped contexts" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875349920 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875694760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875755400 . +_:g70146875694760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> . +_:g70146879873120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874855100 . +_:g70146879873120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> . +_:g70146736786300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736822760 . +_:g70146736786300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0051-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0051-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expansion of keyword aliases in term definitions" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding terms which are keyword aliases" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0030-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0030-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "top-level graph with string subject reference" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests graphs containing subject references as strings." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e068-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e068-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "_::sufffix not a compact IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0068" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872548040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872578960 . +_:g70146872548040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Appends nested values when property at base and nested" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874923020 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0127-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0127-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (7)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e001-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop free-floating nodes" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/2000/01/rdf-schema#comment> "Free-floating nodes do not generate RDF triples (from expand-0001)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876359300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876425740 . +_:g70146876359300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> . +_:g70146880519540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880610840 . +_:g70146880519540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> . +_:g70146875807060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875841380 . +_:g70146875807060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> . +_:g70146876675900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879418400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879418400 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146871789520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871853220 . +_:g70146871789520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> . +_:g70146871412020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878790860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878824000 . +_:g70146878790860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/tn03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/tn03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/tn03-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none uses arrays with @container: @set" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none honors @container." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879517300 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146332860540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875841380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875851180 . +_:g70146875841380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> . +_:g70146737444880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737478860 . +_:g70146737444880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands input using @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871889480 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0045-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0045-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "excludes non-matched values in value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0045-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876429720 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e095-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e095-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/2000/01/rdf-schema#comment> "Don't double-expand an already expanded graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876560180 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js06-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (object)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (object)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872906280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0131-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0131-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (11)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878886720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di09-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with direction and no language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Generates i18n datatype from literal with direction with option." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737019300 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "I18nDatatype" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0030-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0030-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps" . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/2000/01/rdf-schema#comment> "Language Maps expand values to include @language" . -_:g70292351140820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351195820 . -_:g70292351140820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (no vocab mapping)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er20-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . -_:g70292351026060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351063360 . -_:g70292351026060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> . -_:g70292623334540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350976940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623278200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623333620 . -_:g70292623278200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (9)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0129-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0129-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350328620 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0095-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0095-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/2000/01/rdf-schema#comment> "Double-expand an already expanded graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355206680 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e110-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e110-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352097300 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some values of @id with @, allow others." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0120-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0120-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword." . -_:g70292354751280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349917780 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands and compacts to document base by default" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/r001-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/r001-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/r001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact IRI attempts to compact document-relative IRIs" . -_:g70292352190320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352260640 . -_:g70292352190320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @vocab in properties and @type but not in @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879101540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr14-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr14-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear protection with null context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/2000/01/rdf-schema#comment> "Clear protection with null context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871267840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @reverse value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er33-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @reverse value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @reverse value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879665660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879861040 . +_:g70146879665660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not redirect if type is application/ld+json" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880517180 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c023-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c023-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "composed type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/2000/01/rdf-schema#comment> "composed type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875458280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146873004540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146873004540 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146876382760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876413360 . +_:g70146876382760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> . +_:g70146880630360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . +_:g70146880630360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> . +_:g70146737478620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737509580 . +_:g70146737478620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> . +_:g70146879778160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879811960 . +_:g70146879778160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> . +_:g70146736621080 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146736621080 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . +_:g70146736621080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872760480 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146871509560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871234280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146876689460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876703000 . +_:g70146876689460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language-tagged value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er39-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language-tagged value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language-tagged value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146877217020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877245320 . +_:g70146877217020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0048-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0048-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Terms are ignored in @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/2000/01/rdf-schema#comment> "Values of @id are not expanded as terms" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c007-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879927040 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object already having an @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874725340 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di02-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "use alias of @direction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Use alias of @direction." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874397480 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880323340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871228940 . +_:g70146880323340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0050-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0050-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0050-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse properties require @type: @id to use string values" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/2000/01/rdf-schema#comment> "Node references in reverse properties are not compacted to strings without explicit type-coercion" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736889660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js07-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js07-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (array)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (array)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879990560 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m014-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m014-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "id map using @none with alias" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878639200 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879417480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879450920 . +_:g70146879417480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> . +_:g70146870053180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870899340 . +_:g70146870053180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> . +_:g70146874725340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878668880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736339880 . +_:g70146878668880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> . +_:g70146879484900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879599920 . +_:g70146879484900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> . +_:g70146879239560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878804220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871049840 . +_:g70146878804220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e070-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e070-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine compact IRI with itself" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0070" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874593800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0068-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0068-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0068-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Single value reverse properties" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/2000/01/rdf-schema#comment> "Single values of reverse properties are compacted as values of ordinary properties" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871010420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878816480 . +_:g70146871010420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0070-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0070-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0070-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compactArrays option" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting compactArrays to false causes single element arrays to be retained" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878922420 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874629100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146869874780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870476340 . +_:g70146869874780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "does not allow a keyword other than @nest for the value of @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871611700 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146736177520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878707400 . +_:g70146736177520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te018> . +_:g70146880009980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735893840 . +_:g70146880009980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> . +_:g70146880109200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880202700 . +_:g70146880109200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> . +_:g70146879208400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0021-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0021-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0021-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact properties and types using @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "@vocab is used to create relative properties and types if no other term matches" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0043-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0043-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using reverse properties inside a @reverse-container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding a reverse property within a @reverse undoes both reversals" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871076820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878904460 . +_:g70146871076820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep10-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest is not allowed in 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/2000/01/rdf-schema#comment> "@nest is not allowed in a term definitionin 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879303400 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146736542960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0014-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0014-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with multiple values of rdf:rest" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not convert list nodes to @list if nodes contain more than one value for rdf:rest." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876804620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881273700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881304820 . +_:g70146881273700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la03-in.json> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not redirect if link type is not application/ld+json" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880565380 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874377760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874449320 . +_:g70146874377760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> . +_:g70146871774500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881069900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881104540 . +_:g70146881069900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> . +_:g70146870192820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871608960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871729140 . +_:g70146871608960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e013-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand already expanded" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0013" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872431880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872463800 . +_:g70146872431880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> . +_:g70146874839980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880189120 . +_:g70146874839980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er37-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object (unexpected keyword)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146876116320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877364260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877395960 . +_:g70146877364260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> . +_:g70146736577860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid remote context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import can only reference a single context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/2000/01/rdf-schema#comment> "@import can only reference a single context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872594720 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146876954900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e119-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e119-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some terms with @, allow others." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881119060 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880282700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880282700 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146737493060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf05-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid language tags are rejected" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872857020 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0008-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0008-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "array framing cases" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Various cases showing array output for @container: @set, and non-embedding of node values if @embed: false." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0008-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872885620 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736605140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736637520 . +_:g70146736605140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> . +_:g70146871398280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871492860 . +_:g70146871398280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> . <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0028-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0028-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @vocab in properties and @type but not in @id" . <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> "@vocab is used to compact properties and @type, but is not used for @id" . -_:g70292354894340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350328620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list is array" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0040-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0040-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0040-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that value of @list is always an array" . -_:g70292351011860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350488160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350588800 . -_:g70292350488160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> . -_:g70292351311280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351572540 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a string" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in07-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351766120 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value mix" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c021-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c021-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c021-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value mix" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351310660 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "node reference compacts to string value of type map" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m020-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m020-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351210600 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id map using alias of @none" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m019-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m019-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id" . -_:g70292617856560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349665520 . -_:g70292617856560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623364080 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected terms and property-scoped contexts" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr40-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr40-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/2000/01/rdf-schema#comment> "Check overriding of protected term from property-scoped context." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354992640 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect a term" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880861060 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146880861060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146735967140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878767560 . +_:g70146735967140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> . +_:g70146874525220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874608020 . +_:g70146874525220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> . +_:g70146881419000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872793380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872826140 . +_:g70146872793380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> . +_:g70146871399540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871446140 . +_:g70146871399540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r003-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r003-in.html#second> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transforms targeted JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874918800 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874672460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874726980 . +_:g70146874672460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c020-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879078940 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879663980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879809040 . +_:g70146879663980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> . +_:g70146878671120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736301020 . +_:g70146878671120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> . +_:g70146874921900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875081580 . +_:g70146874921900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> . +_:g70146876082520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876185300 . +_:g70146876082520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> . +_:g70146872888620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so11-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override protected terms in sourced context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872532120 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @index is a keyword for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880957160 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep07-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@prefix is not allowed in 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/2000/01/rdf-schema#comment> "@prefix is not allowed in a term definition 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879207680 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0052-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0052-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@vocab-relative IRIs in term definitions" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/2000/01/rdf-schema#comment> "If @vocab is defined, term definitions are expanded relative to @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0019-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "remove @value = null" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding a value of null removes the value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di02-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand string using default and term directions and languages" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Strings are coerced to have @direction based on default and term direction." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736722600 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e032-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e032-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mapping a term to null decouples it from @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0032" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0048-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0048-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list with embedded object" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/2000/01/rdf-schema#comment> "Node definitions contained within lists are flattend to top level." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737376200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737410540 . +_:g70146737376200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> . +_:g70146878652740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0017-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph and @id aliased" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding with @graph and @id aliases" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid set or list object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er41-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid set or list object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid set or list object is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879099980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146880601580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880693180 . +_:g70146880601580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0026-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0026-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition with @id: @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding term mapping to @type uses @type syntax" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871844660 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js10-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js10-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (string)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (string)." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871923380 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875721920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875772680 . +_:g70146875721920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> . +_:g70146872297900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872335840 . +_:g70146872297900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0047-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0047-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Free-floating values in sets and free-floating lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/2000/01/rdf-schema#comment> "Free-floating values in sets are removed, free-floating lists are removed completely" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880103900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880159080 . +_:g70146880103900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> . +_:g70146875921060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876000620 . +_:g70146875921060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> . +_:g70146874838860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880175400 . +_:g70146874838860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> . +_:g70146737887220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737900760 . +_:g70146737887220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> . +_:g70146875867140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874384180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874443560 . +_:g70146874384180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> . +_:g70146880565080 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880565080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874870040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875119220 . +_:g70146874870040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> . +_:g70146872990020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146873022780 . +_:g70146872990020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> . +_:g70146872383340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr36-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr36-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875642400 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736604980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736637140 . +_:g70146736604980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> . +_:g70146875694380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875704560 . +_:g70146875694380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c008-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias of @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879960540 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876775680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/c003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/c003-in.html#second> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/c003-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacts targeted JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879797900 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737607360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146878904460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878982540 . +_:g70146878904460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> . +_:g70146876049180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876085420 . +_:g70146876049180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> . +_:g70146871178820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874480420 . +_:g70146871178820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0061-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0061-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Coercing native types to arbitrary datatypes" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding native types when coercing to arbitrary datatypes" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0027-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0027-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Duplicate values in @list and @set" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Duplicate values in @list and @set are not merged" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881184200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881218920 . +_:g70146881184200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> . +_:g70146874558000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874613020 . +_:g70146874558000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> . +_:g70146870307320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870885500 . +_:g70146870307320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> . +_:g70146871158620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js08-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js08-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact already expanded JSON literal" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting JSON literal does not expand terms inside json." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878414460 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878997760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879030240 . +_:g70146878997760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> . +_:g70146871076880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871094680 . +_:g70146871076880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0104-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0104-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0104-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @type with @container: @set" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensures that a single @type value is represented as an array" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879531560 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so09-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override @vocab defined in sourced context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736473660 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di03-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: null with compound literal with direction and no language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse compound literal without proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736367120 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879497800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878902600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0062-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0062-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0062-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @vocab and relative IRIs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative IRIs don't round-trip with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879644200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736355860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879547820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879578480 . +_:g70146879547820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> . +_:g70146879450720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m009-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m009-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@index map with @none value" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879710060 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to @nest for property with @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874774300 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874950640 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0041-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0041-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Free-floating sets and lists" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/2000/01/rdf-schema#comment> "Free-floating values in sets are removed, free-floating lists are removed completely" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0003-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop null and unmapped properties" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Properties mapped to null or which are never mapped are dropped" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879791680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er28-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid type value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146874497360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874527380 . +_:g70146874497360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0014-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@set of @value objects with keyword aliases" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening aliased @set and @value" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871124920 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e016-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if start comment missing" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with unballanced comments" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737146980 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146736839720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er21-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid container mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875267300 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146872544580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872596240 . +_:g70146872544580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c018-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped types resolved against previous context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped types resolved against previous context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874953800 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872663500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875677040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871383620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146332862700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880451320 . +_:g70146332862700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @id value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er27-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @id value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @id value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146736625740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871175820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/r002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/r002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/r002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands and does not compact to document base with compactToRelative false" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/2000/01/rdf-schema#comment> "With compactToRelative option set to false, IRIs which could be made relative to the document base are not made relative." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879219020 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879033340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874464340 . +_:g70146879033340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> . +_:g70146876703000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876741080 . +_:g70146876703000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er42-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords may not be redefined in 1.0" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877264280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879644280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879744260 . +_:g70146879644280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> . +_:g70146879661440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879782500 . +_:g70146879661440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> . +_:g70146871838800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872001740 . +_:g70146871838800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0010-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0010-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property CURIE conflict" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "(Not really framing) A term looking like a CURIE becomes a CURIE when framing/compacting if defined as such in frame/context in json-ld-1.0." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0010-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146873003560 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876506580 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0012-context2.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . +_:g70146876506580 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0012-context1.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . +_:g70146879644140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879873120 . +_:g70146879644140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect a term" . <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <http://www.w3.org/2000/01/rdf-schema#comment> "Check error when overriding a protected term." . -_:g70292352533820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352533820 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292624265860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624332100 . -_:g70292624265860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> . -_:g70292622857020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622934540 . -_:g70292622857020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> . -_:g70292355603240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355614380 . -_:g70292355603240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622481120 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type map with alias of @none" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m012-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623054100 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Unused embedded context with error." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid scoped context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c032-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <http://www.w3.org/2000/01/rdf-schema#comment> "An embedded context which is never used should still be checked." . -_:g70292351535300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353012100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph and @id aliased" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0017-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening with @graph and @id aliases" . -_:g70292624918800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624950200 . -_:g70292624918800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622694900 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List of lists (from array)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "list of lists" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er24-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a list of lists is found" . -_:g70292355387400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355421860 . -_:g70292355387400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> . -_:g70292351735240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use nodeMapGeneration bnode labels" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879584380 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146876493020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146332868180 . +_:g70146876493020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te002> . +_:g70146877128820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877185380 . +_:g70146877128820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> . +_:g70146880988120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0115-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0115-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset with a default and two named graphs" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/2000/01/rdf-schema#comment> "Dataset with a default and two named graphs (IRI and BNode)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in01-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877443900 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0002-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0002-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe w/extra CURIE value." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Append extra values to output." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0002-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872609760 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146870816360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736337920 . +_:g70146870816360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0026-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0026-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition with @id: @type" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening term mapping to @type uses @type syntax" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879748240 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875591240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875694760 . +_:g70146875591240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> . +_:g70146874444100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874477980 . +_:g70146874444100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> . +_:g70146871361820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874458600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m009-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736706540 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875968080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877065000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877103140 . +_:g70146877065000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0036-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0036-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches exact value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0036-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736789260 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [HTML Content Algorithms](https://www.w3.org/TR/json-ld11-api/#html-content-algorithms)." . +<https://w3c.github.io/json-ld-api/tests/html-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . +<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70146876410000 . +<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0057-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0057-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frame matching on any matching value in list" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists match on any matching value." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0057-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872416080 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737229080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737263420 . +_:g70146737229080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> . +_:g70146871315940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871500280 . +_:g70146871315940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> . +_:g70146876408180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876463200 . +_:g70146876408180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr03-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check illegal overriding of protected term from type-scoped context" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/2000/01/rdf-schema#comment> "Check error when overriding a protected term from type-scoped context." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874646100 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js01-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (boolean true)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (boolean true)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879759300 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872479140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js17-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js17-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (string)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (string)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879162160 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875102480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875147860 . +_:g70146875102480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> . +_:g70146876317000 <https://w3c.github.io/json-ld-api/tests/vocab#httpStatus> "303"^^<http://www.w3.org/2001/XMLSchema#integer> . +_:g70146876317000 <https://w3c.github.io/json-ld-api/tests/vocab#redirectTo> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> . +_:g70146875296060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875333560 . +_:g70146875296060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> . +_:g70146879301620 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . +_:g70146879301620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879301620 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875018040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875055720 . +_:g70146875018040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type mapping (not a string)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0118-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0118-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "produce generalized RDF flag" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/2000/01/rdf-schema#comment> "Triples with blank node predicates are not dropped if the produce generalized RDF flag is true." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880486380 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "GeneralizedRdf" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871970840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871530680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/tn01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/tn01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/tn01-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none does not compact values" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none does not compact values." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879401200 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874936320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879450460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872922580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872951380 . +_:g70146872922580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Included containing @included" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871313520 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878708320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879181700 . +_:g70146878708320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> . +_:g70146872614240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872624400 . +_:g70146872614240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> . +_:g70146737754620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737786160 . +_:g70146737754620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> . +_:g70146737672480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g001-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g001-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Library framing example with @graph and omitGraph is true." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic example used in playground and spec examples." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g001-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881400200 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr30-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr30-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords may be protected." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876804620 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146877113000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880023660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736162140 . +_:g70146880023660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> . +_:g70146877034300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877065820 . +_:g70146877034300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr25-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr25-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of terms with scoped contexts using same definitions." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of terms with scoped contexts using same definitions." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875038080 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "colliding keywords" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er26-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Colliding keywords" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when colliding keywords are found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880597200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880610400 . +_:g70146880597200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr34-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr34-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a non-keyword term starting with '@'" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875572960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879146920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871178820 . +_:g70146879146920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> . +_:g70146874873300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874904660 . +_:g70146874873300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> . +_:g70146737789200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737803080 . +_:g70146737789200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> . +_:g70146876476940 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> "application/jldTest+json" . +_:g70146876476940 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0011-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . +_:g70146875361940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736443560 . +_:g70146875361940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> . +_:g70146874643140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874807300 . +_:g70146874643140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> . +_:g70146874642840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874672460 . +_:g70146874642840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0036-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0036-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use nodeMapGeneration bnode labels" . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> <http://www.w3.org/2000/01/rdf-schema#comment> "The toRDF algorithm does not relabel blank nodes; it reuses the counter from the nodeMapGeneration to generate new ones" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (no vocab mapping)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er20-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . -_:g70292352422500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622279360 . -_:g70292352422500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292354051580 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m019-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m019-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352831260 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context with @import" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so06-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects (with @import)" . -_:g70292625148260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349786460 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "embed matched frames with @reverse" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0028-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0028-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0028-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> "If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame." . -_:g70292353080960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622656400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622758200 . -_:g70292622656400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219542760 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@requireAll with missing values and @default" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0025-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0025-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0025-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Match if @requireAll is true and frame contains a non-keyword key not present in node, where the value is a JSON object containing only the key @default with any value." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623245760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @set] container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0080-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0080-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of [@graph, @set] containers" . -_:g70292623036340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623068000 . -_:g70292623036340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622313280 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "id map with @none" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m011-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m011-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @id" . -_:g70292624934460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624184360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355505060 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some values of @id with @, allow others." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e120-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e120-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624525660 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Out of range @embed value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146869789000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878736160 . +_:g70146869789000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> . +_:g70146879217060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879469060 . +_:g70146879217060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> . +_:g70146736473740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736559040 . +_:g70146736473740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0001-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Object Lists" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests generation using different types of objects." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880742940 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880742940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872200180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875392540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875446580 . +_:g70146875392540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0005-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0005-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe (explicit)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "If property is not in frame, and explicit is true, do not add any values for property to output." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0005-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872760480 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874808600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879568700 . +_:g70146874808600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> . +_:g70146880617040 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la04-alternate.jsonld>; rel=\"alternate\"; type=\"application/ld+json\"" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e073-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e073-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context not first property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/2000/01/rdf-schema#comment> "Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875462940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875508480 . +_:g70146875462940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> . +_:g70146881202880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879207680 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879207680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di03-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term selection with lists and direction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection includes values of @list." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874428120 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874410200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874444100 . +_:g70146874410200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js05-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (integer)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (integer)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879930060 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0065-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0065-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Drop unmapped keys in reverse map" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/2000/01/rdf-schema#comment> "Keys that are not mapped to an IRI in a reverse-map are dropped" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0005-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Extended character set literal" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a literal may be created using extended characters." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875459240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0016-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context reset" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting @context to null within an embedded object resets back to initial context state" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879808740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879863820 . +_:g70146879808740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> . +_:g70146878691800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736306480 . +_:g70146878691800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> . +_:g70146874432520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879063300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879080020 . +_:g70146879063300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> . +_:g70146879203760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881039680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146878953800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879068400 . +_:g70146878953800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> . +_:g70146879599920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879661440 . +_:g70146879599920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> . +_:g70146875016680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0012-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple Objects for a Single Property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that Multiple Objects are for a Single Property using array syntax." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0032-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0032-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Null term and @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Mapping a term to null decouples it from @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop free-floating nodes" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening drops unreferenced nodes having only @id" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880184760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736397820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878902840 . +_:g70146736397820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> . +_:g70146879844160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879353980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0067-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0067-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "prefix://suffix not a compact IRI" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/2000/01/rdf-schema#comment> "prefix:suffix values are not interpreted as compact IRIs if suffix begins with two slashes" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0080-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0080-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0080-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not compact a graph having @id with a term having an @graph container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/2000/01/rdf-schema#comment> "Graph compaction works only on simple graphs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874448320 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876392960 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0009-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . +_:g70146879132820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874400680 . +_:g70146879132820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> . +_:g70146879435500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879480640 . +_:g70146879435500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_CHARACTER_TABULATION" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with CHARACTER TABULATION from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879421700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import may not be used in an imported context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/2000/01/rdf-schema#comment> "@import only valid within a term definition." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736577860 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146875444120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875476640 . +_:g70146875444120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> . +_:g70146871759860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so08-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override term defined in sourced context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736463200 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880437900 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0013-context.html>; rel=\"http://www.w3.org/ns/json-ld#context\"" . +_:g70146879663620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879693720 . +_:g70146879663620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> . +_:g70146737116520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737127880 . +_:g70146737116520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li08-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing deep empty arrays" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871479020 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736803000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736833680 . +_:g70146736803000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e026-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e026-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding term mapping to @type uses @type syntax" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0026" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874575700 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874870960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874983000 . +_:g70146874870960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a numeric value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737390400 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er23-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (relative IRI in @type)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0012-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with embed" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening objects containing chained objects flattens all objects" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880563220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146880680980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880732080 . +_:g70146880680980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te011> . +_:g70146875839660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601316760 . +_:g70146875839660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0032-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0032-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "single @id match" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Match on a specific node with frame uses @id." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0032-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875867140 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di07-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with mismatching term direction" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736938120 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879237100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879350640 . +_:g70146879237100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0067-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0067-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0067-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse properties with blank nodes" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact reverse property whose values are unlabeled blank nodes" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0002-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Plain literal with CURIE from default context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests generation of a triple using a CURIE defined in the default context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879778380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879808740 . +_:g70146879778380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e016-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context reset" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0016" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881091040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881122660 . +_:g70146881091040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0030-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0030-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/2000/01/rdf-schema#comment> "Language Maps expand values to include @language" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (double-zero)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (double-zero)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871843800 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c029-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate is invalid in 1.0" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/2000/01/rdf-schema#comment> "@propagate is invalid in 1.0" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875804280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146871379260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871610540 . +_:g70146871379260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> . +_:g70146875497640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875540720 . +_:g70146875497640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e033-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e033-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @vocab with with type-coercion" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0033" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872678140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep12-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container may not be an array in 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/2000/01/rdf-schema#comment> "validate appropriate values of @container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879381520 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146875624840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875673060 . +_:g70146875624840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> . +_:g70146877293080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874987020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/tn01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none is illegal in 1.0." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none is illegal in json-ld-1.0." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872625560 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879369380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879519320 . +_:g70146879369380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m008-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "When type is in a type map" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736603260 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r018-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r018-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to document base" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736473800 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879712260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g005-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g005-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Embed with indirect circular reference via set" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g005-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737375020 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so08-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override term defined in sourced context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737900600 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e130-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e130-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base without trailing slash, with path" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737233480 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e022-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e022-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand value with default language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0022" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr32-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected @type cannot be overridden." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875528840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr10-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple protected and unprotected terms." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/2000/01/rdf-schema#comment> "Simple protected and unprotected terms." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880135180 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736641840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736686500 . +_:g70146736641840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> . +_:g70146736772620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736803000 . +_:g70146736772620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> . +_:g70146880466980 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880466980 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880466980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146873103040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146873103040 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e056-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e056-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use terms with @type: @vocab but not with @type: @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0056" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m007-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "When type is in a type map" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879550040 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0063-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0063-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse property and index container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/2000/01/rdf-schema#comment> "Expaning reverse properties with an index-container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0095-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0095-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/2000/01/rdf-schema#comment> "Double-expand an already expanded graph" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880143060 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js07-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js07-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (array)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (array)." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871492660 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881319420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881368440 . +_:g70146881319420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> . +_:g70146872662680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872693900 . +_:g70146872662680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @embed value" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0054-frame.jsonld> . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0054-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Out of range @embed value" . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <http://www.w3.org/2000/01/rdf-schema#comment> "Any other value for @embed is invalid and indicates that an invalid @embed value error has been detected and processing is aborted." . -_:g70292354992640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292080764320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292080764320 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292625298060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI expansion of fragments including ':'" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0054-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872286640 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +_:g70146871644960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e055-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e055-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @vocab-relative term with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0055" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736508680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880039900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880093500 . +_:g70146880039900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> . +_:g70146881059580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881091040 . +_:g70146881059580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> . +_:g70146871451400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871464720 . +_:g70146871451400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m018-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference with @type: @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871525380 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c025-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c025-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + graph container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + graph container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874673360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875431000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736304540 . +_:g70146875431000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0010-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern without rdf:nil" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not convert lists that are not terminated by rdf:nil to @list." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736525280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736638180 . +_:g70146736525280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> . +_:g70146737637680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737675820 . +_:g70146737637680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> . +_:g70146875068700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876317040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871889880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/s001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/s001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/s001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context with single array values" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/2000/01/rdf-schema#comment> "@context values may be in an array" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879302240 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880387680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872737940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880236000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880290300 . +_:g70146880236000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> . +_:g70146874776260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879534960 . +_:g70146874776260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> . +_:g70146877017180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877051460 . +_:g70146877017180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> . +_:g70146737243280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875807120 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875807120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146601303560 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146601303560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0038-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0038-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening blank node labels" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/2000/01/rdf-schema#comment> "Blank nodes are not relabeled during expansion" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871234280 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872055020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872068140 . +_:g70146872055020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0085-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0085-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879387440 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875314280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875343880 . +_:g70146875314280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> . +_:g70146879401200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874904540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874938940 . +_:g70146874904540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e107-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e107-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container (indexes with multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872463240 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n004-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Arrays of nested values" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879399720 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875508480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875579020 . +_:g70146875508480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0097-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0097-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0097-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @set] container (multiple graphs)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879320060 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0055-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0055-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @vocab-relative term with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding values of properties of @type: @vocab expands relative IRIs using @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879372600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871413620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871451400 . +_:g70146871413620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> . +_:g70146874694980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0024-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0024-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple contexts" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that contexts in an array are merged" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/li03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/li03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li03-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an deep list" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of Lists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871158620 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e019-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "remove @value = null" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0019" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871971680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872073840 . +_:g70146871971680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> . +_:g70146878902840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878987100 . +_:g70146878902840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> . +_:g70146871190180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874410200 . +_:g70146871190180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> . +_:g70146332868180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880431740 . +_:g70146332868180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te003> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0017-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0017-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A term mapping to null removes the mapping" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Mapping a term to null causes the property and its values to be removed from the compacted document" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879520700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879547820 . +_:g70146879520700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr20-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail with mix of protected and unprotected terms with type+null+ctx." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail with mix of protected and unprotected terms with type+null+ctx." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871820580 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871543900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874559340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874774300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871164760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874381100 . +_:g70146871164760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js04-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (double-zero)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (double-zero)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879874860 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880451440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880503120 . +_:g70146880451440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> . +_:g70146737161320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736177520 . +_:g70146737161320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te017> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0123-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0123-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (3)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not expand aliased @id/@type" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "If a keyword is aliased, it is not used when flattening" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid base direction" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@direction must be one of ltr or rtl" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Generate an error if @direction has illegal value." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736966340 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875757640 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875757640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872264300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872299400 . +_:g70146872264300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> . +_:g70146737916540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877425220 . +_:g70146737916540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> . +_:g70146880239220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li09-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing multiple lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871608500 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881304820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881336100 . +_:g70146881304820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n006-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Arrays of nested values" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880678720 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871888360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146332848140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0020-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0020-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "list with node shared across graphs" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "An otherwise conformant list with a node shared across different lists does not serialize using @list" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "colliding keywords" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er26-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Colliding keywords" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when colliding keywords are found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875360360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e012-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with embed" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0012" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880857480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880910360 . +_:g70146880857480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> . +_:g70146880138440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880383880 . +_:g70146880138440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> . +_:g70146876219060 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> "application/jldTest+json" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g004-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g004-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Embed with indirect circular reference" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g004-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737326020 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0046-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0046-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge graphs if no outer @graph is used" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/2000/01/rdf-schema#comment> "Unless @graph exists at the top level, framing uses merged node objects in json-ld-1.0 mode." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880451980 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871645900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871725880 . +_:g70146871645900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0117-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0117-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A term starting with a colon can expand to a different IRI" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms may begin with a colon and not be treated as IRIs." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871689840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146870885500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878643280 . +_:g70146870885500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> . +_:g70146872102320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874968440 . +_:g70146872102320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e091-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e091-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "relative and absolute @base overrides base option and document location" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of a relative and absolute @base overrides base option and document location" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872122460 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in02-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879613540 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875211820 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875130620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875268080 . +_:g70146875130620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> . +_:g70146880873280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880907940 . +_:g70146880873280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property map" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er25-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property map" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a invalid reverse property map is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0011-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with extra properties" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "If additional properties are associated to a list node, the list is only partially converted to @list." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876164540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876202380 . +_:g70146876164540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> . +_:g70146737545160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737554960 . +_:g70146737545160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> . +_:g70146737801960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871511640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c009-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @type-scoped @context does NOT affect nested nodes" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875265400 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a string" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871498800 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146737641960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146736720600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736787120 . +_:g70146736720600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875295240 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736869600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0003-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Default subject is BNode" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a BNode is created if no explicit subject is set." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c017-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped contexts are properly reverted" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped contexts are property reverted" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872104940 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871401040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871465520 . +_:g70146871401040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> . +_:g70146874443560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874525220 . +_:g70146874443560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di01-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: null with i18n literal with direction and no language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse i18n datatype without proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870192820 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880578460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880630360 . +_:g70146880578460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> . +_:g70146736686920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874953940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874967240 . +_:g70146874953940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0098-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0098-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880217200 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e083-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e083-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index, @set] container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index and @set" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876299480 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736521620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881269000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881153360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880480740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880529720 . +_:g70146880480740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te005> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e074-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e074-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id not first property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/2000/01/rdf-schema#comment> "Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737209420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737266060 . +_:g70146737209420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> . +_:g70146876330720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876394100 . +_:g70146876330720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr20-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail with mix of protected and unprotected terms with type+null+ctx." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail with mix of protected and unprotected terms with type+null+ctx." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737707620 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0118-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0118-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding a value staring with a colon does not treat that value as an IRI" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms may begin with a colon and not be treated as IRIs." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871744080 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di07-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di07-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with compound literal with direction and no language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse compound literal without proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874393240 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871909060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874870040 . +_:g70146871909060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> . +_:g70146881108940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879714780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "list of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er32-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List of lists (from array)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a list of lists is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877031380 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146881336100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881367080 . +_:g70146881336100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> . +_:g70146737590820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737640680 . +_:g70146737590820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> . +_:g70146879794060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879829200 . +_:g70146879794060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> . +_:g70146871873540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872279200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146870961140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871643140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874608160 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146872578960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872609880 . +_:g70146872578960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> . +_:g70146877195360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877233420 . +_:g70146877195360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @version is json-ld-1.0 for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871030760 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c009-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @type-scoped @context does NOT affect nested nodes" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880386700 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871725880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871837580 . +_:g70146871725880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> . +_:g70146871093280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er51-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object value using a value alias" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146737099860 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146737099860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872348580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874741900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880125500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880125500 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146737406860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871673660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871823000 . +_:g70146871673660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> . +_:g70146880305960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877327420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877443900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871738440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871793020 . +_:g70146871738440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> . +_:g70146871058900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879019020 . +_:g70146871058900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te020> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e038-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e038-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Drop blank node predicates by default" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/2000/01/rdf-schema#comment> "Triples with blank node predicates are dropped by default (from expand-0038)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871335060 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876545680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876555740 . +_:g70146876545680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> . +_:g70146736932240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736968820 . +_:g70146736932240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js17-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js17-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (string)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (string)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875293960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872136020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n011-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nests using alias of @nest (defined with @id)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880024300 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879798980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879879600 . +_:g70146879798980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> . +_:g70146870734720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878639380 . +_:g70146870734720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> . +_:g70146871010400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871061740 . +_:g70146871010400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c011-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "applies context for all values" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878391360 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874593240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871679840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871726420 . +_:g70146871679840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> . +_:g70146879748500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880371760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874641880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@value with @language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Keep expanded values with @language, drop non-conforming value objects containing just @language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736366200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871000940 . +_:g70146736366200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> . +_:g70146880023460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735618300 . +_:g70146880023460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> . +_:g70146875590580 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875590580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878414460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di08-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di08-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with compound literal with direction and language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse compound literal without proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874676860 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c004-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @context affects nested nodes" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879825500 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid term definition is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871903360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871974720 . +_:g70146871903360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> . +_:g70146878889200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878938700 . +_:g70146878889200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0036-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0036-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0036-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact reverse properties using index containers" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact using both reverse properties and index containers" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871478980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0029-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0029-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/2000/01/rdf-schema#comment> "@base is used to compact @id; test with different relative IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds @type to object not having an @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874934200 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879519320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879611580 . +_:g70146879519320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> . +_:g70146879578480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879633040 . +_:g70146879578480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> . +_:g70146871705680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871743140 . +_:g70146871705680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "cyclic IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Cyclic IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a cyclic IRI mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875448220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pr04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr04-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check legal overriding of protected term from property-scoped context" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/2000/01/rdf-schema#comment> "Check overriding a protected term from property-scoped context." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874691900 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874464340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874687500 . +_:g70146874464340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> . +_:g70146879584380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e109-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e109-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI expansion of fragments including ':'" . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not treat as absolute IRIs values that look like compact IRIs if they're not absolute" . -_:g70292358185160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358185160 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292358185160 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . -_:g70292622792720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623050520 . -_:g70292622792720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> . -_:g70292622530500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355042940 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Matching embedded nodes with @default" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0061-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0061-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0061-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that embedded nodes match with @default and a wildcard @id." . -_:g70292623990000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352048600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352144820 . -_:g70292352048600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622958340 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context resolutions respects relative URLs." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c031-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c031-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/2000/01/rdf-schema#comment> "URL resolution follows RFC3986" . -_:g70292355472280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351013780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623792020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623890900 . -_:g70292623792020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> . -_:g70292351178660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622347660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355629960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353077780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622988320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292352140020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292361746000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357666380 . -_:g70292361746000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623154040 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "composed type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c023-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c023-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/2000/01/rdf-schema#comment> "composed type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352063300 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "wildcard and match none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874776580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0018-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0018-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "no frame @context but @graph output" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "Set framing context to the value of @context from frame, if it exists, or to a new empty context, otherwise." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0018-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879469440 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0001-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Plain literal with URIs" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests generation of a triple using full URIs and a plain literal." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878750860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736300140 . +_:g70146878750860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> . +_:g70146871823140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871853280 . +_:g70146871823140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language map value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er35-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language map value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language map value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146737067560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737080240 . +_:g70146737067560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> . +_:g70146878657300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878657300 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146879842160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879942860 . +_:g70146879842160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> . +_:g70146737527400 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146737527400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0006-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Two graphs having same subject but different values" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that properties and list elements aren't confused between graphs." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js12-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with value canonicalization" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with value canonicalization." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146873103040 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737098460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737113500 . +_:g70146737098460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er50-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (integer)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (integer)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871888360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r004-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r004-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands all embedded JSON-LD script elements with extractAllScripts option" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875133080 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879534960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879628320 . +_:g70146879534960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> . +_:g70146875333560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875346560 . +_:g70146875333560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e106-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e106-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph (mixed graph and object)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872428120 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146412559940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875902980 . +_:g70146412559940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr28-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fails if trying to redefine a protected null term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected term with a null IRI mapping cannot be redefined." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876741280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872368780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872378940 . +_:g70146872368780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> . +_:g70146737572960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881233540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing @list (with coercion)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880056340 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146877103140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877116680 . +_:g70146877103140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> . +_:g70146880382060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0101-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0101-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0101-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @id, @set] container (multiple indexed objects)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879430660 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871844660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146737049680 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146737049680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e014-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if uncommented script text contains comment" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with comments leftover" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737049680 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871823860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872053460 . +_:g70146871823860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0087-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0087-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879512840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r022-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r022-in.html#second> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands targeted JSON-LD script element with fragment and HTML base" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736669220 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736885120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881074300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @propagate value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c030-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate must be boolean valued" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/2000/01/rdf-schema#comment> "@propagate must be boolean valued" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879503960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146875409280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876480360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876511200 . +_:g70146876480360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c006-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880054780 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737675820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737685640 . +_:g70146737675820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> . +_:g70146879879600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879961840 . +_:g70146879879600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> . +_:g70146737838380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601385060 . +_:g70146737838380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> . +_:g70146881119060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871000980 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146871000980 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . +_:g70146871000980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737692080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737723080 . +_:g70146737692080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> . +_:g70146875449300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875497640 . +_:g70146875449300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m001-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds @id to object not having an @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875579540 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875201720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js11-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with unicode canonicalization" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with unicode canonicalization." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146873070160 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879047700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li04-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list (with coercion)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871760400 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0067-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0067-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Match on list value" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/2000/01/rdf-schema#comment> "List value matching." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0067-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881251900 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736722600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879366060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879500960 . +_:g70146879366060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js20-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js20-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with aliased @value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with aliased @value." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879710560 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (boolean true)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (boolean true)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871658740 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871593660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871694400 . +_:g70146871593660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> . +_:g70146879438200 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879438200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146601378440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876675920 . +_:g70146601378440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> . +_:g70146601286880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601328820 . +_:g70146601286880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> . +_:g70146879797900 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146879797900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872299400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872334060 . +_:g70146872299400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> . +_:g70146737424740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872775160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872775160 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146877049780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Load JSON-LD through 303 redirect" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a document with a redirect should use the redirected URL as document base" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876317000 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872465100 <https://w3c.github.io/json-ld-api/tests/vocab#omitGraph> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146872465100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0049-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0049-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context with JavaScript Object property names" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/2000/01/rdf-schema#comment> "Flatten with context including JavaScript Object property names" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872891760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872924520 . +_:g70146872891760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> . +_:g70146871267960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871269120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871417700 . +_:g70146871269120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> . +_:g70146876185300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876282880 . +_:g70146876185300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> . +_:g70146872559020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871907220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871938780 . +_:g70146871907220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> . +_:g70146879843580 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . +_:g70146879729160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736393840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878983520 . +_:g70146736393840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c025-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c025-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c025-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + graph container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + graph container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879101540 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879812120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875038080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/p001-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/p001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version may be specified after first context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872415720 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Property value with @included" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871384340 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874743980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871528100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871565540 . +_:g70146871528100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0034-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0034-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0034-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Skip property with @reverse if no match" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not use reverse property if no other property matches as normal property" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871096780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736395620 . +_:g70146871096780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/li04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/li04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li04-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing multiple lists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of Lists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874426100 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146870764480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736300140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736366060 . +_:g70146736300140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> . +_:g70146878756380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878805020 . +_:g70146878756380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> . +_:g70146736338180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870999980 . +_:g70146736338180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> . +_:g70146879401820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879464360 . +_:g70146879401820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> . +_:g70146736427640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879148660 . +_:g70146736427640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> . +_:g70146876965080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877003220 . +_:g70146876965080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0096-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0096-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0096-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @graph container (multiple graphs)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879286160 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A nest of arrays" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736446360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid type mapping (not a string)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid type mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0023-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0023-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0023-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "prefer @vocab over compacted IRIs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "@vocab takes precedence over prefixes - even if the result is longer" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871075600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/c002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/c002-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/c002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacts first embedded JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879579080 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879085680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879147740 . +_:g70146879085680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c022-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c022-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874432520 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878966340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878997760 . +_:g70146878966340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0043-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0043-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0043-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "select term over @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that @vocab compaction isn't used if the result collides with a term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872659860 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146736789260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871954600 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146871954600 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146871954600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js03-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (double)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (double)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872807900 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881315040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Appends nested values from all @nest aliases" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874988240 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e125-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0125-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0125-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e125-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term as @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (5)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that @vocab defined as a term expands properly" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881304900 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0022-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0022-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "flatten value with default language" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening with a default language applies that language to string values" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880189860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880220640 . +_:g70146880189860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0019-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0019-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Resources can be re-embedded again in each top-level frame match" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "@type matching matches nodes at top-level, and embedding causes them be embedded where referenced." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0019-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m007-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds document expanded @type to object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736521620 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874822260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880124400 . +_:g70146874822260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> . +_:g70146871889480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0034-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0034-frame.jsonld> . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0034-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "wildcard and match none" . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <http://www.w3.org/2000/01/rdf-schema#comment> "Match/reject properties using both wildcard and match none." . -_:g70292623411420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623212660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351833180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351943500 . -_:g70292351833180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> . -_:g70292080815040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625672940 . -_:g70292080815040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> . -_:g70292352437020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622283420 . -_:g70292352437020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623100920 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@vocab as blank node identifier" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0075-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0075-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/2000/01/rdf-schema#comment> "Use @vocab to map all properties to blank node identifiers" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351011220 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map using @none" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m017-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m017-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m017-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625360360 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a non-keyword term starting with '@'" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr34-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr34-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -_:g70292623183980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with embed" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0012-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening objects containing chained objects flattens all objects" . -_:g70292355777360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625298060 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected @type cannot be overridden." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr32-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . -_:g70292622872500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622562480 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292622562480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349901600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350916240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351785720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350239920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350325780 . -_:g70292350239920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> . -_:g70292350737160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350770840 . -_:g70292350737160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> . -_:g70292350566480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350618200 . -_:g70292350566480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350911400 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type map using @none with alias" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m016-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m016-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351501360 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an empty list" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/li01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li01-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/li01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of Lists" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622777460 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with @context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js21-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js21-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with a @context." . -_:g70292350754380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352042260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352278160 . -_:g70292352042260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> . -_:g70292622677520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622722520 . -_:g70292622677520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622233420 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a [@graph, @index, @set] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0082-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0082-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0082-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a @graph container with @index and @set" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid set or list object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid set or list object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er41-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid set or list object is found" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Cyclic IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "cyclic IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a cyclic IRI mapping is found" . -_:g70292624710020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624736980 . -_:g70292624710020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> . -_:g70292351260820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351325560 . -_:g70292351260820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623345000 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index, @set] container" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0083-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0083-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index and @set" . -_:g70292354388980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292354388980 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292350670740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Default language and unmapped properties" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0072-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0072-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0072-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that the default language is handled correctly for unmapped properties" . -_:g70292350148380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351489680 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "orders @type terms when applying scoped contexts" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c012-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c012-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c012-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context reset" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0016-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0016-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting @context to null within an embedded object resets back to initial context state" . -_:g70292351425120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351455520 . -_:g70292351425120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350961860 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @type with @container: @set using an alias of @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0105-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0105-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0105-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensures that a single @type value is represented as an array" . -_:g70292350025900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350109540 . -_:g70292350025900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round tripping @list with scalar and @graph alias" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0052-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0052-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0052-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/2000/01/rdf-schema#comment> "Native values survive round-tripping with @list and @graph alias" . -_:g70292351287680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351452840 . -_:g70292351287680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> . -_:g70292623460820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623526080 . -_:g70292623460820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "collapse set of sets, keep empty lists" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0015-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0015-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "An array of multiple @set nodes are collapsed into a single array" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624903600 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail with mix of protected and unprotected terms with type+null." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr21-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail with mix of protected and unprotected terms with type+null." . -_:g70292351029560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355763520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355797980 . -_:g70292355763520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356222780 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge graphs if no outer @graph is used (prune bnodes)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0034-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736574560 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879908300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876169180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879063100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879146920 . +_:g70146879063100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e113-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e113-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context with JavaScript Object property names" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand with context including JavaScript Object property names" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880091360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879913820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874821020 . +_:g70146879913820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear active context of protected terms from a term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/2000/01/rdf-schema#comment> "The Active context may be set to null from a scoped context of a term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879991400 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875398100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875462940 . +_:g70146875398100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e127-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e127-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A scoped context may include itself recursively (indirect)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881349680 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0101-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0101-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880316380 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @container does not include @index for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880926040 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js03-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (double)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (double)." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880186660 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736570580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736604980 . +_:g70146736570580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi09-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index appends to property value, instead of @index (node)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874792600 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871859200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n008-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple keys may mapping to @type when nesting" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872136020 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879219380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879316740 . +_:g70146879219380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> . +_:g70146880583280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880597200 . +_:g70146880583280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with alias of @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874541080 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876886400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876899940 . +_:g70146876886400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias keywords" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Aliased keywords expand in resulting document" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876604920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0079-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0079-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand @graph container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874593800 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js07-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (array)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (array)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872939040 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880290300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880319800 . +_:g70146880290300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> . +_:g70146876693600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876725280 . +_:g70146876693600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> . +_:g70146880368780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880401500 . +_:g70146880368780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js14-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js14-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal without expanding contents" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal does not expand terms inside json." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146873150980 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146877065820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877097240 . +_:g70146877065820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Flattening Algorithm](https://www.w3.org/TR/json-ld11-api/#flattening-algorithm)." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70146737098460 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875328580 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875065520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872349060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872362260 . +_:g70146872349060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> . +_:g70146872399600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872431880 . +_:g70146872399600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> . +_:g70146880451320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880513880 . +_:g70146880451320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/f002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/f002-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/f002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattens first embedded JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880288320 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/p001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/p001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version may be specified after first context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870055860 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874350440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880169860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880270200 . +_:g70146880169860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er51-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object value using a value alias" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146874985420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875082820 . +_:g70146874985420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m002-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Retains @id in object already having an @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875658220 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736446360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875890240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872721860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872772100 . +_:g70146872721860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> . +_:g70146877313220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877347560 . +_:g70146877313220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> . +_:g70146736950660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875169100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875181900 . +_:g70146875169100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n010-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple nest aliases" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879893100 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881153720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736668960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736702740 . +_:g70146736668960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> . +_:g70146737854660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601364900 . +_:g70146737854660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> . +_:g70146736967400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736998180 . +_:g70146736967400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> . +_:g70146878655660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736702740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736737420 . +_:g70146736702740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> . +_:g70146879083940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874381520 . +_:g70146879083940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf04-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid type IRIs are rejected" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872825520 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879180200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874449700 . +_:g70146879180200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> . +_:g70146412538240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880319800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880348900 . +_:g70146880319800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> . +_:g70146872003740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875756240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0109-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0109-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0109-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @graph container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple objects in a simple graph with a graph container need to use @included" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879681280 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m011-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@language map with no @language" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879907900 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874574160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880922460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871974360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872102320 . +_:g70146871974360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds document expanded @type to object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871013960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871145060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879763240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146735566400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870816360 . +_:g70146735566400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> . +_:g70146879468880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879520700 . +_:g70146879468880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p003-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI does not use simple term that does not end with a gen-delim" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms not ending with a gen-delim are not used for creating compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870916280 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871528720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871578980 . +_:g70146871528720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @index value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er31-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @index value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @index value value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0033-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0033-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @vocab with with type-coercion" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that terms can be defined using @vocab" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871532760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875580180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875590360 . +_:g70146875580180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> . +_:g70146874660080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874760480 . +_:g70146874660080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> . +_:g70146879464360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879550500 . +_:g70146879464360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> . +_:g70146875346560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875359400 . +_:g70146875346560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0020-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph if not at top-level" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used under a node is retained" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880353560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871285760 . +_:g70146880353560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p008-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI does not use term with definition including @prefix: false" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanded term definition may set prefix explicitly in 1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878902600 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0064-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0064-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @default in @type." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/2000/01/rdf-schema#comment> "@type may have a default value." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0064-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881103160 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146735683060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870880780 . +_:g70146735683060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0108-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0108-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0108-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context with JavaScript Object property names" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact with context including JavaScript Object property names" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874460540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875179600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875298820 . +_:g70146875179600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> . +_:g70146879913440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879922820 . +_:g70146879913440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> . +_:g70146879202900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879274660 . +_:g70146879202900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> . +_:g70146878921820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c019-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c019-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context with multiple property scoped terms" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with multiple property scoped terms" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878821540 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879433160 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879433160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871938780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871987780 . +_:g70146871938780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr18-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected terms with type+null+ctx." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected terms with type+null+ctx." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871644960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e051-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e051-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expansion of keyword aliases in term definitions" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0051" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js23-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js23-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (empty array)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (empty array)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880282700 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @version value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/ep03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version must be 1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/2000/01/rdf-schema#comment> "If @version is specified, it must be 1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737537940 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875858700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876693660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876743620 . +_:g70146876693660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> . +_:g70146875594060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872807900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872807900 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146877002400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877034300 . +_:g70146877002400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> . +_:g70146876133800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876168800 . +_:g70146876133800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e096-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e096-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container (multiple indexed objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876594800 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0025-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0025-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple types for same subject+property+value" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Uniqness of triples should include the value type" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879842560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879927680 . +_:g70146879842560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0023-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0023-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test coercion of integer value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a decimal value generates a xsd:integer typed literal." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146601364900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601378440 . +_:g70146601364900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> . +_:g70146412541200 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146412541200 <https://w3c.github.io/json-ld-api/tests/vocab#produceGeneralizedRdf> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146871225340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871318760 . +_:g70146871225340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> . +_:g70146879564120 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . +_:g70146879564120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879564120 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146876511200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146332862700 . +_:g70146876511200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> . +_:g70146871837580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871942680 . +_:g70146871837580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> . +_:g70146876282880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876379960 . +_:g70146876282880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e116-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Verifies that relative IRIs as properties with relative @vocab in 1.0 generate an error" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs in 1.0" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881039680 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872646140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872696460 . +_:g70146872646140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> . +_:g70146874687500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879321020 . +_:g70146874687500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0003-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "BNodes and references" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "BNode name generation and references between resources." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872951380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146873039980 . +_:g70146872951380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> . +_:g70146736920180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737001600 . +_:g70146736920180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> . +_:g70146872254160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872264300 . +_:g70146872254160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import may not be used in an imported context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/2000/01/rdf-schema#comment> "@import only valid within a term definition." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872563660 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146736787120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736854800 . +_:g70146736787120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li08-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing deep empty arrays" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875186600 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146877185380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877217020 . +_:g70146877185380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> . +_:g70146874624160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing multiple lists" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875068700 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880451980 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146880451980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877425220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872492120 . +_:g70146877425220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/p050-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/p050-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prune blank nodes with alias of @id" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/2000/01/rdf-schema#comment> "If @id is aliased in a frame, an unreferenced blank node is still pruned." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/p050-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876775680 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0003-in.jldt> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document with extension-type" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Document loader loads a JSON document having an extension mime-subtype." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876219060 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871500280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871679380 . +_:g70146871500280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e082-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e082-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876230400 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/li03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/li03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing mixed list values" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of lists" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875643940 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736442020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736000460 . +_:g70146736442020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> . +_:g70146874983000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875098800 . +_:g70146874983000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language-tagged string" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er30-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language-tagged string" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di05-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with i18n literal with direction and no language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Parses i18n datatype with proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871131940 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875216420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880991160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881025480 . +_:g70146880991160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> . +_:g70146875065060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875163840 . +_:g70146875065060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@value with @language" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Keep expanded values with @language, drop non-conforming value objects containing just @language" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875902780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875952820 . +_:g70146875902780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0009-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test using an empty suffix" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "An empty suffix may be used." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js01-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (boolean true)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (boolean true)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872742400 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0031-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0031-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-coercion of native types" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/p046-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld> . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0046-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge graphs if no outer @graph is used (prune bnodes)" . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <http://www.w3.org/2000/01/rdf-schema#comment> "Unless @graph exists at the top level, framing uses merged node objects." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623168440 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expandContext option" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876675900 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876183400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876267860 . +_:g70146876183400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> . +_:g70146872793940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872220060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872233440 . +_:g70146872220060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0050-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0050-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definitions with prefix separate from prefix definitions" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/2000/01/rdf-schema#comment> "Term definitions using compact IRIs don't inherit the definitions of the prefix" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js04-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (double-zero)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (double-zero)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872840660 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871402380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871413340 . +_:g70146871402380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> . +_:g70146880151740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880041260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880103940 . +_:g70146880041260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> . +_:g70146736393040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146601299240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601333620 . +_:g70146601299240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0088-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0088-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand native values to IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/2000/01/rdf-schema#comment> "Value Expansion does not expand native values, such as booleans, to a node object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la04-in.json> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not redirect if type is application/json" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880617040 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0059-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0059-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed: @last replaces previous embed values with node reference" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that within a matched node, by default only the last reference will be embedded in json-ld-1.0 mode." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0059-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880861060 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875219520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875232400 . +_:g70146875219520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0129-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0129-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base without trailing slash, without path" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871623940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871678660 . +_:g70146871623940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index expands to property value, instead of @index (value)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871174100 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872609880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872662680 . +_:g70146872609880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> . +_:g70146871140940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if attempting to add property to value object for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881044140 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146880497240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880535080 . +_:g70146880497240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> . +_:g70146872148780 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146872148780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880011000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0066-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0066-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse-map keys with @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand uses @vocab to expand keys in reverse-maps" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid default language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid default language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language-tagged value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er39-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language-tagged value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language-tagged value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146876252080 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> "application/jldTest" . +_:g70146877051460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877065000 . +_:g70146877051460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> . +_:g70146874807300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879401020 . +_:g70146874807300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> . +_:g70146737458720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146601350960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871889100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871889100 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146879628040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879794060 . +_:g70146879628040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> . +_:g70146874690760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874728300 . +_:g70146874690760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> . +_:g70146871061740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736397820 . +_:g70146871061740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> . +_:g70146879956220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879989600 . +_:g70146879956220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c015-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped base" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped base" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870537120 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874726980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874754340 . +_:g70146874726980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0028-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0028-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0028-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Alias keywords and use @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> "Combination of keyword aliases and @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0056-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0056-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use terms with @type: @vocab but not with @type: @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/2000/01/rdf-schema#comment> "Checks that expansion uses appropriate base depending on term definition having @type @id or @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736560280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736570580 . +_:g70146736560280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0085-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0085-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0085-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a named graph with a [@graph, @id] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a named graph using a @graph container with @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874593240 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c005-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879859260 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879257020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879287520 . +_:g70146879257020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> . +_:g70146879305120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m015-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m015-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type map using @none with alias" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878816860 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736394020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0074-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0074-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0074-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Container as a list with type of @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that compaction works for empty list when property has container declared as @list and type as @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874448320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0074-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0074-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id not first property" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/2000/01/rdf-schema#comment> "Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879617220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879630140 . +_:g70146879617220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> . +_:g70146871016100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871080640 . +_:g70146871016100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> . +_:g70146736622360 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146736622360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0030-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0030-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0030-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "non-matching @container: @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/2000/01/rdf-schema#comment> "Preserve @index tags if not compacted to an index map" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879748600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879778380 . +_:g70146879748600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "basic" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding terms with different types of values" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872328380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872378000 . +_:g70146872328380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list (with coercion)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880191400 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876769220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876818580 . +_:g70146876769220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> . +_:g70146880841820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e031-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e031-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-coercion of native types" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0031" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0024-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0024-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test coercion of boolean value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a decimal value generates a xsd:boolean typed literal." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0044-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0044-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/flatten/0044-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compactArrays option" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting compactArrays to false causes single element arrays to be retained" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871771740 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879437860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879516440 . +_:g70146879437860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c034-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c034-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remote scoped context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/2000/01/rdf-schema#comment> "Scoped contexts may be externally loaded." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874852500 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737344020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737392740 . +_:g70146737344020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> . +_:g70146877181820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877195360 . +_:g70146877181820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m019-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871564460 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880875240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880921960 . +_:g70146880875240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> . +_:g70146880431240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880549520 . +_:g70146880431240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_all_controls" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/2000/01/rdf-schema#comment> "literal_all_controls '\\x00\\x01\\x02\\x03\\x04...' from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872378940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872413600 . +_:g70146872378940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> . +_:g70146875119080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875131720 . +_:g70146875119080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0015-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "collapse set of sets, keep empty lists" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "An array of multiple @set nodes are collapsed into a single array" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871549240 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146871549240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0060-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0060-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Overwrite document base with @base and reset it again" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting @base to an IRI and then resetting it to nil" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879861040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874838860 . +_:g70146879861040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep11-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context is not allowed in 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/2000/01/rdf-schema#comment> "@context is not allowed in a term definitionin 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879355100 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146736789520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736817940 . +_:g70146736789520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0017-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph and @id aliased" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening with @graph and @id aliases" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737557180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878824000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736393840 . +_:g70146878824000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> . +_:g70146871789720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871859380 . +_:g70146871789720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js08-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with array canonicalization" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with array canonicalization." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872971780 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736371280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871010400 . +_:g70146736371280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> . +_:g70146879480640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . +_:g70146879480640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> . +_:g70146880070840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880169860 . +_:g70146880070840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> . +_:g70146874400260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0048-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0048-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0048-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "term with @language: null" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/2000/01/rdf-schema#comment> "Prefer terms with a language mapping set to null over terms without language-mapping for non-strings" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880056480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0064-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0064-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "bnode values of reverse properties" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand reverse property whose values are unlabeled blank nodes" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872509860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872544500 . +_:g70146872509860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> . +_:g70146876332620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876364680 . +_:g70146876332620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> . +_:g70146874935460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875016120 . +_:g70146874935460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di11-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di11-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with compound literal with direction and no language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/2000/01/rdf-schema#comment> "Parses compound literal with proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879731440 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m003-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object not having an @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879208400 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737849720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601378200 . +_:g70146737849720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e010-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "native types" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/2000/01/rdf-schema#comment> "Native types generate typed literals (from expand-0010)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr40-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr40-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected terms and property-scoped contexts" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/2000/01/rdf-schema#comment> "Check overriding of protected term from property-scoped context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877169400 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736686500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736736100 . +_:g70146736686500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di09-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di09-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with i18n literal with direction and no language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse i18n datatype without proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879301620 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0010-in.json> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document with link" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "If a context is specified in a link header, it is used for JSON." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876448340 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/p021-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes in @type (prune bnodes)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/2000/01/rdf-schema#comment> "Empty frame matches all nodes at top-level, and repeats where embedded (with list content)." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146601367100 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876230400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737281740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect terms in sourced context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877441060 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146737294440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737344020 . +_:g70146737294440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid scoped context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c033-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Unused context with an embedded context error." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/2000/01/rdf-schema#comment> "An unused context with an embedded context should still be checked." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879959540 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "conflicting indexes" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/e001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Conflicting indexes" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Flattening when conflicting indexes are found" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875085860 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +_:g70146874462600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874643140 . +_:g70146874462600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> . +_:g70146872237560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0039-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0039-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches wildcard @language in value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0039-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146412538240 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736817940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736870720 . +_:g70146736817940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> . +_:g70146736690540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736741920 . +_:g70146736690540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> . +_:g70146736177940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870911160 . +_:g70146736177940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er22-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid language mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875708120 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875708120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r005-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r005-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands multiple embedded JSON-LD script elements where one is an array" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements with array" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875382660 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146412556480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875932700 . +_:g70146412556480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> . +_:g70146873121260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146873154020 . +_:g70146873121260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> . +_:g70146875902980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875939700 . +_:g70146875902980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n003-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Appends nested values when property at base and nested" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876461660 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875022780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879432580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874870760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874940600 . +_:g70146874870760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/ec02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition on @type with empty map" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised if @type is defined as a term with an empty map" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737277620 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0002-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Native Types" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not use native datatypes for xsd:boolean, xsd:integer, and xsd:double by default." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879199100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874462600 . +_:g70146879199100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> . +_:g70146601286300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736473740 . +_:g70146601286300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> . +_:g70146880516100 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880516100 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880516100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "recursive context inclusion" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A context may not include itself recursively (direct)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing a context referencing itself" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737607360 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/in01-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/in01-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/in01-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737672480 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875757180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0038-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0038-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding blank node labels" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/2000/01/rdf-schema#comment> "Blank nodes are not relabeled during expansion" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146332851620 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878982540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736427640 . +_:g70146878982540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> . +_:g70146737392740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737441680 . +_:g70146737392740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r016-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if start comment missing" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with unballanced comments" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146601303560 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872234060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr15-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr15-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear protection with array with null context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/2000/01/rdf-schema#comment> "Clear protection with array with null context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871368640 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871543840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871673060 . +_:g70146871543840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> . +_:g70146875103080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in05-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Property value with @included" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879729160 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871299620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871312680 . +_:g70146871299620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "native types" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding native scalar retains native scalar within expanded value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879893100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736654700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876201340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876246580 . +_:g70146876201340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> . +_:g70146871739560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0064-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0064-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0064-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact language-tagged and indexed strings to index-map" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/2000/01/rdf-schema#comment> "Given values with both @index and @language and term index-map term, use index map" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880108400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878922420 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146872596240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872646140 . +_:g70146872596240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> . +_:g70146879518020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879551860 . +_:g70146879518020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> . +_:g70146871285360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880285500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874888260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875149940 . +_:g70146874888260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> . +_:g70146874494600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874564540 . +_:g70146874494600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er36-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property value (through coercion)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146874788520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879219380 . +_:g70146874788520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e002-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "basic" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic RDF conversion (from expand-0002)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c027-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c027-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879239560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m008-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@index map with @none node definition" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879650560 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874986600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875033460 . +_:g70146874986600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> . +_:g70146875084300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875113960 . +_:g70146875084300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0033-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0033-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using @vocab with with type-coercion" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that terms can be defined using @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875447120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879693580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js11-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with unicode canonicalization" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with unicode canonicalization." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874970860 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876425740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876511900 . +_:g70146876425740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/f001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/f001-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/f001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattens embedded JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880105680 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879242100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879218640 . +_:g70146879242100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> . +_:g70146876132560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876201340 . +_:g70146876132560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e086-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e086-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id, @set] container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id and @set" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876474160 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737770440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876951560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876965080 . +_:g70146876951560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> . +_:g70146871236420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871303640 . +_:g70146871236420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e066-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e066-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @vocab to expand keys in reverse-maps" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0066" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874475680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875328580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0015-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creation of a list with multiple elements" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that list with multiple elements." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m017-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map expands to node reference" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871264840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875673060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875721920 . +_:g70146875673060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> . +_:g70146881289320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876900740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879959120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m011-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "id map with @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736839720 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879993940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0092-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0092-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0092-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with [@graph, @set] container to output without [@graph, @set] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874807260 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c012-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep property-term scoped @context in @type-scoped @context affects nested nodes" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871532760 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876327540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876382760 . +_:g70146876327540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> . +_:g70146879401020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879598920 . +_:g70146879401020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> . +_:g70146737833940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0009-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with terms" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph to contain multiple nodes within array" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871645620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876016900 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . +_:g70146876016900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876016900 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880759020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880809240 . +_:g70146880759020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te013> . +_:g70146876085420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876097460 . +_:g70146876085420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e043-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e043-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using reverse properties inside a @reverse-container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0043" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880549520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880775500 . +_:g70146880549520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> . +_:g70146876268380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876300500 . +_:g70146876268380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> . +_:g70146872165520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880189540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880255260 . +_:g70146880189540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> . +_:g70146872181640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876544680 . +_:g70146872181640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_dquote" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with dquote \"x\"y\" from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872873500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872873500 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0009-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON-LD document with link" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "If a context is specified in a link header, it is not used for JSON-LD." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876392960 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881218920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881253320 . +_:g70146881218920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> . +_:g70146880122720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880189540 . +_:g70146880122720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> . +_:g70146875741200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880662000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880700080 . +_:g70146880662000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> . +_:g70146881021380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881071060 . +_:g70146881021380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> . +_:g70146871297500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871377940 . +_:g70146871297500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> . +_:g70146871414800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871658000 . +_:g70146871414800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> . +_:g70146880813400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737029340 . +_:g70146880813400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> . +_:g70146737344120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m016-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id index map with aliased @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id with @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880399360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875248220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877347560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877381880 . +_:g70146877347560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n007-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A nest of arrays" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146601350960 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di03-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand list values with @direction" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/2000/01/rdf-schema#comment> "List values where the term has @direction are used in expansion." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736750820 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874986860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875065060 . +_:g70146874986860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0023-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0023-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening list/set with coercion" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening lists and sets with properties having coercion coerces list/set values" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0032-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0032-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Null term and @vocab" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> "Mapping a term to null decouples it from @vocab" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736706540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737375520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737410540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737444880 . +_:g70146737410540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m005-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds expanded @id to object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875888520 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/la01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/la01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/la01-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "most specific term matching in @list." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/2000/01/rdf-schema#comment> "The most specific term that matches all of the elements in the list, taking into account the default language, must be selected, without considering case of language." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e105-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e105-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph (mixed graph and object)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872418000 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0077-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0077-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expandContext option" . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of the expandContext option to expand the input document" . -_:g70292350471520 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350471520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352959080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352997360 . -_:g70292352959080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623743120 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frame default graph if outer @graph is used" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0047-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0047-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0047-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/2000/01/rdf-schema#comment> "If @graph exists at the top level, framing uses the default graph." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292080764320 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (double-zero)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js04-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (double-zero)." . -_:g70292622951260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622988420 . -_:g70292622951260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords cannot be aliased to other keywords" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword" . -_:g70292624328400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624359940 . -_:g70292624328400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te001> . -_:g70292625463920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625495360 . -_:g70292625463920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> . -_:g70292080782480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292080815040 . -_:g70292080782480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352274040 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "composed type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c023-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c023-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <http://www.w3.org/2000/01/rdf-schema#comment> "composed type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop free-floating nodes" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e001-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> <http://www.w3.org/2000/01/rdf-schema#comment> "Free-floating nodes do not generate RDF triples (from expand-0001)" . -_:g70292351081940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351258440 . -_:g70292351081940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> . -_:g70292624788460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624840220 . -_:g70292624788460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> . -_:g70292351649920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351684060 . -_:g70292351649920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623578320 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expandContext option" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e077-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e077-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of the expandContext option to expand the input document" . -_:g70292622875320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622888340 . -_:g70292622875320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351982300 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A term starting with a colon can expand to a different IRI" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0117-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0117-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms may begin with a colon and not be treated as IRIs." . -_:g70292352683080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354680220 . -_:g70292352683080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> . -_:g70292623380160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623380160 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292350686940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351900620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292618171560 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index adds property to graph object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi11-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292623329960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@language: null resets the default language" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0041-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0041-in.jsonld> . -_:g70292622712140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622724940 . -_:g70292622712140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> . -_:g70292623134080 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . -_:g70292623856220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622590180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand relative IRI with @type: @vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0057-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0057-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative values of terms with @type: @vocab expand relative to @vocab" . -_:g70292625116520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353997180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355894100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355943440 . -_:g70292355894100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> . -_:g70292219215560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219215560 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292356176820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356208300 . -_:g70292356176820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> . -_:g70292357568640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357602380 . -_:g70292357568640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> . -_:g70292623498500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623530600 . -_:g70292623498500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps with @vocab, default language, and colliding property" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0035-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0035-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological tests of language maps" . -_:g70292351769540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351899600 . -_:g70292351769540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error dereferencing a remote context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading remote context failed" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context dereference results in an error" . -_:g70292357548280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357597380 . -_:g70292357548280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> . -_:g70292355832160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352096260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352240840 . -_:g70292352096260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> . -_:g70292624612460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352486280 . -_:g70292624612460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622362480 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal without expanding contents" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js14-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js14-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal does not expand terms inside json." . -_:g70292353538260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292354681380 . -_:g70292353538260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> . -_:g70292350683140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350835500 . -_:g70292350683140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> . -_:g70292354961920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618250220 . -_:g70292354961920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351868740 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds vocabulary expanded @type to object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . -_:g70292352292380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349982060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350684520 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (array)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js07-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js07-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (array)." . -_:g70292625479600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292356095960 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292356095960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset with a IRI named graph" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0114-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0114-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic use of creating a named graph using a BNode name" . -_:g70292622352020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622381520 . -_:g70292622352020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> . -_:g70292352240840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352419340 . -_:g70292352240840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> . -_:g70292622316640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622494360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622524580 . -_:g70292622494360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> . -_:g70292355206680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355880720 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/em01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid container mapping is found" . -_:g70292622825300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622837860 . -_:g70292622825300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> . -_:g70292622778240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622870420 . -_:g70292622778240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> . -_:g70292625183860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625197240 . -_:g70292625183860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> . -_:g70292355323700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624644200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624644200 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624644200 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292351143060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351913840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351960180 . -_:g70292351913840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> . -_:g70292352405240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622460620 . -_:g70292352405240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple contexts" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e024-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e024-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0024" . -_:g70292352552840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352602000 . -_:g70292352552840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292358078100 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id, @set] container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e100-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e100-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id and @set" . -_:g70292351111540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351388520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351475660 . -_:g70292351388520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> . -_:g70292354779180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618170280 . -_:g70292354779180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> . -_:g70292356173180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357939940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358029080 . -_:g70292357939940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> . -_:g70292351310660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening reverse properties" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0037-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0037-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening @reverse keeps @reverse" . -_:g70292622330140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356223860 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail with mix of protected and unprotected terms with type+null+ctx." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr20-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail with mix of protected and unprotected terms with type+null+ctx." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350749160 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected term." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected term." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351064940 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI uses term with definition including @prefix: true" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p005-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p005-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanded term definition may set prefix explicitly in 1.1" . -_:g70292352324500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623245760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349732000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351225740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355023460 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "[@graph, @index] does not compact graph with @id" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0083-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0083-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0083-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <http://www.w3.org/2000/01/rdf-schema#comment> "Graph compaction with @graph and @index works only on simple graphs" . -_:g70292351868860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352077260 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected prefix term with same definition." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr24-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr24-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected prefix term with same definition." . -_:g70292623431280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349184000 . -_:g70292623431280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> . -_:g70292349764300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353736640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623213620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351998580 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds document expanded @type to object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . -_:g70292350339640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350451920 . -_:g70292350339640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> . -_:g70292623761220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623853960 . -_:g70292623761220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> . -_:g70292350669820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350703460 . -_:g70292350669820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> . -_:g70292350945940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351045900 . -_:g70292350945940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> . -_:g70292352242700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352255260 . -_:g70292352242700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351441700 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874464520 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876788760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876820440 . +_:g70146876788760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er17-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property (invalid @container)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid reverse property is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879083300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879681280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a string value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/2000/01/rdf-schema#comment> "container: @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871412020 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0011-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compact date" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanded value with type xsd:dateTime is represented as string with type coercion" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0093-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0093-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0093-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with [@graph, @set] container to output without [@graph, @set] container with compactArrays unset" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output with compactArrays unset" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879215640 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875284140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875314280 . +_:g70146875284140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> . +_:g70146736574560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0053-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0053-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand absolute IRI with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding values of properties of @type: @vocab does not further expand absolute IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874524720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874629220 . +_:g70146874524720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> . +_:g70146871773860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879430660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879536700 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879536700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0053-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0053-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0053-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @type: @vocab if no @type: @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact to @type: @vocab when no @type: @id term available" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0040-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0040-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0040-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list is array" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that value of @list is always an array" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879198440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871158300 . +_:g70146879198440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> . +_:g70146880072420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880105320 . +_:g70146880072420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> . +_:g70146879287520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879339000 . +_:g70146879287520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c006-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879893120 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in01-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879583480 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0038-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0038-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0038-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Index map round-tripping" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex round-tripping use case from Drupal" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736407700 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874969840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875000080 . +_:g70146874969840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0049-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0049-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0049-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round tripping of lists that contain just IRIs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/2000/01/rdf-schema#comment> "List compaction without @container: @list still uses strings if @type: @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c019-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context with multiple property scoped terms" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with multiple property scoped terms" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878953300 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737554960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737593100 . +_:g70146737554960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> . +_:g70146879845720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879879520 . +_:g70146879845720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0004-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "optimize @set, keep empty arrays" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Containers mapped to @set keep empty arrays" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c013-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c013-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep property-term scoped @context in @type-scoped @context affects nested nodes" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146869959720 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879613540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871806540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871839880 . +_:g70146871806540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0109-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0109-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI expansion of fragments including ':'" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not treat as absolute IRIs values that look like compact IRIs if they're not absolute" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Scoped context fail to override protected term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/2000/01/rdf-schema#comment> "Scoped context fail to override protected term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880282920 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871254640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr19-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr19-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mix of protected and unprotected terms." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/2000/01/rdf-schema#comment> "Mix of protected and unprotected terms." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737676100 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874564540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874610000 . +_:g70146874564540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi11-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index adds property to graph object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881233540 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0028-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0028-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple named graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> "Signing a graph." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0130-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0130-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (10)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737127880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737163880 . +_:g70146737127880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> . +_:g70146736637520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736668960 . +_:g70146736637520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> . +_:g70146871329780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871399540 . +_:g70146871329780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "optimize @set, keep empty arrays" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e047-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e047-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remove free-floating set values and lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0047" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875228320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736443900 . +_:g70146875228320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> . +_:g70146877031380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0035-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0035-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "non-fractional numbers converted to xsd:double" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "xsd:double's canonical lexical is used when converting numbers without fraction that are coerced to xsd:double" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875232400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875245440 . +_:g70146875232400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e023-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e023-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Lists and sets of properties with list/set coercion" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0023" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871430140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (boolean false)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (boolean false)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871727900 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr37-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr37-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (with @vocab)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875677040 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879453520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877381880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877391680 . +_:g70146877381880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Property value with @included" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875513760 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737739220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e005-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands multiple embedded JSON-LD script elements where one is an array" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements with array" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880516100 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0127-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0127-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A scoped context may include itself recursively (indirect)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872084980 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874940600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874986600 . +_:g70146874940600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/in02-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/in02-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/in02-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737722020 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875824360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880825880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880857480 . +_:g70146880825880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> . +_:g70146880191400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871395740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880693180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737078720 . +_:g70146880693180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> . +_:g70146874579340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874706140 . +_:g70146874579340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> . +_:g70146879663720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880075500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e111-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e111-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880912340 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871312680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871350080 . +_:g70146871312680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0049-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0049-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "String values of reverse properties" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/2000/01/rdf-schema#comment> "String values of a reverse property with @type: @id are treated as IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871417280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871494160 . +_:g70146871417280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e118-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e118-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding a value staring with a colon does not treat that value as an IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms may begin with a colon and not be treated as IRIs." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881108940 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880205420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880299160 . +_:g70146880205420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> . +_:g70146876741080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876754980 . +_:g70146876741080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> . +_:g70146871974720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872019340 . +_:g70146871974720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> . +_:g70146874728300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874737600 . +_:g70146874728300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> . +_:g70146877116680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877130200 . +_:g70146877116680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> . +_:g70146880713560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880727100 . +_:g70146880713560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @prefix value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er53-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid prefix value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @prefix value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879255700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879660460 . +_:g70146879255700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> . +_:g70146736637140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . +_:g70146736637140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> . +_:g70146879470320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879632120 . +_:g70146879470320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> . +_:g70146879333780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879368980 . +_:g70146879333780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> . +_:g70146874526000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877264280 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146877264280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871377940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871481320 . +_:g70146871377940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e114-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e114-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expansion allows multiple properties expanding to @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/2000/01/rdf-schema#comment> "An exception for the colliding keywords error is made for @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880971020 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875971500 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . +_:g70146875971500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875971500 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146881351000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737065880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737114200 . +_:g70146737065880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te015> . +_:g70146875579020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875624840 . +_:g70146875579020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context with @import" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects (with @import)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875890240 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737328160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737359940 . +_:g70146737328160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> . +_:g70146881185420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881217340 . +_:g70146881185420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0020-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph if not at top-level" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used under a node is retained" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875662120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c013-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type maps use scoped context from type index and not scoped context from containing" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871643140 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876622320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872220060 . +_:g70146876622320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m013-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map with @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736950660 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876492920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146332864720 . +_:g70146876492920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> . +_:g70146874655160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874725380 . +_:g70146874655160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er29-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146737488660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737545160 . +_:g70146737488660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> . +_:g70146876818580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876868660 . +_:g70146876818580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0103-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0103-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0103-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @id] container (multiple ids and objects)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879497800 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880648440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880662000 . +_:g70146880648440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not expand aliased @id/@type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "If a keyword is aliased, it is not used when expanding" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js13-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with wierd canonicalization" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with wierd canonicalization." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875086780 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c016-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c016-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878688040 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880972680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881003840 . +_:g70146880972680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> . +_:g70146737737600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737751140 . +_:g70146737737600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> . +_:g70146870928120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878708320 . +_:g70146870928120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> . +_:g70146879759300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871824060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871918740 . +_:g70146871824060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0129-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0129-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (9)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737884540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737916540 . +_:g70146737884540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> . +_:g70146876202380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876235440 . +_:g70146876202380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> . +_:g70146871935180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871989300 . +_:g70146871935180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> . +_:g70146871743560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875579540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt16-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_numeric_escape4" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with numeric escape4 \\u from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146870980180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0049-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge one graph and deep preserve another" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used within a property value frames embedded values from a named graph in json-ld-1.0 mode." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872148780 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872594040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146869841320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735968760 . +_:g70146869841320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/p020-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes in an array (prune bnodes)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/2000/01/rdf-schema#comment> "Empty frame matches all nodes at top-level, and repeats where embedded." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737820920 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r006-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r006-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands as empty with no embedded JSON-LD script elements" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML when none exist" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875475940 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876872880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876886400 . +_:g70146876872880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> . +_:g70146871228940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871313580 . +_:g70146871228940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> . +_:g70146879599280 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879599280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879782420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146735909500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870053180 . +_:g70146735909500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> . +_:g70146878391360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146869959720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875181900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875219520 . +_:g70146875181900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> . +_:g70146878818340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871065120 . +_:g70146878818340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> . +_:g70146879517300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0035-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0035-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps with @vocab, default language, and colliding property" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological tests of language maps" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @index is a keyword for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878933440 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880388960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871254260 . +_:g70146880388960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0088-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0088-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0088-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a graph with @index using a [@graph, @id] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a @graph container with @id and @set, discarding an @index value" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874694980 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879338500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879401820 . +_:g70146879338500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c015-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c015-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped base" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped base" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870945300 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c020-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c020-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871075600 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @id" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "A value of a property with @type: @id coercion expands to a node reference" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "drop free-floating nodes" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand drops unreferenced nodes having only @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871890160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871903460 . +_:g70146871890160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> . +_:g70146875195640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875873460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601286880 . +_:g70146875873460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c018-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple type-scoped types resolved against previous context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/2000/01/rdf-schema#comment> "multiple type-scoped types resolved against previous context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871093280 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874400680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874461000 . +_:g70146874400680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @prefix value" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep08-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@prefix must be a boolean" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/2000/01/rdf-schema#comment> "@prefix must be a boolean in a term definition in 1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879234960 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146874709780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874788520 . +_:g70146874709780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> . +_:g70146878638760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878687820 . +_:g70146878638760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0037-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0037-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0037-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact keys in @reverse using @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact keys in @reverse using @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/em01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid container mapping" . <https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid container mapping is found" . -_:g70292351255680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351374320 . -_:g70292351255680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> . -_:g70292351403420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351503640 . -_:g70292351403420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> . -_:g70292350388720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand native values to IRIs" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e088-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e088-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/2000/01/rdf-schema#comment> "Value Expansion does not expand native values, such as booleans, to a node object" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623380160 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate is invalid in 1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c029-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/2000/01/rdf-schema#comment> "@propagate is invalid in 1.0" . -_:g70292351271240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351374560 . -_:g70292351271240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> . -_:g70292623100920 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -_:g70292351618980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351652600 . -_:g70292351618980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> . -_:g70292351097040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351130740 . -_:g70292351097040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> . -_:g70292622229700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350147220 . -_:g70292622229700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351671180 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing mixed list values" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/li05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li05-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/li05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of Lists" . -_:g70292350506660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350536660 . -_:g70292350506660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> . -_:g70292622788240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349688940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349732500 . -_:g70292349688940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> . -_:g70292355456480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355487660 . -_:g70292355456480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> . -_:g70292622646240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622859620 . -_:g70292622646240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> . -_:g70292622350940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622381880 . -_:g70292622350940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph if not at top-level" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0020-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used under a node is retained" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context with JavaScript Object property names" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0049-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0049-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> <http://www.w3.org/2000/01/rdf-schema#comment> "Flatten with context including JavaScript Object property names" . -_:g70292349716640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618234340 . -_:g70292349716640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625720000 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with array canonicalization" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js08-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with array canonicalization." . -_:g70292355074520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355109340 . -_:g70292355074520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> . -_:g70292622410360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355729020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355763520 . -_:g70292355729020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622706680 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with aliased @value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js20-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js20-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with aliased @value." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353244740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid predicate IRIs are rejected" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf02-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . -_:g70292352405900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622409840 . -_:g70292352405900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351831800 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands as empty with no embedded JSON-LD script elements and extractAllScripts" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r007-out.nq> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r007-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML when none exist extracting all elements" . -_:g70292351749680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351779960 . -_:g70292351749680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> . -_:g70292352470060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352540280 . -_:g70292352470060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> . -_:g70292623874920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623906000 . -_:g70292623874920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple reverse properties" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e078-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e078-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of multiple reverse properties" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352289400 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds @type to object not having an @type" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m003-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m003-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . -_:g70292350339080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350583900 . -_:g70292350339080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350572540 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (object)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871361820 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146332851620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146871112120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878966920 . +_:g70146871112120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> . +_:g70146879922820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879956220 . +_:g70146879922820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> . +_:g70146878996580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879133440 . +_:g70146878996580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> . +_:g70146872707740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736162140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870734720 . +_:g70146736162140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords cannot be aliased to other keywords" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e090-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e090-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "relative @base overrides base option and document location" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of a relative @base overrides base option and document location" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880732420 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875086780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871464720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871477880 . +_:g70146871464720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r019-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r019-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to base option" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736523700 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Scoped context fail to override protected term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/2000/01/rdf-schema#comment> "Scoped context fail to override protected term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737406860 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e006-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias keywords" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0006" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr13-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override unprotected term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/2000/01/rdf-schema#comment> "Override unprotected term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880387040 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879634880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr17-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected terms with type." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected terms with type." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871544360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880517180 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880517180 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la02-alternate.jsonld>; rel=\"alternate\"; type=\"application/ld+json\"" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e028-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e028-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @vocab in properties and @type but not in @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0028" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880316380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146601345520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872155460 . +_:g70146601345520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m022-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m022-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m022-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "node reference compacts to string value of type map with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874608360 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876081400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876115860 . +_:g70146876081400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0014-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creation of a list with single element" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that @list generates a list." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879960540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736367120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/em01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid container mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737311940 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146737640680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737690360 . +_:g70146737640680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> . +_:g70146876377020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876408180 . +_:g70146876377020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> . +_:g70146876511900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880452980 . +_:g70146876511900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> . +_:g70146875723140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875772920 . +_:g70146875723140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e089-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e089-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "empty @base applied to the base option" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of an empty @base is applied to the base option" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880546340 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871492660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879338820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in02-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872514200 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g010-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g010-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Framing blank node unnamed graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g010-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737622700 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737359940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737391340 . +_:g70146737359940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> . +_:g70146880465420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880512320 . +_:g70146880465420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/f004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/f004-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/f004-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattens all script elements by default" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML multiple script elements" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871549240 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e009-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with terms" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0009" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li10-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing mixed list values" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871777800 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876296260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876327540 . +_:g70146876296260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js05-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (integer)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (integer)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872873500 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146877201240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737266060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737296880 . +_:g70146737266060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> . +_:g70146871061820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871112280 . +_:g70146871061820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> . +_:g70146735946120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879583840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874822260 . +_:g70146879583840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> . +_:g70146874580400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879217060 . +_:g70146874580400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> . +_:g70146876986520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid typed value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er40-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid typed value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid typed value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m010-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with alias of @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736772720 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c022-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c022-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875416120 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0034-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0034-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties expanding to the same IRI" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0035-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0035-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches a deep node pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/2000/01/rdf-schema#comment> "Node patterns that don't match all levels, don't match top level." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0035-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736686920 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0066-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0066-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Match on value reference" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/2000/01/rdf-schema#comment> "Value reference matching." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0066-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881202880 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e093-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e093-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand @graph container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872165520 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879284260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879366060 . +_:g70146879284260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0047-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0047-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flatten using relative fragment identifier properly joins to base" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting a relative round-trips" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872069260 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875097160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . +_:g70146875097160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> . +_:g70146879715840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879798980 . +_:g70146879715840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> . +_:g70146872971780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872971780 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146871918740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872037260 . +_:g70146871918740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Attempt to redefine term in other protected context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected term cannot redefine another protected term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880073320 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0042-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0042-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List objects not equivalent" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists objects are implicit unlabeled blank nodes and thus never equivalent" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872082540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736774660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736786300 . +_:g70146736774660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr34-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr34-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a non-keyword term starting with '@'" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876954900 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871659960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146736301020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871016100 . +_:g70146736301020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr22-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr22-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check legal overriding of type-scoped protected term from nested node." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/2000/01/rdf-schema#comment> "Check legal overriding of type-scoped protected term from nested node." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872023780 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi07-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index appends to property value, instead of @index (value)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874492140 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872659160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872693560 . +_:g70146872659160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0011-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test object processing defines object with implicit BNode" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "If no @ is specified, a BNode is created, and will be used as the object of an enclosing property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e008-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@value with @language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0008" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878636780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736308040 . +_:g70146878636780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js21-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js21-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with @context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with a @context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879979260 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875525580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878768840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878889400 . +_:g70146878768840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> . +_:g70146873022780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146873055640 . +_:g70146873022780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e072-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e072-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine term using @vocab, not itself" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0072" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875804280 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146875804280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736950940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0046-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0046-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Empty string as identifier" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/2000/01/rdf-schema#comment> "Usage of empty strings in identifiers needs special care when constructing the node map." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0022-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0022-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Match on @id" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Match if node and frame both have the same @id property." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0022-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871285740 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871443920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e117-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e117-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A term starting with a colon can expand to a different IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms may begin with a colon and not be treated as IRIs." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881074300 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737146980 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146737146980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li06-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an empty array" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872082540 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e097-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e097-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index, @set] container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index and @set" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876604920 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872418000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875446640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735909500 . +_:g70146875446640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> . +_:g70146880056340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879147560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c020-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875183240 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879796260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871109820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871129100 . +_:g70146871109820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e012-in.html#first> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if targeted element is not a script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML which isn't a script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880742940 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/li01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/li01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li01-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an empty list" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of Lists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878935120 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874806900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872885620 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879863820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879894360 . +_:g70146879863820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0059-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0059-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0059-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term with @type: @vocab if no @type: @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/2000/01/rdf-schema#comment> "If there's no term with @type: @id, use terms with @type: @vocab for IRIs not mapped to terms" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875005840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "processing mode conflict" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep05-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "processingMode json-ld-1.0 conflicts with @version: 1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/2000/01/rdf-schema#comment> "If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874737820 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146871129100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879004300 . +_:g70146871129100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> . +_:g70146874560600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874660080 . +_:g70146874560600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> . +_:g70146878966560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879198440 . +_:g70146878966560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> . +_:g70146878816480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871045980 . +_:g70146878816480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> . +_:g70146875179440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875235180 . +_:g70146875179440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> . +_:g70146870945300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er49-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A relative IRI cannot be used as a prefix" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that a relative IRI cannot be used as a term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880056480 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879583480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878703520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146735634000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879399720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875180140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876211940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876246540 . +_:g70146876211940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> . +_:g70146874428120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874646100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879630340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879763300 . +_:g70146879630340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> . +_:g70146871075260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g009-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g009-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Recursive property embed w/o circular reference" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g009-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737572960 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di06-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language mapwith overriding null direction" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736885120 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871823000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871974360 . +_:g70146871823000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> . +_:g70146737537940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875659720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875694380 . +_:g70146875659720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> . +_:g70146875457760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880289660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736899380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736952420 . +_:g70146736899380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> . +_:g70146736919900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736932240 . +_:g70146736919900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> . +_:g70146880333880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737622700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "list of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er24-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List of lists (from array)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a list of lists is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876852740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146871970760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872100120 . +_:g70146871970760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr23-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr23-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected alias term with same definition." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected alias term with same definition." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737801960 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid frame" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0053-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type must not include a blank node identifier" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/2000/01/rdf-schema#comment> "Node matching does not consider blank nodes." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0053-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872237560 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +_:g70146737771660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js06-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (object)" . <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (object)." . -_:g70292351719660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351749680 . -_:g70292351719660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> . -_:g70292350669780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350721440 . -_:g70292350669780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> . -_:g70292622918840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623082220 . -_:g70292622918840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> . -_:g70292357646960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357681480 . -_:g70292357646960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352127040 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some values of @reverse with @, allow others." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0121-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0121-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON-LD to RDF" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70292623639540 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Deserialize JSON-LD to RDF Algorithm](https://www.w3.org/TR/json-ld11-api/#deserialize-json-ld-to-rdf-algorithm)." . -_:g70292623034400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623071480 . -_:g70292623034400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> . -_:g70292624217840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624248640 . -_:g70292624217840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> . -_:g70292358045420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358089800 . -_:g70292358045420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> . -_:g70292623741020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292354681380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292617860700 . -_:g70292354681380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624656920 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @context affects nested nodes" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c004-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . -_:g70292355826520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple contexts" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0024-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0024-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that contexts in an array are merged" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Free-floating sets and lists" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0041-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0041-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> <http://www.w3.org/2000/01/rdf-schema#comment> "Free-floating values in sets are removed, free-floating lists are removed completely" . -_:g70292351863240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351917280 . -_:g70292351863240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> . -_:g70292623399540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357548280 . -_:g70292623399540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> . -_:g70292355042940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355678900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624395060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624425640 . -_:g70292624395060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> . -_:g70292357808980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351850740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358153740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292219345460 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal aleady in expanded form with aliased keys" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871368180 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875366980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875392540 . +_:g70146875366980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/p049-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge one graph and deep preserve another (prune bnodes)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used within a property value frames embedded values from a named graph." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876725480 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880503120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880551500 . +_:g70146880503120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0083-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0083-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index, @set] container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index and @set" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879218940 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871561100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875545240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146735761320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878768840 . +_:g70146735761320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0016-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0016-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List pattern with type rdf:List" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "List nodes may have a rdf:type rdf:List." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876037400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876049180 . +_:g70146876037400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n007-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @language" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879634880 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736443560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875476840 . +_:g70146736443560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er50-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875660560 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875660560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0021-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0021-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph at top-level if not only property" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used at the top level is retained if there are other properties" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0001-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0001-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Library framing example" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/2000/01/rdf-schema#comment> "Basic example used in playgrond and spec examples." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0001-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872559920 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0073-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0073-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context not first property" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/2000/01/rdf-schema#comment> "Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874442320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874497360 . +_:g70146874442320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> . +_:g70146875035920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876594800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in03-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties mapping to @included are folded together" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872548900 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c026-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c026-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: true on type-scoped context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context with @propagate: true survive node-objects" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875662120 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "recursive context inclusion" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A context may not include itself recursively (direct)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing a context referencing itself" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871840060 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146876560180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877361760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0029-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0029-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "embed matched frames with reversed property" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/2000/01/rdf-schema#comment> "If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0029-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875540080 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0031-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0031-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "match none @type match" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not match objects with @type, if frame uses @type: []." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0031-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875768880 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0020-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test type coercion to typed literal" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests coercion of object to a typed literal when specified." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid remote context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import can only reference a single context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/2000/01/rdf-schema#comment> "@import can only reference a single context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736587960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import is invalid in 1.0." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/2000/01/rdf-schema#comment> "@import is invalid in 1.0." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877232740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146736391520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879029380 . +_:g70146736391520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected term." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880222440 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146881173920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881184200 . +_:g70146881173920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> . +_:g70146871013960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872087760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874888260 . +_:g70146872087760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> . +_:g70146880873120 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146880873120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875380220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875431000 . +_:g70146875380220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> . +_:g70146878918700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879083940 . +_:g70146878918700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_UTF8_boundaries" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/2000/01/rdf-schema#comment> "literal_with_UTF8_boundaries '\\x80\\x7ff\\x800\\xfff...' from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879067500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879199100 . +_:g70146879067500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import overflow" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors must detect source contexts that include @import." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877292660 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872693560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872727880 . +_:g70146872693560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> . +_:g70146736603260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876300500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876332620 . +_:g70146876300500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js21-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js21-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with @context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with a @context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878886720 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0004-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0004-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe (type)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple matches on @type." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0004-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872710440 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871760400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e010-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element with HTML character references" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with character references" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880665200 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0060-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0060-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0060-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term with @type: @id if no @type: @vocab and term value" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/2000/01/rdf-schema#comment> "If there's no term with @type: @vocab, use terms with @type: @id for IRIs mapped to terms" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0058-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0058-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0058-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prefer @type: @id over @type: @vocab for non-terms" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/2000/01/rdf-schema#comment> "Choose a term having @type: @id over @type: @value if value is not a term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879584760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879644280 . +_:g70146879584760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> . +_:g70146874449320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874494600 . +_:g70146874449320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m019-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m019-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id map using alias of @none" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874376420 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0044-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0044-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Index maps with language mappings" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure index maps use language mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736741920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736772620 . +_:g70146736741920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c027-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c027-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c027-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871148020 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871481320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871563840 . +_:g70146871481320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> . +_:g70146879286520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879386160 . +_:g70146879286520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> . +_:g70146879218640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879272560 . +_:g70146879218640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0027-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0027-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0027-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container: @set with multiple values" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Fall back to term with @set container if term with language map is defined" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0037-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0037-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding @reverse" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding @reverse keeps @reverse" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0096-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0096-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container (multiple indexed objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880151740 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0105-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0105-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0105-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @type with @container: @set using an alias of @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensures that a single @type value is represented as an array" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879565460 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879160760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871140860 . +_:g70146879160760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> . +_:g70146878676640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878774100 . +_:g70146878676640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr40-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr40-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected terms and property-scoped contexts" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/2000/01/rdf-schema#comment> "Check overriding of protected term from property-scoped context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875757180 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0132-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0132-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (12)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872100120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875004900 . +_:g70146872100120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js22-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js22-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (null) aleady in expanded form." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (null)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874400260 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879019020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871175740 . +_:g70146879019020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te021> . +_:g70146871794540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871871300 . +_:g70146871794540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> . +_:g70146871642120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871679520 . +_:g70146871642120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> . +_:g70146878639380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878787860 . +_:g70146878639380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> . +_:g70146871448920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880334660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871225340 . +_:g70146880334660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> . +_:g70146874545740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874579660 . +_:g70146874545740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0082-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0082-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0082-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a [@graph, @index, @set] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a @graph container with @index and @set" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874491520 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js02-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (boolean false)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (boolean false)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879814280 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874940720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874953940 . +_:g70146874940720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @version value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/ep03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version must be 1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/2000/01/rdf-schema#comment> "If @version is specified, it must be 1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871739560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880305000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876314840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876359300 . +_:g70146876314840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> . +_:g70146879118260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879164260 . +_:g70146879118260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> . +_:g70146876349220 <https://w3c.github.io/json-ld-api/tests/vocab#httpStatus> "307"^^<http://www.w3.org/2001/XMLSchema#integer> . +_:g70146876349220 <https://w3c.github.io/json-ld-api/tests/vocab#redirectTo> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> . +_:g70146876150860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876164540 . +_:g70146876150860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> . +_:g70146879237280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879369380 . +_:g70146879237280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> . +_:g70146879469440 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146412540660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875940200 . +_:g70146412540660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g002-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g002-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple embed" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g002-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737226500 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871097780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878905140 . +_:g70146871097780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er36-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property value (through coercion)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di12-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di12-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with compound literal with direction and language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/2000/01/rdf-schema#comment> "Parses compound literal with proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879875540 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872725380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872756960 . +_:g70146872725380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> . +_:g70146736736100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736789520 . +_:g70146736736100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> . +_:g70146879181700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874380460 . +_:g70146879181700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @reverse value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er33-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid @reverse value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid @reverse value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remote document" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for JSON-LD [Remote Document and Context Retrieval](https://www.w3.org/TR/json-ld11-api/#remote-document-and-context-retrieval)." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70146876150860 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . +_:g70146877233420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877246960 . +_:g70146877233420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> . +_:g70146875212140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875444880 . +_:g70146875212140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> . +_:g70146735663020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735967140 . +_:g70146735663020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/p002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/p002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.0, 1.1, 1.0]" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870932800 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737604600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737635560 . +_:g70146737604600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> . +_:g70146872772100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872821720 . +_:g70146872772100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> . +_:g70146875924300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li07-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing deep arrays" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871350580 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736559040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736637700 . +_:g70146736559040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> . +_:g70146880371080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871233760 . +_:g70146880371080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> . +_:g70146871678660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871708720 . +_:g70146871678660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> . +_:g70146737311940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875528840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871268820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871629140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871674080 . +_:g70146871629140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> . +_:g70146875857780 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875857780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr13-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override unprotected term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/2000/01/rdf-schema#comment> "Override unprotected term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737462820 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r021-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r021-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to relative HTML base" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736621080 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874858860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880125240 . +_:g70146874858860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> . +_:g70146879763300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879909080 . +_:g70146879763300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e099-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e099-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872234060 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect all terms in context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context protects all term definitions." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881352000 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146880152720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880207020 . +_:g70146880152720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c021-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c021-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value mix" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value mix" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871140940 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871267840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875054360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875085980 . +_:g70146875054360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> . +_:g70146737263420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737297740 . +_:g70146737263420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> . +_:g70146874629220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874709780 . +_:g70146874629220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> . +_:g70146879355100 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879355100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e110-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e110-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880877620 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874678040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879258100 . +_:g70146874678040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr18-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail to override protected terms with type+null+ctx." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail to override protected terms with type+null+ctx." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737620280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146736642840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736690540 . +_:g70146736642840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> . +_:g70146871755400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875350560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875494000 . +_:g70146875350560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map must not be a literal" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876230460 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li03-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing @list (with coercion)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871575740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0043-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0043-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Sample test manifest extract" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/2000/01/rdf-schema#comment> "Flatten a test manifest" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in04-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Included containing @included" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872559020 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0093-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0093-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand @graph container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880077280 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872155460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872168660 . +_:g70146872155460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er14-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property (contains @id)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid reverse property is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146737226500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0097-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0097-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index, @set] container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index and @set" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880184760 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871335060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146737786160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737818180 . +_:g70146737786160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> . +_:g70146879890680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880138440 . +_:g70146879890680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> . +_:g70146871613000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n001-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands input using @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876317040 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e029-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e029-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative IRIs" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0029" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737723080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737754620 . +_:g70146737723080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> . +_:g70146876002620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876047680 . +_:g70146876002620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> . +_:g70146879825500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875131960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881368440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881415100 . +_:g70146881368440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> . +_:g70146875311700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875366980 . +_:g70146875311700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/ec02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition on @type with empty map" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised if @type is defined as a term with an empty map" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871335720 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146737541320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737573200 . +_:g70146737541320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> . +_:g70146876349180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876383160 . +_:g70146876349180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0100-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0100-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id, @set] container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id and @set" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880283560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879782120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879913240 . +_:g70146879782120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> . +_:g70146878823880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736391520 . +_:g70146878823880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> . +_:g70146880253280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880334660 . +_:g70146880253280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> . +_:g70146876725480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880415520 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880415520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple keys may mapping to @type when nesting" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146735946120 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0017-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0017-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Remove duplicate triples" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Equivalent triples are used only once" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871031560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878918700 . +_:g70146871031560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/li01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/li01-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874939160 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0046-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0046-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Free-floating nodes" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding free-floating nodes causes them to be removed" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880027740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/en06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "does not allow @nest with @reverse" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871662420 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880401660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871236420 . +_:g70146880401660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias of @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875235440 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871853280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871905720 . +_:g70146871853280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr21-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Fail with mix of protected and unprotected terms with type+null." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/2000/01/rdf-schema#comment> "Fail with mix of protected and unprotected terms with type+null." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871923160 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146874875500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874888400 . +_:g70146874875500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> . +_:g70146736337920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870980520 . +_:g70146736337920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> . +_:g70146874426100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871611700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874513000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c014-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c014-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context nullification" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/2000/01/rdf-schema#comment> "Nullifying a type-scoped context continues to use the previous context when compacting @type." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870764480 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0078-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0078-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0078-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a [@graph, @set] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact with [@graph, @set]" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871196800 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875264400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875333880 . +_:g70146875264400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0094-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0094-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0094-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with [@graph, @set] container to output without [@graph, @set] container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879222860 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er38-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object (@type and @language)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c016-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871989360 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0075-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0075-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@vocab as blank node identifier" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/2000/01/rdf-schema#comment> "Use @vocab to map all properties to blank node identifiers" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879196820 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878605820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871793020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871823140 . +_:g70146871793020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language mapwith overriding term direction" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880251100 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874661080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879650900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879808960 . +_:g70146879650900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> . +_:g70146874825180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880070840 . +_:g70146874825180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> . +_:g70146879812260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880551500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880578460 . +_:g70146880551500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0022-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0022-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test coercion of double value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that a decimal value generates a xsd:double typed literal;." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875183240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146332864720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880465420 . +_:g70146332864720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> . +_:g70146871610540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871823860 . +_:g70146871610540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> . +_:g70146872203640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875298380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874691040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874773920 . +_:g70146874691040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> . +_:g70146881233180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_squote" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with squote \"x'y\" from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146881300500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881335180 . +_:g70146881300500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> . +_:g70146875444880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736442020 . +_:g70146875444880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0004-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Lists" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple lists with different types of element." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "native types" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening native scalar retains native scalar within expanded value" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874875380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf01-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid subject IRIs are rejected" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872706440 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879913240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874825180 . +_:g70146879913240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> . +_:g70146736772720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876461660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e021-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e021-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to relative HTML base" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879128000 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736334400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871066340 . +_:g70146736334400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> . +_:g70146874936020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874967560 . +_:g70146874936020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> . +_:g70146737789400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737838380 . +_:g70146737789400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @prefix value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er53-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid prefix value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @prefix value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872826140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872858900 . +_:g70146872826140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0068-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0068-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "_:suffix values are not a compact IRI" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/2000/01/rdf-schema#comment> "prefix:suffix values are not interpreted as compact IRIs if prefix is an underscore" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879301540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146870055860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0026-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0026-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "explicitly excludes unframed properties (@explicit: true)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "If property is not in frame, and explicit is true, processors must not add any values for property to output." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0026-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874987020 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871175740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874677620 . +_:g70146871175740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te022> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform RDF to JSON-LD" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Serialize RDF as JSON-LD Algorithm](https://www.w3.org/TR/json-ld11-api/#serialize-rdf-as-json-ld-algorithm)." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70146332867020 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e129-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e129-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base without trailing slash, without path" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881419000 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736966340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872072540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0071-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0071-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine terms looking like compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/2000/01/rdf-schema#comment> "Term definitions may look like compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871109300 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872710440 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @index is not a string for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880988120 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879340380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879349720 . +_:g70146879340380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> . +_:g70146875885840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601284180 . +_:g70146875885840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> . +_:g70146737199720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735663020 . +_:g70146737199720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> . +_:g70146735893840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870801860 . +_:g70146735893840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> . +_:g70146871565540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871578480 . +_:g70146871565540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> . +_:g70146737494280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880971540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881021380 . +_:g70146880971540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> . +_:g70146879274540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879333780 . +_:g70146879274540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> . +_:g70146871251240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871232500 . +_:g70146871251240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> . +_:g70146872073760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872103560 . +_:g70146872073760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e017-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph and @id aliased" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0017" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872018660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872050460 . +_:g70146872018660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js16-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js16-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal aleady in expanded form with aliased keys" . <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal in expanded form with aliased keys in value object." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349687200 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index does not output property for @none" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pi10-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352684360 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version may be specified after first context" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/p001-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/p001-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350096700 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand string using default and term directions" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di01-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Strings are coerced to have @direction based on default and term direction." . -_:g70292622509540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622509540 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292351730780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355404720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355453600 . -_:g70292355404720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> . -_:g70292351554560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351716700 . -_:g70292351554560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> . -_:g70292624824180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624891800 . -_:g70292624824180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622660880 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with aliased @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js19-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js19-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with aliased @type." . -_:g70292351767560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351815960 . -_:g70292351767560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (2)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0122-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0122-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623973780 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge one graph and deep preserve another" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0049-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used within a property value frames embedded values from a named graph in json-ld-1.0 mode." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "override default @language" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0018-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0018-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "override default @language in terms; only language-tag strings" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349979540 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @language" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n007-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -_:g70292356024740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351670920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350440280 . -_:g70292351670920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reset @vocab by setting it to null" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e059-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e059-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0059" . -_:g70292624294640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622607340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352077940 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A context may not include itself recursively (direct)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "recursive context inclusion" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing a context referencing itself" . -_:g70292353208160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292353239600 . -_:g70292353208160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> . -_:g70292355337860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622607200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622722640 . -_:g70292622607200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> . -_:g70292622693840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622693840 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292622721360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624069520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624099100 . -_:g70292624069520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351522880 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep property-term scoped @context in @type-scoped @context affects nested nodes" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c013-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c013-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292353244740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349601000 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Unused embedded context with error." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid scoped context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c032-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/2000/01/rdf-schema#comment> "An embedded context which is never used should still be checked." . -_:g70292350749160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351518540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351552200 . -_:g70292351518540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> . -_:g70292350832340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350356140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350489760 . -_:g70292350356140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> . -_:g70292351405600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350750580 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @index] container (multiple indexed objects)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0098-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0098-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0098-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -_:g70292624114620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624151500 . -_:g70292624114620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> . -_:g70292618297960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624557320 . -_:g70292618297960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te005> . -_:g70292351453260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351550880 . -_:g70292351453260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> . -_:g70292352257400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624279420 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "empty @base applied to the base option" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e089-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e089-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of an empty @base is applied to the base option" . -_:g70292350914100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351140960 . -_:g70292350914100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351287600 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c006-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c006-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c006-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351799820 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c022-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c022-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c022-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped property-scoped contexts including @type:@vocab" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350190500 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @set] container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0094-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0094-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of [@graph, @set] containers" . -_:g70292349798800 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351436140 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (null)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js11-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js11-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (null)." . -_:g70292355027560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -_:g70292350817980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292349557600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618151720 . -_:g70292349557600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351158680 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI not used as prefix" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p007-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p007-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p007-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms including a colon are excluded from being used as a prefix" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624855020 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacts all embedded JSON-LD script elements with extractAllScripts option" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/c004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/c004-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/c004-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements" . -_:g70292623835760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623920640 . -_:g70292623835760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> . -_:g70292351475660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351536080 . -_:g70292351475660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> . -_:g70292623165520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292618237400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349770420 . -_:g70292618237400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> . -_:g70292351340180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357995840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358007840 . -_:g70292357995840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> . -_:g70292355751860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (8)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0128-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0128-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . -_:g70292353043020 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Coercing native types to arbitrary datatypes" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e061-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e061-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0061" . -_:g70292358041660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358055780 . -_:g70292358041660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> . -_:g70292351490300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351520540 . -_:g70292351490300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> . -_:g70292355143800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355178240 . -_:g70292355143800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> . -_:g70292618253740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623655960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623721920 . -_:g70292623655960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> . -_:g70292353364260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351112720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355678900 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Embed with indirect circular reference via set" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g005-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g005-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g005-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . -_:g70292350147220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350262940 . -_:g70292350147220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> . -_:g70292622237480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350159460 . -_:g70292622237480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> . -_:g70292080734460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292356028220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356059380 . -_:g70292356028220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> . -_:g70292622737720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622775060 . -_:g70292622737720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350338680 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736230420 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language map value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er35-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language map value" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language map value is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146736456060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736491180 . +_:g70146736456060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> . +_:g70146880795840 <https://w3c.github.io/json-ld-api/tests/vocab#useNativeTypes> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875675500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875723140 . +_:g70146875675500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/di05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/di05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/di05-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with overriding term direction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874513000 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736478140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736525680 . +_:g70146736478140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_2_dquotes" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with 2 dquotes \"\"\"a\"\"b\"\"\" from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0019-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test type coercion to anyURI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests coercion of object to anyURI when specified." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737016940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146412559940 . +_:g70146737016940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Load JSON-LD through 301 redirect" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a document with a redirect should use the redirected URL as document base" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876260620 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880941160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880972680 . +_:g70146880941160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m015-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m015-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph id index map with aliased @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @id with @none" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875924300 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871923160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874737600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874769520 . +_:g70146874737600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> . +_:g70146875432920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di06-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: i18n-datatype with i18n literal with direction and language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Parses i18n datatype with proper option." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879102520 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/es01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using an array value for @context is illegal in JSON-LD 1.0" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid container mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880252720 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871363260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871400380 . +_:g70146871363260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n002-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands input using aliased @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876379240 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879319080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879389140 . +_:g70146879319080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> . +_:g70146871177640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0019-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0019-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "remove @value = null" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening a value of null removes the value" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c023-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c023-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "composed type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/2000/01/rdf-schema#comment> "composed type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874513560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871140860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871190180 . +_:g70146871140860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid local context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid local context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context is not a string or object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146601296680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871347880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871402380 . +_:g70146871347880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> . +_:g70146871298560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737602920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737637680 . +_:g70146737602920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> . +_:g70146870995060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878818340 . +_:g70146870995060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0065-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0065-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Match on value" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/2000/01/rdf-schema#comment> "Value matching." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0065-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881153360 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871317680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871347880 . +_:g70146871317680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n009-context.jsonld> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n009-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested @container: @id" . <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . -_:g70292623021480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623066080 . -_:g70292623021480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351994920 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected alias term with same definition." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr23-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr23-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected alias term with same definition." . -_:g70292355291660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353302820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292080753560 . -_:g70292353302820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> . -_:g70292219241320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219274000 . -_:g70292219241320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355629940 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Embed with indirect circular reference" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g004-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g004-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g004-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . -_:g70292623625200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623693240 . -_:g70292623625200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id reordering" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0033-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0033-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that generated triples do not depend on order of @id." . -_:g70292356192300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352172780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352340820 . -_:g70292352172780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> . -_:g70292352571300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352631620 . -_:g70292352571300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> . -_:g70292624167960 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0009-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351013780 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "match none @type match" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0031-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0031-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0031-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not match objects with @type, if frame uses @type: []." . -_:g70292355226820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355236740 . -_:g70292355226820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> . -_:g70292625037960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625069800 . -_:g70292625037960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> . -_:g70292625195140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625251420 . -_:g70292625195140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> . -_:g70292623021760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623034400 . -_:g70292623021760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> . -_:g70292352045960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292622334960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622347580 . -_:g70292622334960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> . -_:g70292350799100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350901340 . -_:g70292350799100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reset @vocab by setting it to null" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0059-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0059-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> <http://www.w3.org/2000/01/rdf-schema#comment> "Setting @vocab to null removes a previous definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622590180 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @type-scoped @context does NOT affect nested nodes" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c009-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292622303080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292351572540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879859940 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878900620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879067500 . +_:g70146878900620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid vocab mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0115-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Verifies that relative IRIs as properties with @vocab: '' in 1.0 generate an error" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative property IRIs with relative @vocab in 1.0" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871629840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146877441060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c014-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context nullification" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context nullification" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871759860 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879222860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e034-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e034-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties expanding to the same IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0034" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879565460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0018-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "override default @language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "override default @language in terms; only language-tag strings" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880077280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874545140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874607800 . +_:g70146874545140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> . +_:g70146878933440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879258100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879470320 . +_:g70146879258100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r011-in.html#third> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if no element found at target" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875660560 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146874737500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875545860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875580180 . +_:g70146875545860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> . +_:g70146875642400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874888400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874901260 . +_:g70146874888400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0031-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0031-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests conversion of reverse properties." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879162160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879162160 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146876211480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736489040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736537680 . +_:g70146736489040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c027-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c027-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875708200 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0006-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Typed literal" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creation of a literal with a datatype." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876410000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876440880 . +_:g70146876410000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te001> . +_:g70146881335180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881369820 . +_:g70146881335180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> . +_:g70146872104940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879611580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879715840 . +_:g70146879611580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e019-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e019-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to base option" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871000980 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0018-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0018-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "use native types flag set to true" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "Literals with datatype xsd:boolean, xsd:integer, and xsd:double are serialized using native scalar values" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880795840 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e025-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e025-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Problematic IRI expansion tests" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0025" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876202340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876211940 . +_:g70146876202340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> . +_:g70146879500960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879644140 . +_:g70146879500960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> . +_:g70146876383160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876393140 . +_:g70146876383160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> . +_:g70146737346280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881301260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880732080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880759020 . +_:g70146880732080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te012> . +_:g70146872924520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872957260 . +_:g70146872924520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/in03-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/in03-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "json.api example" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/in03-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737771660 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875416120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js15-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js15-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal aleady in expanded form" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal in expanded form." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878657300 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736495060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736521500 . +_:g70146736495060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> . +_:g70146737163880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737199720 . +_:g70146737163880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> . +_:g70146879272100 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146879272100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875379360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e104-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e104-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph (mixed graph and object)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/2000/01/rdf-schema#comment> "Don't double-expand an already expanded graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872383340 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737036360 <https://w3c.github.io/json-ld-api/tests/vocab#useRdfType> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c002-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879569560 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880175400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880365100 . +_:g70146880175400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> . +_:g70146875675340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871674520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871792300 . +_:g70146871674520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> . +_:g70146880169600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871658000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871909060 . +_:g70146871658000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> . +_:g70146876938980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876970700 . +_:g70146876938980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> . +_:g70146880290360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880339280 . +_:g70146880290360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> . +_:g70146737820920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0056-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0056-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frame matching on matching value in list" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists match on any matching value." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0056-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872366180 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js22-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js22-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (null) aleady in expanded form." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (null)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880125500 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875004900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875134460 . +_:g70146875004900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0040-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0040-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language and index expansion on non-objects" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/2000/01/rdf-schema#comment> "Only invoke language and index map expansion if the value is a JSON object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e124-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0124-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0124-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e124-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (4)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "compact IRI as @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that @vocab defined as a compact IRI expands properly" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881269000 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e058-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e058-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand compact IRI with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0058" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e011-in.html#third> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if no element found at target" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880716020 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0047-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0047-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Frame default graph if outer @graph is used" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/2000/01/rdf-schema#comment> "If @graph exists at the top level, framing uses the default graph." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0047-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880577700 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736758380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736840060 . +_:g70146736758380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> . +_:g70146879829200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879993020 . +_:g70146879829200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> . +_:g70146875823040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875873460 . +_:g70146875823040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> . +_:g70146871905720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871935180 . +_:g70146871905720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi06-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes using @none if no property value does not compact to string" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874460540 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0086-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0086-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id, @set] container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id and @set" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879450460 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0121-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0121-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (1)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876280660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876315120 . +_:g70146876280660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r002-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r002-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transforms first embedded JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871954600 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er44-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine terms looking like compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/2000/01/rdf-schema#comment> "Term definitions may look like compact IRIs, but must be consistent." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879812260 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146875098800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875215960 . +_:g70146875098800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> . +_:g70146736638180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736758380 . +_:g70146736638180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> . +_:g70146874413000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874808600 . +_:g70146874413000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0122-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0122-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (2)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c024-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c024-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c024-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + property-scoped + values evaluates against previous context" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + property-scoped + values evaluates against previous context" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879048720 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879550500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879630340 . +_:g70146879550500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> . +_:g70146879030240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879062940 . +_:g70146879030240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0022-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0022-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0022-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list compaction of nested properties" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact nested properties using @list containers" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0054-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0054-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0054-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact to @type: @vocab and compact @id to term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact to @type: @vocab and compact @id to term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879062280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879118260 . +_:g70146879062280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0014-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0014-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "array to aliased @graph" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "Aliasing @graph uses alias in compacted document" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874414480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736491180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736525580 . +_:g70146736491180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> . +_:g70146878687820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878750860 . +_:g70146878687820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> . +_:g70146874809260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879210500 . +_:g70146874809260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p005-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI uses term with definition including @prefix: true" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanded term definition may set prefix explicitly in 1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736355860 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0077-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0077-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0077-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a @graph container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact a @graph container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871147800 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e002-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands first embedded JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876506240 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146870980520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878870740 . +_:g70146870980520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> . +_:g70146880143060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep14-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep14-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container may not be @type in 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/2000/01/rdf-schema#comment> "validate appropriate values of @container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879484820 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0033-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0033-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0033-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact reverse-map to reverse property" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/2000/01/rdf-schema#comment> "A reverse map is replaced with a matching property defined with @reverse" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872004640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872017320 . +_:g70146872004640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0071-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0071-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0071-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Input has multiple @contexts, output has one" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding input with multiple @contexts and compacting with just one doesn't output undefined properties" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0018-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0018-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0018-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "best matching term for lists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists with values of different types use best term in compacted document" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879710060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879667680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879677060 . +_:g70146879667680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> . +_:g70146875055720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875068460 . +_:g70146875055720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> . +_:g70146878964600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736306480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870967600 . +_:g70146736306480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/tn02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/tn02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none expands strings as value objects" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none leaves inputs other than strings alone" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736654700 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0016-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0016-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "recursive named graphs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting a document with multiple embedded uses of @graph" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m016-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m016-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type map using @none with alias" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871127580 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875283140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875296060 . +_:g70146875283140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> . +_:g70146879100980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "optimize @set, keep empty arrays" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879102520 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . +_:g70146879102520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879102520 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146874722420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879237100 . +_:g70146874722420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c008-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "alias of @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880289660 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881367080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881398400 . +_:g70146881367080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0130-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0130-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base without trailing slash, with path" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872625560 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146872625560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880775500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601345520 . +_:g70146880775500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> . +_:g70146736854800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736922400 . +_:g70146736854800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e001-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876448160 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871417700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871546440 . +_:g70146871417700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> . +_:g70146876411500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0006-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0006-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe (non-explicit)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/2000/01/rdf-schema#comment> "Unless the explicit is false, processors append extra values to output." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0006-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872810240 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @version is json-ld-1.0 for property-valued index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880873120 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879744260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879842160 . +_:g70146879744260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> . +_:g70146871446140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871515240 . +_:g70146871446140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> . +_:g70146875677960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875724500 . +_:g70146875677960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0017-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0017-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative IRI expands relative resource location" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding a relative IRI uses the test file location." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879628320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880137980 . +_:g70146879628320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> . +_:g70146874393240 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . +_:g70146874393240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874393240 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880399360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er44-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine terms looking like compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/2000/01/rdf-schema#comment> "Term definitions may look like compact IRIs, but must be consistent." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877327420 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146737193820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735616100 . +_:g70146737193820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> . +_:g70146875508360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875540140 . +_:g70146875508360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr37-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr37-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (with @vocab)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877049780 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737441680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737491940 . +_:g70146737441680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in04-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Included containing @included" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879698840 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874802980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879242100 . +_:g70146874802980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> . +_:g70146873150980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146873150980 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146872050560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/li06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/li06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing an empty array" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871229720 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874891200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874985420 . +_:g70146874891200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> . +_:g70146880778740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880813400 . +_:g70146880778740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0007-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0007-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "input has multiple types" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "If property is a keyword, processors add property and objects to output." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0007-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872860100 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect all terms in sourced context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/2000/01/rdf-schema#comment> "A protected context protects all term definitions." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737868880 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0050-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0050-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Library example with named graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0050-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872203640 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c009-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c009-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c009-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @type-scoped @context does NOT affect nested nodes" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879993940 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0004-in.jldte> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "loading an unknown type raises loading document failed" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a document with a non-JSON mime type raises loading document failed" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876252080 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146881383000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/p004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/p004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.1, 1.0, 1.1]" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736369320 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879082760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879195040 . +_:g70146879082760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> . +_:g70146881384340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879990640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874840480 . +_:g70146879990640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> . +_:g70146872559920 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146876820440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876851880 . +_:g70146876820440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> . +_:g70146332848020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874935460 . +_:g70146332848020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> . +_:g70146875214080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e005-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not expand aliased @id/@type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0005" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g006-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g006-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Embed with nested indirect circular reference via set" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g006-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737424280 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736968820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736980760 . +_:g70146736968820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m010-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m010-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@index map with @none value using alias of @none" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879807900 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146873085320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874953800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la01-in.html> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redirects if type is text/html" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880465200 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876625060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872219580 . +_:g70146876625060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "string value of type map must not be a literal" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871824540 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146872483440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880824820 . +_:g70146872483440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/r007-out.nq> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r007-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands as empty with no embedded JSON-LD script elements and extractAllScripts" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML when none exist extracting all elements" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875547560 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e021-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e021-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph at top-level if not only property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0021" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871368180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0107-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0107-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container (indexes with multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871329100 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880282920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871000600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871061820 . +_:g70146871000600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> . +_:g70146874737820 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146874737820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875085980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875117040 . +_:g70146875085980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0020-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Blank nodes in an array" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "Empty frame matches all nodes at top-level, and repeats where embedded in json-ld-1.0 mode." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880039740 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875085860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879809040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879979300 . +_:g70146879809040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> . +_:g70146872297540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872328380 . +_:g70146872297540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr35-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr35-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a non-keyword term starting with '@' (with @vocab)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875607740 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875347960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146878966920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879063100 . +_:g70146878966920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> . +_:g70146875888520 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> . +_:g70146875888520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879909080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874842080 . +_:g70146879909080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @import value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import must be a string" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/2000/01/rdf-schema#comment> "@import must be a string." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875824360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871793760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871806540 . +_:g70146871793760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> . +_:g70146875246500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e024-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e024-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple contexts" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0024" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e084-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e084-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876343300 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871905340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872022500 . +_:g70146871905340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> . +_:g70146737635560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737692080 . +_:g70146737635560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> . +_:g70146736998180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875902780 . +_:g70146736998180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> . +_:g70146871920300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879694980 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0022-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0022-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand value with default language" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding with a default language applies that language to string values" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872492120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872548040 . +_:g70146872492120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> . +_:g70146736443900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875490880 . +_:g70146736443900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0040-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0040-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language and index expansion on non-objects" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/2000/01/rdf-schema#comment> "Only invoke language and index map expansion if the value is a JSON object" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871842200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871970760 . +_:g70146871842200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> . +_:g70146873055640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146873088520 . +_:g70146873055640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/ra02-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/ra02-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@requireAll only matches if @id and @type match" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/2000/01/rdf-schema#comment> "If @requireAll is true, then all listed properties, including @id and @type, must be present to match." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/ra02-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876850840 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871285760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871414540 . +_:g70146871285760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> . +_:g70146601333620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736495060 . +_:g70146601333620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> . +_:g70146881398400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737209420 . +_:g70146881398400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js05-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (integer)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (integer)." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871223160 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e050-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e050-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definitions with prefix separate from prefix definitions" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0050" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880431740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880480740 . +_:g70146880431740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te004> . +_:g70146875556160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr02-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Set a term to not be protected" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/2000/01/rdf-schema#comment> "A term with @protected: false is not protected." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881320360 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li02-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871451520 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878787860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871000600 . +_:g70146878787860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> . +_:g70146874444260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874524720 . +_:g70146874444260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> . +_:g70146870899340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878668880 . +_:g70146870899340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> . +_:g70146879339000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879365880 . +_:g70146879339000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> . +_:g70146879320060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736020000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146869874780 . +_:g70146736020000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> . +_:g70146874707880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr31-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protected keyword aliases cannot be overridden." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/2000/01/rdf-schema#comment> "Keywords may not be redefined other than to protect them." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875494200 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879531560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c031-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c031-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@context resolutions respects relative URLs." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/2000/01/rdf-schema#comment> "URL resolution follows RFC3986" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146601285980 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0036-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0036-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding @index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps for terms defined with @container: @index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0057-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0057-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0057-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Complex round tripping @type: @vocab and @type: @id" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting IRI value of property with @type: @vocab can use term; more complex" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr01-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check illegal clearing of context with protected terms" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/2000/01/rdf-schema#comment> "Check error when clearing a context with protected terms." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874531080 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146879991400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js06-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (object)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (object)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879960440 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/g003-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/g003-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Embed with direct circular reference" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/2000/01/rdf-schema#comment> "Test embedded graphs" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/g003-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737276780 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876246540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876280660 . +_:g70146876246540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> . +_:g70146879349720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879383560 . +_:g70146879349720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c025-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c025-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + graph container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + graph container" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875594060 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c029-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate is invalid in 1.0" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/2000/01/rdf-schema#comment> "@propagate is invalid in 1.0" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879383740 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146875267300 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146875267300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879389140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879435500 . +_:g70146879389140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> . +_:g70146871254260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871283920 . +_:g70146871254260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0126-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0126-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "IRI Resolution (6)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/2000/01/rdf-schema#comment> "IRI resolution according to RFC3986." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep15-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep15-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container may not be @graph in 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/2000/01/rdf-schema#comment> "validate appropriate values of @container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879536700 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146879450920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879484500 . +_:g70146879450920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> . +_:g70146879744780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js15-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js15-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal aleady in expanded form" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal in expanded form." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875201720 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0072-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0072-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Redefine term using @vocab, not itself" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/2000/01/rdf-schema#comment> "Redefining a term as itself when @vocab is defined uses @vocab, not previous term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878821540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872089040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874870760 . +_:g70146872089040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> . +_:g70146881044140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0026-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0026-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "triple with rdf:first property and rdf:nil value" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Check list generation with rdf:first property and rdf:nil value." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736463200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js14-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js14-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal without expanding contents" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal does not expand terms inside json." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875131960 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt15-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_REVERSE_SOLIDUS" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with REVERSE SOLIDUS from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0036-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0036-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening @index" . <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening index maps for terms defined with @container: @index" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624495520 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base is that of the alternate URL" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la05-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la05-in.html> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . -_:g70292353271800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353271800 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624248860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624329580 . -_:g70292624248860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> . -_:g70292358188060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292358201740 . -_:g70292358188060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> . -_:g70292351081380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351125220 . -_:g70292351081380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> . -_:g70292355306060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355355480 . -_:g70292355306060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623410300 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition with @id: @type" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879907900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876379240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875427720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735683060 . +_:g70146875427720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> . +_:g70146737422400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737478620 . +_:g70146737422400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> . +_:g70146880517360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di04-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with term direction" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880221600 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875513760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js19-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js19-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with aliased @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with aliased @type." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879418400 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c023-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c023-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c023-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "composed type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/2000/01/rdf-schema#comment> "composed type-scoped property-scoped contexts including @type:@vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878964600 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736750820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875901820 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . +_:g70146875901820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875901820 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0110-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0110-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with relative @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871448920 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872187360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876540540 . +_:g70146872187360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> . +_:g70146880124400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880217600 . +_:g70146880124400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0031-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0031-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-coercion of native types" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874608020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874691040 . +_:g70146874608020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> . +_:g70146737573200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737604600 . +_:g70146737573200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> . +_:g70146876103260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid remote context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid remote context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a remote context is not an object containing @context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871971180 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e064-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e064-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand reverse property whose values are unlabeled blank nodes" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0064" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736572180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736642840 . +_:g70146736572180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0090-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0090-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "relative @base overrides base option and document location" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of a relative @base overrides base option and document location" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879843580 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e060-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e060-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Overwrite document base with @base and reset it again" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0060" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875950160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c024-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c024-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped + property-scoped + values evaluates against previous context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped + property-scoped + values evaluates against previous context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875525580 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0011-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0011-in.jldt> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document with extension-type with link" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/2000/01/rdf-schema#comment> "If a context is specified in a link header, it is used for a JSON extension type." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876476940 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0037-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0037-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Flattening reverse properties" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening @reverse keeps @reverse" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_CARRIAGE_RETURN" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with CARRIAGE RETURN from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/es02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mapping @container: [@list, @set] is invalid" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/2000/01/rdf-schema#comment> "Testing legal combinations of @set with other container values" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880322060 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0012-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@graph with embed" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph to contain multiple nodes within array" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871923380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872624400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872659160 . +_:g70146872624400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> . +_:g70146736922400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736965600 . +_:g70146736922400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0013-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0013-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Replace existing embed" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "An empty frame matches all objects, even if embedded, causing them to be serialized under @graph." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0013-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871285740 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146877332500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146877364260 . +_:g70146877332500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er48-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid term as relative IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that a relative IRI cannot be used as a term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877361760 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er21-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid container mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876769180 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146881289200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881300500 . +_:g70146881289200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear active context with protected terms from an embedded context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/2000/01/rdf-schema#comment> "The Active context be set to null from an embedded context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881413900 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid frame" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0052-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id must not include a blank node identifier" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/2000/01/rdf-schema#comment> "Node matching does not consider blank nodes." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0052-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876628400 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr29-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr29-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Does not expand a Compact IRI using a non-prefix term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion of Compact IRIs considers if the term can be used as a prefix." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876772920 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876825000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876838540 . +_:g70146876825000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e018-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e018-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element relative to document base" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870948640 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872248840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872297540 . +_:g70146872248840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> . +_:g70146875268080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875361940 . +_:g70146875268080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> . +_:g70146874869600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874904540 . +_:g70146874869600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> . +_:g70146880910360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880941160 . +_:g70146880910360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> . +_:g70146879383740 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879383740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871329080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871379200 . +_:g70146871329080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0082-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0082-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874806900 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c014-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c014-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped context nullification" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped context nullification" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146735595900 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146601284180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601335280 . +_:g70146601284180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> . +_:g70146876315120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876349180 . +_:g70146876315120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> . +_:g70146875988000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876000440 . +_:g70146875988000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e108-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e108-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container (multiple ids and objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880829220 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881217340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881273700 . +_:g70146881217340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_BACKSPACE" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/2000/01/rdf-schema#comment> "literal with BACKSPACE from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146879632120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879782120 . +_:g70146879632120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e100-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e100-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id, @set] container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id and @set" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872268700 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880809240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737065880 . +_:g70146880809240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te014> . +_:g70146875295240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871629780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871679840 . +_:g70146871629780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "basic" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening terms with different types of values" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr06-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear active context of protected terms from a term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/2000/01/rdf-schema#comment> "The Active context may be set to null from a scoped context of a term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737249740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr02-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check illegal overriding of protected term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/2000/01/rdf-schema#comment> "Check error when overriding a protected term." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874576300 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146871467900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871497660 . +_:g70146871467900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0042-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0042-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reverse properties" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding terms defined as reverse properties uses @reverse in expanded document" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736461020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/so06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on property-scoped context with @import" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/2000/01/rdf-schema#comment> "property-scoped context with @propagate: false do not survive node-objects (with @import)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146601296680 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879272560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879306460 . +_:g70146879272560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> . +_:g70146878953740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0107-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0107-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0107-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative propererty IRIs with @vocab: ''" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex use cases for relative IRI compaction or properties" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874477980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874511820 . +_:g70146874477980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pr05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pr05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pr05-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Check legal overriding of type-scoped protected term from nested node" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/2000/01/rdf-schema#comment> "Check legal overriding of type-scoped protected term from nested node." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874737500 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "keyword redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er42-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Keywords may not be redefined in 1.0" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879438200 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0007-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Graph with multiple named graphs" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Testing @graph recursion." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878987100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879050240 . +_:g70146878987100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0072-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0072-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0072-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Default language and unmapped properties" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure that the default language is handled correctly for unmapped properties" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/m004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/m004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/m004-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to object already having an @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879251840 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871941020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875068460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875081780 . +_:g70146875068460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> . +_:g70146871147800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/p001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/p001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/p001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI will not use an expanded term definition in 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms with an expanded term definition are not used for creating compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146735712860 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0114-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0114-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expansion allows multiple properties expanding to @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/2000/01/rdf-schema#comment> "An exception for the colliding keywords error is made for @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871574940 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0020-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0020-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact @id that is a property IRI when @container is @list" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/2000/01/rdf-schema#comment> "A term with @container: @list is also used as the value of an @id, if appropriate" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879114060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879180200 . +_:g70146879114060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in05-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Property value with @included" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872594040 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands input using aliased @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146332851380 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import is invalid in 1.0." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/2000/01/rdf-schema#comment> "@import is invalid in 1.0." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875792260 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0099-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0099-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0099-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @index, @set] container (multiple indexed objects)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879387780 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid container mapping" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep13-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@container may not be @id in 1.0" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/2000/01/rdf-schema#comment> "validate appropriate values of @container" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879433160 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e041-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e041-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Reset the default language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0041" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e092-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e092-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with @vocab: ''" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872155400 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736525680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736573900 . +_:g70146736525680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> . +_:g70146880222440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0021-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0021-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "list with node shared across graphs (same triple in different graphs)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "If a list node is used in different graphs, it isn't removed and converted to @list" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880322060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/eo01-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/eo01-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@embed true/false" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/2000/01/rdf-schema#comment> "@embed within a frame controls the object embed flag when processing that frame (true and false values)." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/eo01-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881351000 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e087-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e087-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880417280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146881169780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736473660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876595580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876609160 . +_:g70146876595580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> . +_:g70146876838540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876872880 . +_:g70146876838540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0039-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0039-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using terms in a reverse-maps" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms within @reverse are expanded" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876234400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876265660 . +_:g70146876234400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> . +_:g70146873138140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146735761320 . +_:g70146873138140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> . +_:g70146878971860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874413000 . +_:g70146878971860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c003-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property and value with different terms mapping to the same expanded property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879712260 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "IRI confused with prefix" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/e002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/e002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Absolute IRI confused with Compact IRI" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that IRI compaction detects when the result is an absolute IRI with a scheme matching a term." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874658700 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146876506240 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146876506240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "multiple context link headers" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0012-in.json> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple context link headers" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a file when multiple link headers are returned is an error" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876506580 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880912340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er38-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object (@type and @language)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146332851380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874433100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874498240 . +_:g70146874433100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> . +_:g70146878953300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0025-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0025-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Problematic IRI flattening tests" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening different kinds of terms and Compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/so09-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/so09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Override @vocab defined in sourced context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877409360 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0013-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creation of an empty list" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that @list: [] generates an empty list." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875245440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875283140 . +_:g70146875245440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> . +_:g70146878692420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874412020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874442320 . +_:g70146874412020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0113-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0113-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "context with JavaScript Object property names" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand with context including JavaScript Object property names" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er43-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term definition with @id: @type" . <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding term mapping to @type uses @type syntax now illegal" . -_:g70292351934080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352025780 . -_:g70292351934080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> . -_:g70292624542700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292624542700 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292624542700 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292355816540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355847600 . -_:g70292355816540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs with with @base" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e062-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e062-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0062" . -_:g70292352716680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622983840 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "error if @index is not a string for property-valued index" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pi04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . -_:g70292622842320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623002120 . -_:g70292622842320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> . -_:g70292351977120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622758400 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type maps use scoped context from type index and not scoped context from containing" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c013-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c013-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . -_:g70292356222780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624856000 . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with i18n literal with direction and language" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/di10-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/di10-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not parse i18n datatype without proper option." . -_:g70292623163660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351977120 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version must be 1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @version value" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/ep03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <http://www.w3.org/2000/01/rdf-schema#comment> "If @version is specified, it must be 1.1" . -_:g70292349882260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350110840 . -_:g70292349882260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> . -_:g70292625379960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625393340 . -_:g70292625379960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Non-existant file (404)" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/missing-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Loading a non-existant file raises loading document failed error" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355597200 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Set a term to not be protected" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr02-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <http://www.w3.org/2000/01/rdf-schema#comment> "A term with @protected: false is not protected." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355058460 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.0, 1.1, 1.0]" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/p002-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/p002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . -_:g70292355042880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355073780 . -_:g70292355042880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> . -_:g70292351098400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351176740 . -_:g70292351098400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> . -_:g70292356123540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219444920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219473880 . -_:g70292219444920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349901600 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not compact a graph having @id with a term having an @graph container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0080-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0080-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0080-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <http://www.w3.org/2000/01/rdf-schema#comment> "Graph compaction works only on simple graphs" . -_:g70292618267560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349798940 . -_:g70292618267560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> . -_:g70292623802920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623871700 . -_:g70292623802920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292349965460 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@list containing empty @list (with coercion)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/li04-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/li04-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/2000/01/rdf-schema#comment> "List of lists" . -_:g70292355944960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355979100 . -_:g70292355944960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> . -_:g70292623509380 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353227740 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a value object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292350224700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "native types" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0010-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding native scalar retains native scalar within expanded value" . -_:g70292354127860 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292349698500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618156240 . -_:g70292349698500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> . -_:g70292351667880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351833180 . -_:g70292351667880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> . -_:g70292622511780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622524640 . -_:g70292622511780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> . -_:g70292355025720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350115260 . -_:g70292355025720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> . -_:g70292350961860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350468620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350502240 . -_:g70292350468620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350506520 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with @graph container to output without @graph container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0090-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0090-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0090-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -_:g70292623004840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623034600 . -_:g70292623004840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> . -_:g70292351828560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355924820 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@nest MUST NOT have a boolen value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @nest value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/en02-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/2000/01/rdf-schema#comment> "Transparent Nesting" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language-tagged and indexed strings with language-map" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0065-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0065-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0065-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> <http://www.w3.org/2000/01/rdf-schema#comment> "Language-tagged and indexed strings don't compact to language-map" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test object processing defines object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0010-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0010-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> <http://www.w3.org/2000/01/rdf-schema#comment> "A property referencing an associative array gets object from subject of array." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351556100 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing a list" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879580880 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146880073320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737724060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737737600 . +_:g70146737724060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0110-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0110-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0110-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @set] container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/2000/01/rdf-schema#comment> "Multiple objects in a simple graph with a graph container need to use @included" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879714780 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@direction is incompatible with @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects can have either @type but not @language or @direction." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871223820 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0108-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0108-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @id] container (multiple ids and objects)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871383620 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0024-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0024-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "multiple languages for same subject+property+value" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Uniqness of triples should include the value language" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0042-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0042-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches some @value in value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0042-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876136620 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874677620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879383620 . +_:g70146874677620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> . +_:g70146875772680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875824460 . +_:g70146875772680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0104-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0104-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Creates an @graph container if value is a graph (mixed graph and object)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/2000/01/rdf-schema#comment> "Double-expand an already expanded graph" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871254640 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0092-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0092-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Various relative IRIs as properties with with @vocab: ''" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/2000/01/rdf-schema#comment> "Pathological relative property IRIs" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880044420 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736871360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736883400 . +_:g70146736871360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid keyword alias" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er19-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid keyword alias (@context)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid keyword alias is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er52-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Definition for the empty term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains a definition for the empty term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di11-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with direction and no language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/2000/01/rdf-schema#comment> "Generates i18n datatype from literal with direction with option." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875971500 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "CompoundLiteral" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876115860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876148340 . +_:g70146876115860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> . +_:g70146877391680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737887220 . +_:g70146877391680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> . +_:g70146877261400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875149940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875212140 . +_:g70146875149940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> . +_:g70146872017320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872055020 . +_:g70146872017320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di12-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di12-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "rdfDirection: compound-literal with direction and language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/2000/01/rdf-schema#comment> "Generates compound literal from literal with direction with option." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876016900 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <https://w3c.github.io/json-ld-api/tests/vocab#requires> "CompoundLiteral" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0008-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "List conversion" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Conversion of lists of lists (the triples in the input are only partially ordered on purpose (1.0 semantics)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880563220 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146736937500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736967400 . +_:g70146736937500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c010-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c010-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871282760 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875932700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876002620 . +_:g70146875932700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> . +_:g70146872055140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881400200 <https://w3c.github.io/json-ld-api/tests/vocab#omitGraph> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146881400200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871591620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871628680 . +_:g70146871591620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e049-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e049-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Using strings as value of a reverse property" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0049" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876490680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146332862540 . +_:g70146876490680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> . +_:g70146880191300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880253280 . +_:g70146880191300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/in06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/in06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "json.api example" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875545240 . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737523580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875627460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875743380 . +_:g70146875627460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> . +_:g70146872756960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872788620 . +_:g70146872756960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> . +_:g70146735984840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736350660 . +_:g70146735984840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> . +_:g70146871528280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871563300 . +_:g70146871528280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/c001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/c001-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/c001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacts embedded JSON-LD script element" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879272100 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871066340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878900620 . +_:g70146871066340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> . +_:g70146880977820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880221600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e094-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e094-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @set] container (multiple objects)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of [@graph, @set] containers" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872200180 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m012-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type map with alias of @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879796260 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880103940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880191300 . +_:g70146880103940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> . +_:g70146871232500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871286600 . +_:g70146871232500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> . +_:g70146879386160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879485240 . +_:g70146879386160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> . +_:g70146880191740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879512840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0044-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0044-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0044-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @vocab in reverse-map" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/2000/01/rdf-schema#comment> "Prefer properties with @type: @vocab in reverse-maps if the value can be compacted to a term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871264840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879859940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879048720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146870900120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878676640 . +_:g70146870900120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0041-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0041-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0041-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "index rejects term having @list" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/2000/01/rdf-schema#comment> "If an index is present, a term having an @list container is not selected" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/li02-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li02-context.jsonld> . <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/li02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/li02-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @list containing a list" . <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> "Lists of Lists" . -_:g70292352111980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350946440 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties mapping to @included are folded together" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/in03-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/in03-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/in03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292623071480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292623084300 . -_:g70292623071480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623491420 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none is illegal in 1.0." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid type mapping" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/tn01-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none is illegal in json-ld-1.0." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350851660 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact [@graph, @id, @set] container (multiple indexed objects)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0101-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0101-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0101-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -_:g70292618324900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618343140 . -_:g70292618324900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> . -_:g70292350571600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350733160 . -_:g70292350571600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> . -_:g70292349832620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349894900 . -_:g70292349832620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351261020 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (object)" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js06-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js06-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js06-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (object)." . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350571980 . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact input with [@graph, @set] container to output without [@graph, @set] container" . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0092-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0092-context.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0092-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <http://www.w3.org/2000/01/rdf-schema#comment> "Ensure @graph appears properly in output" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI as term with type mapping" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879100980 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "overriding a term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879782420 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880776520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737165440 . +_:g70146880776520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid scoped context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c032-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Unused embedded context with error." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/2000/01/rdf-schema#comment> "An embedded context which is never used should still be checked." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879763240 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0119-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0119-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some terms with @, allow others." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871774500 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878816860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js11-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js11-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js11-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact JSON literal (null)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting property with @type @json to a JSON literal (null)." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870960640 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e067-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e067-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "prefix:://sufffix not a compact IRI" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0067" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146870950440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878691800 . +_:g70146870950440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> . +_:g70146879218940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872334060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872368780 . +_:g70146872334060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0122-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0122-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some IRIs when that start with @ when expanding." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword. (Note: the resulting document will not be valid JSON-LD, due to the `null` value for `@id`)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871889100 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0024-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0024-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0024-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "most specific term matching in @list." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "The most specific term that matches all of the elements in the list, taking into account the default language, must be selected." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880921960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880971540 . +_:g70146880921960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0076-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0076-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0076-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacting IRI equivalent to base" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting IRI equivalent to base, uses last path segment of base ending in '/'" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c012-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c012-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "orders @type terms when applying scoped contexts" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146735674140 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m013-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m013-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "graph index map with @none" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @graph and @index" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879959120 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0069-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0069-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0069-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Single value reverse properties with @set" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/2000/01/rdf-schema#comment> "Single values are kept in array form for reverse properties if the container is to @set" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi03-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes property value, instead of property (node)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879165960 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872820420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872876520 . +_:g70146872820420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> . +_:g70146874514480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874771960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879214460 . +_:g70146874771960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> . +_:g70146871546440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871673660 . +_:g70146871546440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> . +_:g70146879165960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872428120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871989360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736460160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in06-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "json.api example" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872628740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737740380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737789400 . +_:g70146737740380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e061-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e061-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Coercing native types to arbitrary datatypes" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0061" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a list object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871613000 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146876031840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e076-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e076-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "base option overrides document location" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of the base option overrides the document location" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875939500 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879471240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js01-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (boolean true)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean true)." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874821260 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prepends @type in object already having an @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875103080 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0038-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0038-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "matches wildcard @type in value pattern" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/2000/01/rdf-schema#comment> "Value objects matching value patterns are output, others are filtered." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0038-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736950940 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872335840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872349060 . +_:g70146872335840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> . +_:g70146875824460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875852080 . +_:g70146875824460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> . +_:g70146737127700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737166100 . +_:g70146737127700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e103-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e103-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand @graph container if value is a graph (multiple graphs)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872348580 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875563180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872810240 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di07-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language map with mismatching term direction" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880333880 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875774700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875807060 . +_:g70146875774700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> . +_:g70146877081520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879219020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879219020 <https://w3c.github.io/json-ld-api/tests/vocab#compactToRelative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146874542960 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146874542960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737509580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737541320 . +_:g70146737509580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0003-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0003-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "reframe (null)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Do not match without a matching @type" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0003-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872659860 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874660180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874660180 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0027-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0027-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "non-existent framed properties create null property" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/2000/01/rdf-schema#comment> "Recursively, replace all key-value pairs in compacted results where the key is @preserve with the value from the key-pair. If the value from the key-pair is @null, replace the value with null." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0027-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875216420 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872286640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872579160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872614240 . +_:g70146872579160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n005-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested nested containers" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880517360 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879927680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879990640 . +_:g70146879927680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e120-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e120-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some values of @id with @, allow others." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881153720 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0021-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0021-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph at top-level if not only property" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "@graph used at the top level is retained if there are other properties" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880483580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880497240 . +_:g70146880483580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/n005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/n005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Nested nested containers" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875246500 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Framing" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Framing Algorithm](https://www.w3.org/TR/json-ld11-framing/#framing-algorithm)." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-framing/tests/" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70146872544580 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . +_:g70146872116360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872151000 . +_:g70146872116360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e007-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands as empty with no embedded JSON-LD script elements and extractAllScripts" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML when none exist extracting all elements" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880616320 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c005-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c005-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "scoped context layers on intemediate contexts" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875119840 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er52-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Definition for the empty term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains a definition for the empty term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading remote context failed" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er04-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error dereferencing a remote context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context dereference results in an error" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146872906280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872906280 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880465200 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la01-alternate.jsonld>; rel=\"alternate\"; type=\"application/ld+json\"" . +_:g70146736882480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736937500 . +_:g70146736882480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> . +_:g70146601285980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736304540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879033340 . +_:g70146736304540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e036-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e036-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding @index" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0036" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c012-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c012-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep property-term scoped @context in @type-scoped @context affects nested nodes" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875379360 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/di06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "simple language mapwith overriding null direction" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/2000/01/rdf-schema#comment> "Term selection with language maps and @direction." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880305000 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0026-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0026-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test creation of multiple types" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that @type with an array of types creates multiple types." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879808960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880021460 . +_:g70146879808960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> . +_:g70146879989600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880023460 . +_:g70146879989600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> . +_:g70146879731440 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "compound-literal" . +_:g70146879731440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879731440 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146879234960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879215640 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146879215640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/tn02-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/tn02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@type: @none expands strings as value objects" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/2000/01/rdf-schema#comment> "@type: @none leaves inputs other than strings alone" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872678140 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879930060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880333340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871269120 . +_:g70146880333340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> . +_:g70146872463800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880825880 . +_:g70146872463800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr38-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr38-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (@reverse)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875687160 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0024-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0024-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple contexts" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests that contexts in an array are merged" . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . +<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871313580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871451380 . +_:g70146871313580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0007-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0007-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "date type-coercion" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> "Expand strings to expanded value with @type: xsd:dateTime" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876852740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146878870740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879114060 . +_:g70146878870740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> . +_:g70146873104800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146873138140 . +_:g70146873104800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> . +_:g70146879195040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874429280 . +_:g70146879195040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> . +_:g70146871248760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871287480 . +_:g70146871248760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0028-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0028-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Use @vocab in properties and @type but not in @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> "@vocab is used to compact properties and @type, but is not used for @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871991440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872004640 . +_:g70146871991440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> . +_:g70146876448340 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0010-context.jsonld>; rel=\"http://www.w3.org/ns/json-ld#context\"" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property and value with different terms mapping to the same expanded property" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875035920 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0022-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0022-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "list from duplicate triples" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/2000/01/rdf-schema#comment> "Duplicate triples for a list node will not prevent @list from being properly generated" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871303640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871329080 . +_:g70146871303640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> . +_:g70146601367100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e020-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e020-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph if not at top-level" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/2000/01/rdf-schema#comment> "Embedded @graph without @id creates BNode-labeled named graph (from expand-0020)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0120-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0120-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some values of @id with @, allow others." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871804260 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880349420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736000460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146870735860 . +_:g70146736000460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> . +_:g70146871335720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0029-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0029-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0029-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Simple @index map" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/2000/01/rdf-schema#comment> "Output uses index mapping if term is defined with @container: @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878918040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878933740 . +_:g70146878918040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> . +_:g70146879600480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/la05-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/la05-in.html> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Base is that of the alternate URL" . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/2000/01/rdf-schema#comment> "Load an alternate link if type is not ld+json and rel=alternate." . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880644440 . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/pi02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/pi02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/pi02-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index indexes property value, instead of property (multiple values)" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/2000/01/rdf-schema#comment> "Compacting property-valued indexes." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879083300 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/ep09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/ep09-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@prefix not allowed on compact IRI term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/2000/01/rdf-schema#comment> "If processingMode is json-ld-1.0, or if term contains a colon (:), an invalid term definition has been detected and processing is aborted." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879273260 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146872514200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146870735860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878636780 . +_:g70146870735860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid language-tagged string" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er30-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid language-tagged string" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146875363940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874543360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c006-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875150180 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/js09-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/js09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/js09-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact already expanded JSON literal with aliased keys" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests compacting JSON literal in expanded form." . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870321900 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874613020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874642840 . +_:g70146874613020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> . +_:g70146881253320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881289200 . +_:g70146881253320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> . +_:g70146875033460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875102480 . +_:g70146875033460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> . +_:g70146879381520 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879381520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146870097980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0063-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0063-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0063-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI round-tripping with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/2000/01/rdf-schema#comment> "Term with @type: @vocab will use compact IRIs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in01-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Basic Included array" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880371760 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0045-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0045-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0045-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@id value uses relative IRI, not term" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/2000/01/rdf-schema#comment> "Values of @id are transformed to relative IRIs, terms are ignored" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er20-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (no vocab mapping)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146871313520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880512320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880601580 . +_:g70146880512320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> . +_:g70146874380460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874776260 . +_:g70146874380460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> . +_:g70146879807900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875235180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875280460 . +_:g70146875235180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> . +_:g70146879464220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736965600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146412540660 . +_:g70146736965600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/c021-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/c021-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/c021-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped value mix" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped value mix" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736394020 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146872122460 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e004-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands all embedded JSON-LD script elements with extractAllScripts option" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880466980 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875658220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736870720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736899380 . +_:g70146736870720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> . +_:g70146880667180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880776520 . +_:g70146880667180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> . +_:g70146878639200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879484500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879518020 . +_:g70146879484500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> . +_:g70146879484820 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146879484820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js10-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with structural canonicalization" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with structural canonicalization." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146873037280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880563400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880667180 . +_:g70146880563400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/nt09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "literal_with_REVERSE_SOLIDUS2" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/2000/01/rdf-schema#comment> "REVERSE SOLIDUS at end of literal from N-Triples" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/di01-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/di01-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand string using default and term directions" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/2000/01/rdf-schema#comment> "Strings are coerced to have @direction based on default and term direction." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736675880 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871843800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874610000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874655160 . +_:g70146874610000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0106-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0106-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @id] container if value is a graph (mixed graph and object)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871298560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737114200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737161320 . +_:g70146737114200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te016> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr19-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr19-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Mix of protected and unprotected terms." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/2000/01/rdf-schema#comment> "Mix of protected and unprotected terms." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871743560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js02-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js02-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (boolean false)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (boolean false)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872775160 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871515320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871528100 . +_:g70146871515320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> . +_:g70146872760640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872793380 . +_:g70146872760640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> . +_:g70146876882960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876938980 . +_:g70146876882960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr14-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr14-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear protection with null context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/2000/01/rdf-schema#comment> "Clear protection with null context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737494280 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871515240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871560000 . +_:g70146871515240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> . +_:g70146875409600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875446640 . +_:g70146875409600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> . +_:g70146872727880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872760640 . +_:g70146872727880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pi07-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pi07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "property-valued index appends to property value, instead of @index (value)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding index maps where index is a property." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146881107020 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js18-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js18-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal (null)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming property with @type @json to a JSON literal (null)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874660180 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737113500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737127700 . +_:g70146737113500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> . +_:g70146880349480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871315940 . +_:g70146880349480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> . +_:g70146736883400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736919900 . +_:g70146736883400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> . +_:g70146875133080 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146875133080 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146875133080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js11-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js11-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (null)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (null)." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872050560 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0015-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0015-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Replace deeply-nested embed" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> "Torture test." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0015-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880137980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880205420 . +_:g70146880137980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> . +_:g70146875852080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146601299240 . +_:g70146875852080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0023-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0023-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "triple with RDF nil subject" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "Test triple with RDF nil subject" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m008-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "When type is in a type map" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/2000/01/rdf-schema#comment> "scoped context on @type" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874350440 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879368980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879535080 . +_:g70146879368980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> . +_:g70146874773920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879239760 . +_:g70146874773920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/c016-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/c016-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "type-scoped vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/2000/01/rdf-schema#comment> "type-scoped vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878692420 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875590360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875625080 . +_:g70146875590360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> . +_:g70146876639720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872248840 . +_:g70146876639720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds @id to object not having an @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @id" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871940280 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874725380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874771960 . +_:g70146874725380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> . +_:g70146875572280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875628220 . +_:g70146875572280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> . +_:g70146880288320 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146880288320 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146880288320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c028-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c028-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@propagate: false on embedded context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/2000/01/rdf-schema#comment> "embedded context with @propagate: false do not survive node-objects" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875756240 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0009-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0009-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "default value" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors MUST skip property and property frame if property frame contains @omitDefault with a value of true. Processors MUST add property to output with a new dictionary having a property @preserve and a value that is a copy of the value of @default in frame if it exists, or the string @null otherwise." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0009-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872938020 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878424620 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146878424620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880189120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880349480 . +_:g70146880189120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> . +_:g70146736473800 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146736473800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146332867020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880418380 . +_:g70146332867020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e088-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e088-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand native values to IRIs" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/2000/01/rdf-schema#comment> "Value Expansion does not expand native values, such as booleans, to a node object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "cyclic IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Cyclic IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a cyclic IRI mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879148360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874384180 . +_:g70146879148360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/p003-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/p003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@version setting [1.1, 1.0]" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/2000/01/rdf-schema#comment> "If processing mode is not set through API, it is set by the first context containing @version." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146878703520 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/n002-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/n002-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/n002-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Indexes to @nest for all properties with @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/2000/01/rdf-schema#comment> "Compaction using @nest" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874808040 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874397480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880383880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871414800 . +_:g70146880383880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect terms in sourced context" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736508500 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid remote context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er05-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid remote context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a remote context is not an object containing @context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737690020 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146601378200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876693600 . +_:g70146601378200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> . +_:g70146737047760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146872116360 . +_:g70146737047760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> . +_:g70146876473740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880431240 . +_:g70146876473740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0079-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0079-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0079-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact a @graph container having @index" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/2000/01/rdf-schema#comment> "Verify that having both @graph and @index allows @graph container compaction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874414480 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e001-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands embedded JSON-LD script element (xhtml)" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in XHTML" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146876478040 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146876394100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876473740 . +_:g70146876394100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> . +_:g70146876097460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876133800 . +_:g70146876097460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import overflow" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors must detect source contexts that include @import." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875858700 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879128000 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146879128000 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . +_:g70146879128000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er15-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (@reverse not a string)" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146875628220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> . +_:g70146875628220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> . +_:g70146875163840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875264780 . +_:g70146875163840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid default language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er09-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid default language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a context contains an invalid @language" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr39-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr39-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877113000 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid value object value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er29-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid value object value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid value object value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871016700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871097780 . +_:g70146871016700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0023-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0023-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding list/set with coercion" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/2000/01/rdf-schema#comment> "Expanding lists and sets with properties having coercion coerces list/set values" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871031100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871098760 . +_:g70146871031100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/c004-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/c004-in.html> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/html/c004-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compacts all embedded JSON-LD script elements with extractAllScripts option" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879994660 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871726420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871777040 . +_:g70146871726420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> . +_:g70146872366180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m004-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prepends @type in object already having an @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875802860 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871175200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874433100 . +_:g70146871175200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> . +_:g70146332862540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880451440 . +_:g70146332862540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> . +_:g70146736231300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878964240 . +_:g70146736231300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> . +_:g70146871563300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871593820 . +_:g70146871563300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0052-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0052-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0052-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Round tripping @list with scalar and @graph alias" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/2000/01/rdf-schema#comment> "Native values survive round-tripping with @list and @graph alias" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874967560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874999280 . +_:g70146874967560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> . +_:g70146878933740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878966340 . +_:g70146878933740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js03-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js03-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal (double)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding property with @type @json to a JSON literal (double)." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871773860 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878767560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878823880 . +_:g70146878767560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> . +_:g70146879321020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879583840 . +_:g70146879321020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> . +_:g70146879316740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879437860 . +_:g70146879316740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> . +_:g70146736308060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146870932800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879434880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er34-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property value (in @reverse)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid reverse property value is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146879633040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879663620 . +_:g70146879633040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> . +_:g70146874754340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874809260 . +_:g70146874754340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0084-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0084-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Do not expand [@graph, @index] container if value is a graph" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/2000/01/rdf-schema#comment> "Does not create a new graph object if indexed value is already a graph object" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879300560 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146873070160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146873070160 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146874573840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871142060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874580400 . +_:g70146871142060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0069-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0069-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI as term with type mapping" . <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> <http://www.w3.org/2000/01/rdf-schema#comment> "Redefine compact IRI to define type mapping using the compact IRI itself as value of @id" . -_:g70292349816180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292349848740 . -_:g70292349816180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350095900 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand @graph container (multiple objects)" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0093-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0093-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers" . -_:g70292351501360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352669540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618324900 . -_:g70292352669540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352421020 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expanding blank node labels" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0038-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0038-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <http://www.w3.org/2000/01/rdf-schema#comment> "Blank nodes are not relabeled during expansion" . -_:g70292623662220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292623662220 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357845880 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@import may not be used in an imported context." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context entry" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so12-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <http://www.w3.org/2000/01/rdf-schema#comment> "@import only valid within a term definition." . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355387060 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Merge @type from different graphs" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0068-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0068-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0068-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <http://www.w3.org/2000/01/rdf-schema#comment> "When merging nodes, ensure that @type values from each node are retained." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353237340 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Error if @included value is a list object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid @included value" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in09-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292219502660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292219556180 . -_:g70292219502660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351097340 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "@direction must be one of ltr or rtl" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid base direction" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/di08-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <http://www.w3.org/2000/01/rdf-schema#comment> "Generate an error if @direction has illegal value." . -_:g70292350655340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350879180 . -_:g70292350655340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> . -_:g70292625282380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625313440 . -_:g70292625282380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292353080960 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Multiple properties mapping to @included are folded together" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/in03-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/in03-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292351635760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351666000 . -_:g70292351635760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> . -_:g70292624656920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292355997000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356028220 . -_:g70292355997000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> . -_:g70292355534740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622693840 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if end comment missing" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r015-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with unballanced comments" . -_:g70292622712100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622743220 . -_:g70292622712100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> . -_:g70292351652600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351685880 . -_:g70292351652600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> . -_:g70292623377940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623035880 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "language map with @none" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m009-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m009-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/2000/01/rdf-schema#comment> "index on @language" . -_:g70292351994440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352031720 . -_:g70292351994440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> . -_:g70292352438040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622281000 . -_:g70292352438040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid set or list object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid set or list object" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er41-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when an invalid set or list object is found" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Replace existing embed on 2nd pass" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879710400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879744280 . +_:g70146879710400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> . +_:g70146874625420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874613560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874622940 . +_:g70146874613560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> . +_:g70146872084980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/0066-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/0066-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/0066-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Relative IRIs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/2000/01/rdf-schema#comment> "Complex use cases for relative IRI compaction" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879135600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871147380 . +_:g70146879135600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c001-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "adding new term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879338820 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/compact/r001-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/r001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/r001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands and compacts to document base by default" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/2000/01/rdf-schema#comment> "Compact IRI attempts to compact document-relative IRIs" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879208280 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/in06-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/in06-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "json.api example" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871430140 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871771740 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +_:g70146872313920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876609160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876622320 . +_:g70146876609160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> . +_:g70146873088520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146873121260 . +_:g70146873088520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> . +_:g70146871112280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878953800 . +_:g70146871112280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> . +_:g70146879196820 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> "json-ld-1.0" . +_:g70146872463240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879133440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871194140 . +_:g70146879133440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/js13-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/js13-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON literal with wierd canonicalization" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests transforming JSON literal with wierd canonicalization." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146873135780 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880957160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880270420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880303020 . +_:g70146880270420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/0057-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/0057-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand relative IRI with @type: @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/2000/01/rdf-schema#comment> "Relative values of terms with @type: @vocab expand relative to @vocab" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880237040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880270420 . +_:g70146880237040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> . +_:g70146880332620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871368640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736523700 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146736523700 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> . +_:g70146736523700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737277620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871563080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871674520 . +_:g70146871563080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m006-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m006-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds vocabulary expanded @type to object" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736460160 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737080240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737116520 . +_:g70146737080240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> . +_:g70146871741480 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146871741480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146872563660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736573900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146736641840 . +_:g70146736573900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> . +_:g70146737375020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property map" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er25-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property map" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Expansion when a invalid reverse property map is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146875851180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875885840 . +_:g70146875851180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> . +_:g70146879569560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146879568700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879808640 . +_:g70146879568700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> . +_:g70146871498800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880137540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e004-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "optimize @set, keep empty arrays" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0004" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879273240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879319080 . +_:g70146879273240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> . +_:g70146876136620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737707620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876756940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876788760 . +_:g70146876756940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0024-out.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0024-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "match on any common properties if @requireAll: false" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/2000/01/rdf-schema#comment> "Match if @requireAll is false and both node and frame contain common non-keyword properties of any value." . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0024-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146871755400 . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/0014-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0014-frame.jsonld> . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/0014-in.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Replace existing embed on 2nd pass" . <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <http://www.w3.org/2000/01/rdf-schema#comment> "An embedded node which matches the top-level frame (on @type) is framed under @graph and continues to be embedded. Other nodes continue to be embedded." . -_:g70292622591140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292356074360 . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "json.api example" . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-framing/tests/frame/in03-out.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/in03-frame.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-framing/tests/frame/in03-in.jsonld> . -<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests included blocks." . -_:g70292355040040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292355074520 . -_:g70292355040040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> . -_:g70292355024020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292355514980 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignore some values of @reverse with @, allow others." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e121-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e121-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <http://www.w3.org/2000/01/rdf-schema#comment> "Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword." . -_:g70292624703720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624738180 . -_:g70292624703720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> . -_:g70292355959020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350430560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351844940 . -_:g70292350430560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292622873400 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if start comment missing" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r016-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with unballanced comments" . -_:g70292356242740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624900780 . -_:g70292356242740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> . -_:g70292622775060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622787840 . -_:g70292622775060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623969440 . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "load JSON document with extension-type" . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/remote-doc/0003-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/remote-doc/0003-in.jldt> . -<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <http://www.w3.org/2000/01/rdf-schema#comment> "Document loader loads a JSON document having an extension mime-subtype." . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "basic" . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/flatten/0002-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/flatten/0002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/2000/01/rdf-schema#comment> "Flattening terms with different types of values" . -_:g70292356123180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292356161080 . -_:g70292356123180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> . -_:g70292624381760 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<la02-alternate.jsonld>; rel=\"alternate\"; type=\"application/ld+json\"" . -_:g70292624381760 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292624855940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624869640 . -_:g70292624855940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> . -_:g70292355597200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292353237340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352540280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352584520 . -_:g70292352540280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> . -_:g70292622400140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292358201740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624676580 . -_:g70292358201740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> . -_:g70292624072620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292350470420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350588580 . -_:g70292350470420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> . -_:g70292356209300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292357777300 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Protect terms in sourced context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "protected term redefinition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/so10-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <http://www.w3.org/2000/01/rdf-schema#comment> "The containing context is merged into the source context." . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292351405700 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Prepends @type in object already having an @type" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/m004-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/m004-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . -_:g70292350470320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292351093840 . -_:g70292350470320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292625511320 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Ignores a term mapping to a value in the form of a keyword (@reverse)." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr38-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr38-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms in the form of a keyword, which are not keywords, are ignored." . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset from node with embedded named graph (bnode)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0117-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0117-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> <http://www.w3.org/2000/01/rdf-schema#comment> "Embedding @graph in a node creates a named graph. Graph name is created if there is no subject" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Language maps with @vocab, default language, and colliding property" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e035-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e035-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0035" . -_:g70292352698960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292352736860 . -_:g70292352698960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> . -_:g70292624019460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292624051220 . -_:g70292624019460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> . -_:g70292624513340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292618301640 . -_:g70292624513340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> . -_:g70292357712460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352636740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292352636740 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . -_:g70292623101420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352618480 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "expand [@graph, @index] container (multiple indexed objects)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e096-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e096-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <http://www.w3.org/2000/01/rdf-schema#comment> "Use of @graph containers with @index" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292624542700 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands multiple embedded JSON-LD script elements where one is an array" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/html/e005-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/e005-in.html> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML extracting all elements with array" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292350192760 . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Clear active context with protected terms from an embedded context" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid context nullification" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr05-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <http://www.w3.org/2000/01/rdf-schema#comment> "The Active context be set to null from an embedded context." . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "list with node shared across graphs (same triple in different graphs)" . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/0021-out.jsonld> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/0021-in.nq> . -<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> <http://www.w3.org/2000/01/rdf-schema#comment> "If a list node is used in different graphs, it isn't removed and converted to @list" . -_:g70292623333760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292357958680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292357995840 . -_:g70292357958680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> . -_:g70292624295400 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> "<0013-context.html>; rel=\"http://www.w3.org/ns/json-ld#context\"" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292352354300 . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if targeted element is not a script element" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r012-in.html#first> . -<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML which isn't a script element" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property (contains @id)" . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <https://w3c.github.io/json-ld-api/tests/vocab#frame> <https://w3c.github.io/json-ld-framing/tests/frame/0014-frame.jsonld> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FrameTest> . +<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0008-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0008-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Test prefix defined in @context" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/2000/01/rdf-schema#comment> "Generate an IRI using a prefix defined within an @context." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid IRI mapping" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er20-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid IRI mapping (no vocab mapping)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid IRI mapping is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +_:g70146871318760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871417280 . +_:g70146871318760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> . +_:g70146872000700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146874904660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146874936020 . +_:g70146874904660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/fromRdf/js02-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/fromRdf/js02-in.nq> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "JSON literal (boolean false)" . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean false)." . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146880091360 . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest> . +<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871494160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871593660 . +_:g70146871494160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e011-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e011-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "coerced @id" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0011" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737296880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737328160 . +_:g70146737296880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> . +_:g70146880204080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880237040 . +_:g70146880204080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> . +_:g70146878774940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146878800340 . +_:g70146878774940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> . +_:g70146874808040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871692880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871705680 . +_:g70146871692880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/er49-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "A relative IRI cannot be used as a prefix" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that a relative IRI cannot be used as a term." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146877396080 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +_:g70146876299480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e069-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e069-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compact IRI as term with type mapping" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/2000/01/rdf-schema#comment> "RDF version of expand-0069" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146880335740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880368780 . +_:g70146880335740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c035-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c035-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Term scoping with embedded contexts." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/2000/01/rdf-schema#comment> "Terms should make use of @vocab relative to the scope in which the term was defined." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146736625740 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146879579080 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> "HTML Script Extraction" . +_:g70146879579080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146877292660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146876265660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876296260 . +_:g70146876265660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> . +_:g70146875215960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875331320 . +_:g70146875215960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> . +_:g70146876555740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146876590400 . +_:g70146876555740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/pr24-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/pr24-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected prefix term with same definition." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected prefix term with same definition." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874936320 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737326020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/0116-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/0116-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Dataset from node with embedded named graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/2000/01/rdf-schema#comment> "Embedding @graph in a node creates a named graph" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146873003560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.0" . +_:g70146871080640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871112120 . +_:g70146871080640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "compaction to list of lists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/compact/e001-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#context> <https://w3c.github.io/json-ld-api/tests/compact/e001-context.jsonld> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Compaction to list of lists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised in Compaction when attempting to compact a list of lists" . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874629100 . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#CompactTest> . +_:g70146879003240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879082760 . +_:g70146879003240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> . +_:g70146874967240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875004940 . +_:g70146874967240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> . +_:g70146736230420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146736230420 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er17-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property (invalid @container)" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid reverse property is found" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js20-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js20-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with aliased @value" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with aliased @value." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146870948520 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146874923020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146875293960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881201680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880580980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880629900 . +_:g70146880580980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te007> . +_:g70146871429840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871479640 . +_:g70146871429840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> . +_:g70146880207020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880236000 . +_:g70146880207020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> . +_:g70146871727900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880470040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880483580 . +_:g70146880470040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> . +_:g70146871492860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146871608960 . +_:g70146871492860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid reverse property" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er14-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid reverse property (contains @id)" . <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid reverse property is found" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "do not remove @graph if not at top-level" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/e020-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/e020-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> <http://www.w3.org/2000/01/rdf-schema#comment> "Embedded @graph without @id creates BNode-labeled named graph (from expand-0020)" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70292623907420 . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expands input using aliased @nest" . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/n002-out.nq> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/n002-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @nest" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "invalid term definition" . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/er11-in.jsonld> . -<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> <http://www.w3.org/2000/01/rdf-schema#comment> "Verifies that an exception is raised on expansion when a invalid term definition is found" . -_:g70292622546780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292622709920 . -_:g70292622546780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> . -_:g70292219573180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . -_:g70292219573180 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> . -_:g70292350737000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292350866360 . -_:g70292350737000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> . -_:g70292625543440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70292625557180 . -_:g70292625543440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> . -_:g70292624168620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js08-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js08-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with array canonicalization" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with array canonicalization." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872072540 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146875359400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146875397220 . +_:g70146875359400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> "loading document failed" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/html/r013-in.html#first> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Errors if targeted element does not have type application/ld+json" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests embedded JSON-LD in HTML with wrong type" . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875757640 . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest> . +<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/pr24-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/pr24-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Allows redefinition of protected prefix term with same definition." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/2000/01/rdf-schema#comment> "Allows redefinition of protected prefix term with same definition." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146737833940 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/expand/js10-out.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/expand/js10-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Expand JSON literal with structural canonicalization" . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/2000/01/rdf-schema#comment> "Tests expanding JSON literal with structural canonicalization." . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146874924380 . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest> . +<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146878905140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146879003240 . +_:g70146878905140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> . +_:g70146880135180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146880339280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146880388960 . +_:g70146880339280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> . +_:g70146736508500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146737620280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/m003-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/m003-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Adds @type to object not having an @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using @container: @type" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146875741200 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146871131940 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> "i18n-datatype" . +_:g70146871131940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146871131940 <https://w3c.github.io/json-ld-api/tests/vocab#normative> "false"^^<http://www.w3.org/2001/XMLSchema#boolean> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/wf07-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/wf07-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Triples including invalid graph name IRIs are rejected" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/2000/01/rdf-schema#comment> "ToRdf emits only well-formed statements." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146872888620 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . +_:g70146737900760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146737914300 . +_:g70146737900760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> . +_:g70146871771560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> "json-ld-1.1" . +_:g70146881369820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70146881404480 . +_:g70146881369820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "Transform JSON-LD to RDF" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <http://www.w3.org/2000/01/rdf-schema#comment> "These tests implement the requirements for the JSON-LD [Deserialize JSON-LD to RDF Algorithm](https://www.w3.org/TR/json-ld11-api/#deserialize-json-ld-to-rdf-algorithm)." . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <https://w3c.github.io/json-ld-api/tests/vocab#baseIri> "https://w3c.github.io/json-ld-api/tests/" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g70146736605140 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> <https://w3c.github.io/json-ld-api/tests/toRdf/c004-out.nq> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action> <https://w3c.github.io/json-ld-api/tests/toRdf/c004-in.jsonld> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> "deep @context affects nested nodes" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/2000/01/rdf-schema#comment> "Expansion using a scoped context uses term scope for selecting proper term" . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70146879861260 . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest> . +<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest> . diff --git a/tests/expand-manifest.html b/tests/expand-manifest.html index 8cf52ef7..06c98e4e 100644 --- a/tests/expand-manifest.html +++ b/tests/expand-manifest.html @@ -2985,7 +2985,7 @@ <h2> <dt>Type</dt> <dd>jld:PositiveEvaluationTest, jld:ExpandTest</dd> <dt>Purpose</dt> -<dd>Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword.</dd> +<dd>Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword. (Note: the resulting document will not be valid JSON-LD, due to the `null` value for `@id`)</dd> <dt>input</dt> <dd> <a href='expand/0122-in.jsonld'>expand/0122-in.jsonld</a> @@ -2999,6 +2999,8 @@ <h2> <dl class='options'> <dt>specVersion</dt> <dd>json-ld-1.1</dd> +<dt>normative</dt> +<dd>false</dd> </dl> </dd> </dl> diff --git a/tests/expand-manifest.jsonld b/tests/expand-manifest.jsonld index c0b13cec..c4efe0e4 100644 --- a/tests/expand-manifest.jsonld +++ b/tests/expand-manifest.jsonld @@ -912,10 +912,10 @@ "@id": "#t0122", "@type": ["jld:PositiveEvaluationTest", "jld:ExpandTest"], "name": "Ignore some IRIs when that start with @ when expanding.", - "purpose": "Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword.", + "purpose": "Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword. (Note: the resulting document will not be valid JSON-LD, due to the `null` value for `@id`)", "input": "expand/0122-in.jsonld", "expect": "expand/0122-out.jsonld", - "option": {"specVersion": "json-ld-1.1"} + "option": {"specVersion": "json-ld-1.1", "normative": false} }, { "@id": "#t0123", "@type": ["jld:NegativeEvaluationTest", "jld:ExpandTest"],